:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Colors */

  --color-bg: #faf9f5;
  --color-blue: #050157;
  --color-blue-2: #000081;
  --color-blue-3: #373479;
  --color-text-gray: #74787e;
  --color-gold: #ffb22c;
  --color-gold-2: #ffb22c;
  --color-yellow: #ffbf00;
  --color-light-blue: #d8e9f3;
}

.blue-bg {
  background-color: var(--color-blue) !important;
}

.white-bg {
  background-color: #fff;
}

.blue-bg-light {
  background-color: var(--color-light-blue) !important;
}

.black-text {
  color: #000 !important;
}

.hero-map-link {
  color: var(--color-gold);
}

.hero-map-link:hover {
  color: #fff;
}

.gold-btn {
  background-color: var(--color-gold);
  color: black;
}

.gold-btn:hover {
  background-color: white;
  color: black;
}

.blue-btn {
  background-color: var(--color-blue) !important;
  color: white !important;
  border: 2px solid var(--color-blue) !important;
}

.blue-btn:hover {
  background-color: white !important;
  color: var(--color-blue) !important;
  /* border: 2px solid var(--color-blue); */
}

.blue-btn:hover > span {
  color: var(--color-blue) !important;
}

.ctsm-blue-btn {
  background-color: var(--color-blue) !important;
  color: white !important;
  border: 2px solid var(--color-blue) !important;
}

.ctsm-blue-btn:hover {
  background-color: white !important;
  color: var(--color-blue) !important;
  /* border: 2px solid var(--color-blue); */
}

.offcanvas-logo-img {
  min-height: 3rem !important;
}

.aboutSection-img {
  width: 33rem;
  height: 35rem;
  object-fit: cover;
}

.td-about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.td-about-icon > i {
  color: #050157;
  font-size: 2rem;
}

.custom-overlay::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.55);

  z-index: -1;
}

.speakerImg-size {
  height: 22rem;
}

.speakerImg-size > img {
  max-height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.accordion-li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}
.accordion-ul {
  padding-left: 1.5rem;
}

.td-faq-wrapper .accordion-button:not(.collapsed) {
  color: black;
  /* -webkit-text-stroke: 0.1px black;  */
  /* text-stroke: 0.1px black; */
}

.td-faq-wrapper .accordion-button {
  color: var(--color-text-gray);
}

.td-faq-wrapper .accordion-button::after {
  border: 2px solid black;
}

.td-faq-wrapper .accordion-button .accordion-btn::before {
  background-color: #000;
}

.td-faq-wrapper .accordion-button .accordion-btn::after {
  background-color: #000;
}

/* Agenda style issue fix */

.td-schedule-row {
  display: flex;
  width: 100%;
  border-radius: 6px;
  background-color: white;
  /* margin-bottom: 20px; */
}

.td-schedule-time-col {
  width: 16.666667%;
  border-right: 1px solid #eeeeee;
}

.td-schedule-details-col {
  width: 83.333333%;
}

.td-schedule-time,
.td-schedule-details {
  width: 100%;
  height: 100%;
}

/* Keep any first/last styling that might be needed */
.td-schedule-time.first,
.td-schedule-details.first {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.td-schedule-time.last,
.td-schedule-details.last {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* custom contact styles */

.main-heading {
  font-size: 2.5rem;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.main-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.25rem;
  background-color: var(--color-gold);
  border-radius: 0.25rem;
}

.contact-grid {
  padding: 4rem 0rem 2rem 0rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  color: var(--color-blue);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: var(--color-gold);
  border-radius: 0.125rem;
}

/* Contact Info Styles */
.contact-info {
  grid-column: span 1;
}

.company-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-blue-3);
}

.address-details {
  margin-bottom: 1.5rem;
  color: var(--color-text-gray);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-detail svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: var(--color-gold);
}

.contact-detail a {
  color: var(--color-blue-3);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--color-gold);
}

