@font-face {
	font-family: 'ElegantIcons';
	src:url('fonts/ElegantIcons.eot');
	src:url('fonts/ElegantIconsd41d.eot?#iefix') format('embedded-opentype'),
		url('fonts/ElegantIcons.woff') format('woff'),
		url('fonts/ElegantIcons.ttf') format('truetype'),
		url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Base Styles */
:root {
    --primary-color: #df42b1;
    --secondary-color: #343a40;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-color: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: var(--secondary-color);
}

/* Header Styles */
.header-area {
    background: #7d0058;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Form Container Styles */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), #a83279);
    color: white;
    padding: 25px;
    text-align: center;
}

.form-header h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.form-body {
    padding: 30px;
}

/* Form Element Styles */
.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    padding-left: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(223, 66, 177, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #c13a8f;
    border-color: #c13a8f;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Progress Bar */
.progress {
    height: 8px;
    margin: 20px 0;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: var(--primary-color);
}

/* Workshop Checkbox Animation */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        margin: 20px auto;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-body {
        padding: 20px;
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated-form {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Floating Labels Effect */
.form-floating label {
    color: #6c757d;
}

.form-floating .form-control:focus ~ label {
    color: var(--primary-color);
}

/* Custom Radio and Checkbox */
.custom-radio .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Gradient Background for Hero Section */
/*.hero-section {
    background: linear-gradient(135deg, rgba(223, 66, 177, 0.9), rgba(168, 50, 121, 0.9)),
                url('../img/pics/image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 70px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}*/

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form Steps Navigation */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 30%;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #e9ecef;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}
	






/* Dashboard Specific Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(223, 66, 177, 0.9), rgba(168, 50, 121, 0.9)),
                url('../img/pics/image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Badge Preview */
.badge-preview {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 15px;
    background-color: #f8f9fa;
}

.badge-header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.badge-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.badge-header p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.badge-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.badge-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-align: center;
}

.badge-info p {
    font-size: 0.9rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.badge-qr {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 1px solid #dee2e6;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Conference Badge Modal */
.conference-badge {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.conference-badge .badge-header {
    background: linear-gradient(135deg, var(--primary-color), #a83279);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.conference-badge .badge-header img.badge-logo {
    height: 50px;
    margin-bottom: 10px;
}

.conference-badge .badge-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.conference-badge .badge-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.conference-badge .badge-body {
    display: flex;
    padding: 20px;
}

.conference-badge .badge-photo-section {
    flex: 0 0 150px;
    padding-right: 20px;
    text-align: center;
}

.conference-badge .badge-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent-color);
}

.conference-badge .badge-type {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.conference-badge .badge-info-section {
    flex: 1;
}

.conference-badge .badge-info-section h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.conference-badge .badge-info-section p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.conference-badge .badge-workshop {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
}

.conference-badge .badge-workshop p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.conference-badge .badge-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.conference-badge .badge-qr {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.conference-badge .badge-notes p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--accent-color);
    max-width: 400px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .conference-badge .badge-body {
        flex-direction: column;
    }
    
    .conference-badge .badge-photo-section {
        margin-bottom: 20px;
        padding-right: 0;
    }
}


/* Dashboard Specific Styles */
.dashboard-header {
    background: linear-gradient(135deg, rgba(223, 66, 177, 0.9), rgba(168, 50, 121, 0.9)),
                url('../img/pics/image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dashboard-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.dashboard-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

/* Countdown Styles */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    text-align: center;
    margin: 0 10px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 5px;
    line-height: 1;
    position: relative;
    top: -5px;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    height: 100%;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.info-content h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.info-content p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 25px;
}



.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid white;
    z-index: 2;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.timeline-content h5 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .dashboard-header {
        padding: 30px 0;
    }
    
    .dashboard-header h1 {
        font-size: 1.8rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 10px 0;
    }
    
    .dashboard-header h1 {
        font-size: 1.6rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


.footer-area {
  position: relative;
  z-index: 1;
  background-color: #7d0058; }
  .footer-area .row {
    margin-left: -30px;
    margin-right: -30px; }
    @media only screen and (max-width: 767px) {
      .footer-area .row {
        margin-left: -15px;
        margin-right: -15px; } }
    .footer-area .row .col-12 {
      padding-left: 30px;
      padding-right: 30px; }
      @media only screen and (max-width: 767px) {
        .footer-area .row .col-12 {
          padding-left: 15px;
          padding-right: 15px; } }

.main-footer-area {
  position: relative;
  z-index: 1; }
  .main-footer-area .single-footer-widget .widget-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px; }
  .main-footer-area .single-footer-widget p {
    color: #9293bc;
    font-size: 14px; }
    .main-footer-area .single-footer-widget p i {
      margin-right: 5px; }
  .main-footer-area .single-footer-widget .footer-logo {
    display: block;
    margin-bottom: 20px; }
  .main-footer-area .single-footer-widget .social-info a {
    height: 34px;
    width: 34px;
    border: 1px solid #3d3e66;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    color: #ffffff;
    font-size: 15px;
    margin-right: 8px;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms; }
    .main-footer-area .single-footer-widget .social-info a:hover, .main-footer-area .single-footer-widget .social-info a:focus {
      background-color: #5d5e8d;
      border-color: #5d5e8d; }
  .main-footer-area .single-footer-widget .footer-contact-info {
    position: relative;
    z-index: 1; }
    .main-footer-area .single-footer-widget .footer-contact-info p {
      margin-bottom: 13px; }
      .main-footer-area .single-footer-widget .footer-contact-info p:last-child {
        margin-bottom: 0; }
  .main-footer-area .single-footer-widget .footer-nav {
    position: relative;
    z-index: 1; }
    .main-footer-area .single-footer-widget .footer-nav li a {
      color: #9293bc;
      font-size: 14px;
      margin-bottom: 15px;
      display: inline-block;
      -webkit-transition-duration: 500ms;
      -o-transition-duration: 500ms;
      transition-duration: 500ms; }
      .main-footer-area .single-footer-widget .footer-nav li a:hover, .main-footer-area .single-footer-widget .footer-nav li a:focus {
        color: #ffffff; }
    .main-footer-area .single-footer-widget .footer-nav li:last-child a {
      margin-bottom: 0; }
  .main-footer-area .single-footer-widget .footer-gallery .row {
    margin-right: -5px;
    margin-left: -5px; }
    .main-footer-area .single-footer-widget .footer-gallery .row .col-4 {
      padding-left: 5px;
      padding-right: 5px; }
  .main-footer-area .single-footer-widget .footer-gallery a {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%; }
    .main-footer-area .single-footer-widget .footer-gallery a img {
      border-radius: 5px;
      width: 100%; }
    .main-footer-area .single-footer-widget .footer-gallery a::before {
      background: #c63fa4;
      background-image: -webkit-linear-gradient(120deg, #eb07a8 0%, #ff6094 50%, #ff99ea 100%);
      background-image: -ms-linear-gradient(120deg, #eb07a8 0%, #ff6094 50%, #ff99ea 100%);
      content: "";
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      -webkit-transition-duration: 300ms;
      -o-transition-duration: 300ms;
      transition-duration: 300ms;
      border-radius: 5px; }
    .main-footer-area .single-footer-widget .footer-gallery a:hover::before {
      visibility: visible;
      opacity: 0.8; }


.copywrite-content {
  border-top: 1px solid #414269;
  padding: 15px 0; }
  @media only screen and (max-width: 767px) {
    .copywrite-content {
      text-align: center; } }
  .copywrite-content .copywrite-text p {
    color: #9293bc;
    font-size: 14px;
    margin-bottom: 0; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .copywrite-content .copywrite-text p {
        font-size: 12px; } }
    @media only screen and (max-width: 767px) {
      .copywrite-content .copywrite-text p {
        font-size: 12px;
        text-align: center;} }
    .copywrite-content .copywrite-text p a {
      color: #ffffff;
      font-weight: 400; }
      .copywrite-content .copywrite-text p a:hover, .copywrite-content .copywrite-text p a:focus {
        color: #df42b1; }
  .copywrite-content .footer-menu {
    position: relative;
    z-index: 1; }
    .copywrite-content .footer-menu .nav {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .copywrite-content .footer-menu .nav {
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; } }
      .copywrite-content .footer-menu .nav li {
        margin-right: 20px; }
        .copywrite-content .footer-menu .nav li:last-child {
          margin-right: 0; }
        .copywrite-content .footer-menu .nav li a {
          color: #9293bc;
          font-size: 14px;
          font-weight: 400; }
          @media only screen and (min-width: 768px) and (max-width: 991px) {
            .copywrite-content .footer-menu .nav li a {
              font-size: 12px; } }
          @media only screen and (max-width: 767px) {
            .copywrite-content .footer-menu .nav li a {
              font-size: 12px; } }
          .copywrite-content .footer-menu .nav li a i {
            position: relative;
            z-index: 1;
            top: -2px;
            font-size: 6px;
            margin-right: 2px;
            color: #505add; }
          .copywrite-content .footer-menu .nav li a:hover, .copywrite-content .footer-menu .nav li a:focus {
            color: #ffffff; }