/* Reset and Base Styles */
.back-home {
    color: #001f54;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #00c853;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

/* FREE Banner */
.free-banner {
    background: linear-gradient(135deg, #00c853, #00a843);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 200, 83, 0.5);
    }
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.seats-remaining {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    text-decoration: underline;
}

.banner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Webinar Header */
.webinar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.webinar-category {
    display: inline-block;
    background: linear-gradient(135deg, #001f54, #003d8f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.webinar-title {
    font-size: 3rem;
    font-weight: 800;
    color: #001f54;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.webinar-tagline {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Webinar Info */
.webinar-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: #001f54;
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Section Card */
.section-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.75rem;
    color: #001f54;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #00c853;
}

/* Introduction Section */
.intro-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content h3 {
    color: #001f54;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.learning-points,
.target-audience {
    list-style: none;
    padding: 0;
}

.learning-points li,
.target-audience li {
    padding: 0.75rem 0;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.learning-points li i,
.target-audience li i {
    color: #00c853;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Speakers Section */
.speaker-card {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e3f2fd;
}

.speaker-card:last-child {
    border-bottom: none;
}

.speaker-image {
    flex-shrink: 0;
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}

.speaker-info {
    flex: 1;
}

.speaker-name {
    font-size: 1.5rem;
    color: #001f54;
    margin-bottom: 0.25rem;
}

.speaker-title {
    color: #00c853;
    font-weight: 600;
    margin-bottom: 1rem;
}

.speaker-credentials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.credential {
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #001f54;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential i {
    color: #00c853;
}

.speaker-bio {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.speaker-social {
    display: flex;
    gap: 0.75rem;
}

.speaker-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.speaker-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

/* Agenda Section */
.agenda-timeline {
    position: relative;
    padding-left: 2rem;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00c853, #5b9bd5);
}

.agenda-item {
    position: relative;
    padding-bottom: 2rem;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 18px;
    height: 18px;
    background: #00c853;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #00c853;
}

.agenda-time {
    font-weight: 700;
    color: #00c853;
    margin-bottom: 0.5rem;
}

.agenda-content h4 {
    color: #001f54;
    margin-bottom: 0.25rem;
}

.agenda-content p {
    color: #4a5568;
    font-size: 0.875rem;
}

/* Registration Card */
.registration-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #00c853;
}

.registration-card.sticky {
    position: sticky;
    top: 0px;
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-header h2 {
    font-size: 2rem;
    color: #001f54;
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: #4a5568;
}

/* Registration Form */
.registration-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #001f54;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: #00c853;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e3f2fd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-text {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-text a {
    color: #00c853;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00c853, #00a843);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00a843, #008c37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Registration Benefits */
.registration-benefits {
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.registration-benefits h3 {
    color: #001f54;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.registration-benefits li {
    color: #4a5568;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.registration-benefits li i {
    color: #00c853;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid #e3f2fd;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 1.5rem;
    color: #00c853;
    margin-bottom: 0.5rem;
}

.trust-item span {
    display: block;
    color: #4a5568;
    font-size: 0.875rem;
}

.trust-item strong {
    color: #001f54;
}



/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .registration-card.sticky {
        position: relative;
        top: 0;
    }

    .speaker-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .speaker-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .webinar-title {
        font-size: 2rem;
    }

    .free-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-badge {
        width: 100%;
        justify-content: center;
    }

    .webinar-info {
        grid-template-columns: 1fr;
    }

    .section-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .webinar-title {
        font-size: 1.75rem;
    }

    .banner-content h3 {
        font-size: 1.25rem;
    }

    .speaker-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* PUBLIC WEBINAR ANNOUCEMENT*
****************************************************************************************
**************************************************************************************** */


/* Webinar Announcement Section */
.webinar-announcement {
    padding: 80px 0;
    background: white;
}

.webinar-banner {
    background: linear-gradient(135deg, #001f54, #003d8f);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 31, 84, 0.3);
}

.webinar-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00c853, #00a843);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
    }
}

.webinar-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.webinar-announcement-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.webinar-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.webinar-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #00c853;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    color: #00c853;
    font-size: 0.875rem;
}

.highlight-item span {
    color: white;
    font-size: 0.875rem;
}

.webinar-topics {
    margin-bottom: 2rem;
}

.webinar-topics h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.webinar-topics ul {
    list-style: none;
    padding: 0;
}

.webinar-topics li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.webinar-topics li i {
    color: #00c853;
}

.webinar-speakers-preview {
    margin-bottom: 2rem;
}

.webinar-speakers-preview h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.speaker-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker-mini-picture{
    text-align: center;
    color: #00c853;
    font-size: 1.5rem;
}

.speaker-mini-picture a{
    color: #00c853!important;
}

.speaker-mini-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
    flex-shrink: 0;
}

.circle-avatar {
  width: 200px;       /* Set a specific width */
  height: 200px;      /* Set an equal height to make it a square */
  object-fit: cover;  /* This ensures the image covers the entire area without stretching */
  border-radius: 50%; /* This rounds the corners into a circle */
    border-color: #00c853;
    border-width: 0.25rem;
    border-style: solid;
}

.speaker-mini-info {
    display: flex;
    flex-direction: column;
}

.speaker-mini-info strong {
    color: white;
    font-size: 1rem;
}

.speaker-mini-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.webinar-cta {
    text-align: center;
}

.btn-webinar {
    background: linear-gradient(135deg, #00c853, #00a843);
    color: white;
    padding: 1rem 5.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.btn-webinar:hover {
    background: linear-gradient(135deg, #00a843, #008c37);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
}

.webinar-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.webinar-cta-note i {
    color: #00c853;
}

.webinar-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.webinar-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #5b9bd5, #00c853);
    top: 50px;
    left: 50px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.graphic-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}


/* Responsive Design */
@media (max-width: 968px) {

    .webinar-content-wrapper {
        grid-template-columns: 1fr;
    }

    .webinar-visual {
        display: none;
    }
}

@media (max-width: 768px) {
 
    .webinar-announcement-title {
        font-size: 2rem;
    }

    .webinar-banner {
        padding: 2rem;
    }

    .webinar-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .webinar-announcement-title {
        font-size: 1.75rem;
    }

    .btn-webinar {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