/* Contact Form Styles */
.contact-form-container {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .contact-form-container {
    grid-column: span 2;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row-split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 576px) {
  .form-row-split {
    flex-direction: row;
  }
}

.form-group {
  width: 100%;
}

.form-group.half {
  width: 100%;
}

@media (min-width: 576px) {
  .form-group.half {
    width: calc(50% - 0.5rem);
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-blue-3);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  transition: border 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

textarea.form-control {
  min-height: 8rem;
  resize: vertical;
}

.btn {
  display: inline-block;
  background-color: var(--color-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: var(--color-blue-2);
  transform: translateY(-0.125rem);
  color: #fff;
}

/* Personnel Styles */
.personnel-container {
}

.personnel-list {
  display: flex;
  gap: 1.5rem;
}

.personnel-card {
  flex: 1;
}

.personnel-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-blue-3);
}

.personnel-position {
  color: var(--color-text-gray);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.personnel-contact {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.personnel-contact svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: var(--color-gold);
}

.personnel-contact a {
  color: var(--color-blue-3);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.personnel-contact a:hover {
  color: var(--color-gold);
}

/* Map Styles */
.map-section {
  grid-column: 1 / -1;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.map-container {
  width: 100%;
  height: 25rem;
  border-radius: 0.375rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.accent-background {
  background-color: var(--color-blue);
  color: white;
  padding: 4rem 0;
  margin-top: 3rem;
}

.accent-background .section-title::after {
  background-color: var(--color-gold);
}

.accent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
}

.service-card:hover {
  transform: translateY(-0.25rem);
  background-color: rgba(255, 255, 255, 0.15);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-gold);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: white;
}

.service-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-logo {
  height: 5rem;
}

.pageTitle-container {
  padding-top: 10rem;
  padding-bottom: 3rem;
}

.td-breadcrumb-title {
  text-align: left;
}

/* Footer */

/* Additional CSS to make footer more compact */
.td-footer-area {
  padding-top: 40px;
  padding-bottom: 20px;
}

.td-footer-title {
  font-size: 1.1rem;
}

.td-footer-links ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.td-footer-links li {
  margin-bottom: 5px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .td-footer-area {
    padding-top: 30px;
  }
}

/* form */

.custom-form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.custom-form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.custom-form-group input:focus {
  border-color: #3e7bfa;
  box-shadow: 0 0 0 3px rgba(62, 123, 250, 0.1);
}

.custom-full-width {
  grid-column: span 2;
}

.custom-submit-btn {
  background-color: var(--color-blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 10rem;
  display: block;
  margin: 0 auto;
}

.custom-submit-btn:hover {
  background-color: var(--color-blue-2);
  transform: translateY(-0.125rem);
  color: #fff;
}

.custom-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
  appearance: none;
  background-color: #fff;
  color: #333;
}

.custom-form-group select:focus {
  border-color: #3e7bfa;
  box-shadow: 0 0 0 3px rgba(62, 123, 250, 0.1);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .custom-form-grid {
    grid-template-columns: 1fr;
  }

  .custom-full-width {
    grid-column: span 1;
  }
}

/* Mobile Responsiveness Home */

@media (max-width: 550px) {
  .td-hero-spacing {
    padding-top: 8rem;
    padding-bottom: 3px;
  }

  .td-hero-title {
    font-size: 2rem;
  }

  .td-about-area {
    padding-top: 2.5rem !important;
  }

  .td-banner-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .td-banner-title-wrap .td-section-title {
    text-align: center;
  }

  .td-banner-title-wrap p {
    text-align: center;
  }
}

.td-faq-wrapper .accordion-item {
  background-color: transparent;
}

.td-faq-wrapper .accordion-button:not(.collapsed) {
  color: white;
}

.td-faq-wrapper .accordion-button {
  color: white;
}

.accordion-li {
  color: #e6e6e6;
}

.td-faq-wrapper .accordion-button::after {
  border: 2px solid white;
}

.td-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::before {
  color: white;
}

.td-faq-wrapper .accordion-button:not(.collapsed) .accordion-btn::after {
  color: white;
}

.td-faq-wrapper .accordion-button .accordion-btn::before {
  background-color: white;
}

.td-faq-wrapper .accordion-button .accordion-btn::after {
  background-color: white;
}

.td-faq-title {
  color: white;
}

/* Sponsors home custom style */

.sponsor-logo-home {
  max-height: 4.5rem !important;
  /* max-width: 14rem; */
}

.td-brands-item {
  position: relative;
}

.sponsor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sponsor-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.td-brands-item:hover .sponsor-overlay {
  opacity: 1;
  visibility: visible;
}

/* Sponsorship Registration updated styles */

/* Sponsorship Comparison Section */
.sponsorship-comparison-section {
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Comparison Table */
.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 50px;
}

.comparison-table-container {
  overflow-x: auto;
}

.sponsorship-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1200px;
}

.sponsorship-comparison-table th,
.sponsorship-comparison-table td {
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.sponsorship-comparison-table th {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

.feature-column {
  background: #f8fafc !important;
  color: #1e3a8a !important;
  text-align: left !important;
  font-weight: 600;
  min-width: 200px;
  position: sticky;
  left: 0;
  z-index: 11;
}

.sponsor-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sponsor-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 2px solid #fbbf24;
}

.exclusivity-badge {
  background: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-name {
  font-weight: 600;
  color: #374151;
  text-align: left;
  background: #f8fafc;
  position: sticky;
  left: 0;
  z-index: 5;
}

.benefit-cell {
  background: #ffffff;
  color: #374151;
  font-weight: 500;
}

.benefit-cell.included {
  color: #059669;
  font-weight: 600;
  font-size: 1.2rem;
}

.benefit-cell.not-included {
  color: #dc2626;
  font-weight: 600;
  font-size: 1.2rem;
}

.benefit-cell.highlight {
  background: #fef3c7;
  color: #d97706;
  font-weight: 600;
}

/* Hover Effects */
.sponsorship-comparison-table tbody tr:hover {
  background: #f8fafc;
}

.sponsorship-comparison-table tbody tr:hover .feature-name {
  background: #e2e8f0;
}

/* Additional Categories */
.additional-categories {
  margin-top: 60px;
}

.additional-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 40px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.additional-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.additional-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
}

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

.additional-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.additional-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid #3b82f6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 8px 0;
  color: #4b5563;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 25px;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.benefits-list li:last-child {
  border-bottom: none;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-table-container {
    padding: 0 20px;
  }

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

  .sponsorship-comparison-table th,
  .sponsorship-comparison-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .sponsor-header h4 {
    font-size: 1rem;
  }

  .price {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .sponsorship-comparison-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .additional-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .additional-card {
    padding: 25px;
  }

  .sponsorship-comparison-table {
    min-width: 800px;
  }

  .sponsorship-comparison-table th,
  .sponsorship-comparison-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .feature-column {
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .additional-title {
    font-size: 1.5rem;
  }

  .additional-card .price {
    font-size: 1.3rem;
  }

  .sponsorship-comparison-table th,
  .sponsorship-comparison-table td {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
}
