:root {
    --orange: #FF6347;
    --terracotta: #CD5C5C;
    --saffron: #F4A460;
    --mustard: #FFD700;
    --cinnamon: #D2691E;
    --turmeric: #FFBF00;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #000000;
    color: white;
    padding: 1rem 0.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    height: 100%;
}

.logo-container a {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.02);
}

.logo-container img {
    height: 55px;
    display: block;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0.5rem;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--mustard);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

/* Tagline */
.tagline {
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.tagline h1 {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 3rem 0;
    margin: 0;
}

/* Theme Cards */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.theme-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.theme-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

/* Registration Section */
.registration-options,
.workshop-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.option-card,
.workshop-card {
    position: relative;
}

.option-card input[type="radio"],
.workshop-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.option-content,
.workshop-content {
    background: #f8f8f8;
    padding: 0.3rem;
    border-radius: 3px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.option-content i,
.workshop-content i {
    font-size: 1rem;
    color: var(--orange);
    margin: 0;
}

.option-title,
.workshop-content span:not(.workshop-price) {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terracotta);
    margin: 0;
}

.option-price,
.workshop-price {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

input:checked + .option-content,
input:checked + .workshop-content {
    background: #fff5f0;
    border-color: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(255, 99, 71, 0.1);
}

.registration-type h3,
.workshop-selection h3 {
    color: var(--orange);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.registration-form-section {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(255, 99, 71, 0.1);
    margin: 0.8rem 0;
}

.registration-form-section h2 {
    color: var(--terracotta);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.total-section {
    margin-top: 0.5rem;
    background: #f8f8f8;
    padding: 0.4rem;
    border-radius: 4px;
}

.registration-period {
    color: var(--orange);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0.2rem;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    background: white;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .option-title,
    .workshop-content span:not(.workshop-price) {
        font-size: 0.8rem;
    }

    .option-price,
    .workshop-price {
        font-size: 0.75rem;
    }
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: var(--mustard);
    border-bottom: 2px solid var(--mustard);
}

/* Add this after the body styles */
main {
    padding-top: 100px;
}

.register-now-btn {
    background-color: var(--orange);
    padding: 0.8rem 1.5rem !important;
    border-radius: 4px;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s !important;
}

.register-now-btn:hover {
    background-color: var(--terracotta);
    transform: translateY(-2px);
    color: white !important;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: calc(100vh);
    background-image: url('../assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text visibility */
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Responsive styles for the banner */
@media screen and (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }
}

/* Countdown Timer Styles */
.countdown-section {
    background: #f8f8f8;
    padding: 2rem 0;
    text-align: center;
    margin: 0;
}

.countdown-section h2 {
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--terracotta);
}

.countdown-item .label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive styles for countdown */
@media screen and (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .countdown-item .label {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }
}

/* Update Announcement Strip Styles */
.announcement-strip {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 100px;
    width: 100%;
    z-index: 999;
    min-height: 40px;
}

.moving-text {
    white-space: nowrap;
    animation: moveText 40s linear infinite;
    display: inline-block;
    padding-left: 100%;
    font-size: 16px;
    line-height: 24px;
    color: white;
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-text {
    display: inline-block;
    margin-right: 50px;
    color: white;
}

.announcement-text::after {
    content: "•";
    position: absolute;
    right: -25px;
    color: var(--mustard);
    font-size: 1.2em;
}

/* Ensure yellow highlight stays yellow */
.highlight-yellow {
    color: #FFD700 !important;
    font-weight: bold;
}

/* Add these styles for the swipe indicator */
.swipe-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: fadeInOut 2s infinite;
    z-index: 2;
    cursor: pointer;
}

.swipe-icon {
    margin-bottom: 5px;
}

.swipe-icon i {
    font-size: 24px;
    animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Add this to your existing media queries if needed */
@media screen and (max-width: 768px) {
    .swipe-icon i {
        font-size: 20px;
    }
    .swipe-indicator {
        bottom: 20px;
    }
}

/* Update Footer Styles */
.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--orange);
}

.contact-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.contact-list li {
    margin-bottom: 0.3rem;
}

.organization {
    padding-left: 1.5rem;
    line-height: 1.4;
}

/* Update footer section grid for better spacing */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Add these new welcome section styles */
.welcome-section {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    padding: 5rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 1;
}

.welcome-wrapper {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
}

.welcome-header {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.welcome-header .highlight {
    color: var(--orange);
    font-weight: 700;
}

.decorative-line {
    height: 4px;
    width: 100px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--orange), var(--terracotta), var(--saffron));
    border-radius: 2px;
}

.welcome-content {
    display: grid;
    gap: 3rem;
    padding: 0 1rem;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-text {
    font-size: 1.2rem;
    color: var(--cinnamon);
    margin-bottom: 1rem;
}

.welcome-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.welcome-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #444;
    padding: 1rem;
    background: #fff5f0;
    border-radius: 10px;
    transition: transform 0.3s;
}

.welcome-features li:hover {
    transform: translateY(-5px);
}

.welcome-features i {
    font-size: 1.5rem;
    color: var(--orange);
}

.welcome-quote {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    border-radius: 15px;
    margin-top: 3rem;
}

.welcome-quote blockquote {
    color: white;
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.welcome-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
    .welcome-header h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.3rem;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }

    .welcome-quote blockquote {
        font-size: 1.1rem;
    }
}

/* Psychoneurology Section Styles */
.psychoneurology-section {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.definition-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    margin-bottom: 3rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: var(--orange);
}

.card-header h3 {
    color: var(--terracotta);
    font-size: 1.5rem;
}

.dual-perspective {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.perspective-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    transition: transform 0.3s;
}

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

.key-points-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
}

