:root {
  --primary-color: #9146ff;
  --text-dark: #222222;
  --text-light: #374151;
  --text-white: #ffffff;
  --bg-light: #fdfdff;
  --border-color: #e5e7eb;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 13px 17px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* CSS from section:hero */
.hero-section {
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
}
.hero-bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.logo-container {
  margin-bottom: 50px;
}
.logo-container img {
  width: 180px;
}
.hero-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.webinar-tag {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
}
.webinar-tag span{
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.webinar-tag-dot {
    width: 7px;
    height: 7px;
    background: #FFFFFF;
        border-radius: 10px;
}
.hero-text-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  color: #000;
}
.hero-text-content h1 .highlight {
  color: var(--primary-color);
}
.event-details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
    margin-bottom: 30px;
}
.event-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
display: block;
color: #282828;
width: 100%;
}
.event-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}
.topics-section h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.topics-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.topics-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}
.topics-section li img {
    width: 16px;
    height: 16px;
}
.live-test-note {
  font-size: 18px;
  line-height: 28px;
  color: #4e4e4e;
  max-width: 530px;
}
.registration-form {
  background-color: var(--text-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.registration-form h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
      margin-bottom: 15px;
}
.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}
.form-group input{
    height: 45px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
}
.form-group select{
    height: 45px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: 98% center;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239146ff' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}
.form-group input[type="submit"]{
    width: 100%;
    height: 52px;
    background: #9146FF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #fff;
}
.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
/* .select-wrapper select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  cursor: pointer;
} */
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 24px;
  height: 24px;
}
.form-submit-btn {
  height: 52px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
  }
  .hero-text-content {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
    .hero-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .hero-text-content h1 {
        font-size: 32px;
    }
    .event-details {
        flex-direction: column;
        align-items: center;
    }
    .registration-form {
        padding: 30px;
    }
}

/* CSS from section:speakers */
.speakers-section {
  padding: 0px 0px 80px 0px;
  position: relative;
  text-align: center;
}
.speakers-bg-grid {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 1;
    width: 432px;
    overflow: hidden;
}
.speakers-bg-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-title .line {
  width: 100%;
  max-width: 428px;
  height: 1px;
  background-color: #e0c3ff;
}
.speakers-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.speaker-card {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}
.speaker-image-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.speaker-image-wrapper.style-santhosh {
    background-color: #eee3ff;
}
.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}
.speaker-info p {
    font-size: 18px;
    line-height: 25px;
    margin-top: 16px;
}
.speaker-info .role {
  color: var(--primary-color);
}
.speaker-info .company {
  color: #222222;
}
@media (max-width: 768px) {
  .speakers-section {
    padding: 60px 0;
  }
  .speakers-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .speaker-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title .line {
      display: none;
  }
}

/* CSS from section:about */
.about-section {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}
.text-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.text-content p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-light);
}
.text-content .highlight-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}
.about-cta-card {
  /* background-color: #9933ff; */
  border-radius: 43px;
  padding: 60px 40px;
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-bg-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.cta-bg-elements .bg-element {
position: absolute;
    top: 0;
    right: 0;
    transform-origin: center center;
}
/* .cta-bg-elements .main-image {
    width: 478px;
    height: 335px;
    transform: translate(-50%, -50%) rotate(-90deg);
} */
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.cta-content p {
  font-size: 19px;
  font-weight: 600;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            display: none;
        }

        /* Popup Modal Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .popup-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            max-width: 400px;
            width: 90%;
            text-align: center;
            animation: popupSlideIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes popupSlideIn {
            from { 
                opacity: 0; 
                transform: translate(-50%, -50%) scale(0.8);
            }
            to { 
                opacity: 1; 
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .popup-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .popup-icon.success {
            color: #28a745;
        }

        .popup-icon.error {
            color: #dc3545;
        }

        .popup-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .popup-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .popup-close-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff40;
            border-top: 2px solid #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .error {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
        }

        .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        @media (max-width: 480px) {
            .form-container {
                padding: 25px;
            }
            
            .registration-form h2 {
                font-size: 24px;
            }
        }
        
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-text {
    text-align: center;
  }
}
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
}