.key-points-section h3 {
    color: var(--terracotta);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.key-points-content {
    padding: 0 1rem;
}

.key-points-content p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .key-points-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .dual-perspective {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .point-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .point-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .point-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Add these styles for the two-line navigation item */
.two-line-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-align: center;
    padding: 0.25rem 0.5rem !important;
}

.two-line-nav span {
    display: block;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .two-line-nav {
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .two-line-nav span {
        display: inline;
    }
}

/* Update responsive navigation styles */
@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        padding: 0.5rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 0.5rem;
        width: 100%;
        display: block;
        font-size: 0.9rem;
    }

    .register-now-btn {
        margin: 0.5rem auto;
        display: inline-block;
        padding: 0.5rem 1rem !important;
    }

    .two-line-nav {
        flex-direction: row;
        gap: 0.25rem;
        justify-content: center;
        padding: 0.5rem !important;
    }

    .two-line-nav span {
        display: inline;
        font-size: 0.9rem;
    }
}

/* Add styles for horizontal menu above 992px */
@media screen and (min-width: 993px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
    }
}

/* Add this to your existing JavaScript file (main.js) */

/* Registration Form Button Styles */
.registration-button-container {
    margin: 4rem auto;
    text-align: center;
    max-width: 400px;
}

.registration-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.2);
}

.registration-form-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
}

.registration-form-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.registration-form-btn i {
    font-size: 1.5rem;
}

.registration-form-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    gap: 2px;
}

.registration-form-btn .main-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.registration-form-btn .sub-text {
    font-size: 1rem;
    opacity: 0.9;
}

.registration-form-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.registration-form-btn:hover .arrow-icon {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .registration-form-btn {
        padding: 1.2rem 1.5rem;
    }

    .registration-form-btn .main-text {
        font-size: 1.2rem;
    }

    .registration-form-btn .sub-text {
        font-size: 0.9rem;
    }
}

/* Add these styles for the registration closed message */
.registration-closed-message {
    background: #fff5f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid var(--orange);
}

.alert-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.alert-message i {
    font-size: 3rem;
    color: var(--orange);
}

.alert-message h3 {
    color: var(--terracotta);
    font-size: 1.8rem;
    margin: 0;
}

.alert-message p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.main-header {
    z-index: 1000;
}

th[scope="col"] {
    z-index: 1;
}

/* Download Brochure Button Styles */
.download-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--terracotta);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.download-brochure-btn:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-brochure-btn i {
    font-size: 1.2rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .download-brochure-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Download Brochure Nav Button */
.download-brochure-nav {
    display: none;
}

/* Remove the nav button styles */
.download-brochure-nav {
    display: none;
}

/* Add footer logos styles */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .footer-logos {
        gap: 1rem;
    }
    
    .footer-logos img {
        height: 40px;
    }
}

/* Add this to your existing announcement styles */
.highlight-yellow {
    color: #FFD700 !important;
    font-weight: bold;
}

/* Add this to your existing announcement styles */
.announcement-strip {
    background: rgba(0, 0, 0, 0.9);
}

/* Schedule Download Button */
.schedule-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2c3e50;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.schedule-download-btn:hover {
    background-color: transparent;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.schedule-download-btn i {
    font-size: 1.2em;
}
 