* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}

:root {
    --primary-color: #0C669B;
    --overlay-bg: #0c679b1f;
    /* login content  */
    --primary: #0C669B;
    --primary-dark: #0C669B;
    --secondary: #00c6fb;
    --white: #ffffff;
    --gray-light: #f5f7ff;
    --gray: #e6e9f5;
    --gray-dark: #a1a5b9;
    --dark: #1e1e2d;
    /* Register Now Content  */
    --primary: #0C669B;
    --secondary: #363839;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* contect-content  */
    --secondary-color: #094b74;
    --accent-color: #FF7D33;
    --text-color: #333;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5eb;
    --dark-gray: #6c757d;
    --white: #ffffff;
    /* registration details content  */
    --primary-color: #0C669B;
    --secondary-color: #094b74;
    --accent-color: #FF7D33;
    --text-color: #333;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5eb;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --early-bird: #2e7d32;
    --priority: #d84315;
    --fast-track: #6a1b9a;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('https://assets.hyatt.com/content/dam/hyatt/hyattdam/images/2023/03/14/2357/KOLKA-P0113-Hotel-Exterior-Daytime.jpg/KOLKA-P0113-Hotel-Exterior-Daytime.16x9.jpg?imwidth=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

/* Header container */
.header {
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top row styles */
.top-row {
    background-color: #f8f9fa;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.top-social-icons {
    display: flex;
    gap: 15px;
}

.top-social-icons a {
    color: #555;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.top-social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.top-row-mobile-auth-buttons {
    display: none;
}

/* Mobile profile styles */
.mobile-profile-info {
    display: none;
}

/* Middle row styles */
.middle-row {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons a {
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.login-btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
}

.register-btn:hover {
    background-color: var(--primary-color);
}

/* Add to your CSS file */
.profile-info {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
}

.profile-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.profile-icon:hover {
    background-color: rgba(255, 255, 255, 0.416);
}

.profile-icon i {
    font-size: 14px;
    margin-right: 8px;
    color: var(--primary-color);
}

.profile-icon .username {
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.profile-info:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-info:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}


/* Bottom row - navigation */
.bottom-row {
    background-color: var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    position: relative;
}

.main-nav>li {
    position: relative;
}

.main-nav>li>a {
    color: white;
    text-decoration: none;
    padding: 15px 1.3vw;
    display: block;
    font-weight: 500;
    transition: background-color 0.3s;
}

.main-nav>li>a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.main-nav>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    border-bottom: 1px solid #f1f1f1;
    list-style-type: none;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    padding: 10px;
}

/* Mobile auth buttons (hidden on desktop) */
.mobile-menu {
    display: none;
}

.mobile-auth-buttons {
    display: none;
    flex-direction: row;
    gap: 25px;
    padding: 20px;
    background-color: var(--primary-color);
}

.mobile-auth-buttons a {
    width: 100%;
    text-align: center;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #fff;
    color: #fff;
}

/* Content Section Styles */
.content {
    width: 100%;
    /* padding: 40px 0%; */
    /* max-width: 1200px; */
    margin: 0 auto;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Login Content css  */
.login-section {
    background-color: var(--gray-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px 5%;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.05;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login-container-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-container-logo img {
    height: 45px;
    width: auto;
}

.login-container-logo h2 {
    color: var(--dark);
    font-size: 24px;
    margin-top: 15px;
    font-weight: 600;
}

.login-container-logo p {
    color: var(--gray-dark);
    font-size: 14px;
    margin-top: 5px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group label {
    display: block;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    height: 50px;
    background: var(--gray-light);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

.input-group .icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: var(--gray-dark);
    font-size: 16px;
}
.toggle-password {
    position: absolute;
    right: 15px;
    top: 40px;
    color: var(--gray-dark);
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.forgot-password a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.login-submit-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(74, 108, 247, 0.4);
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--gray-dark);
}

.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-link a:hover {
    text-decoration: underline;
}

.medical-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.medical-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary);
    animation: float 8s infinite ease-in-out;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(74, 108, 247, 0.05);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.pulse-animation {
    animation: pulse 5s infinite ease-in-out;
}

/* .Register Now button content css  */
.registerNow-container {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
}

/* Right Panel - Form (100% width) */
.form-panel {
    flex: 0 0 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-group {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    font-size: 0.8rem;
}

select.form-control {
    appearance: none;
    padding-right: 2.5rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.radio-option input,
.checkbox-option input {
    width: auto;
    margin-right: 0.5rem;
}

.btn {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.05rem;
    border: none;
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(12, 102, 155, 0.1);
}

/* Status messages */
.status-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
    font-size: 1rem;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

.loading {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
    display: block;
}

/* Step tracker styles */
.step-tracker {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 3rem;
    position: relative;
    width: 90%;
    max-width: 600px;
    padding: 0 20px;
}

.step-tracker::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 60px;
    right: 60px;
    height: 10px;
    background-color: var(--primary);
    opacity: 0.2;
    z-index: 1;
    transform: translateY(-50%);
}

.step-progress {
    content: '';
    position: absolute;
    top: 30%;
    left: 60px;
    height: 10px;
    background-color: var(--primary);
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 80px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e9ecef;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.step.active .step-number {
    border-color: var(--primary);
    color: var(--primary);
    background-color: white;
}

.step.completed .step-number {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--primary);
}

/* Form section styles */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.form-navigation .btn {
    padding: 0.75rem 1.5rem;
    margin: 0;
}

/* Hide previous button on first section */
.form-section:first-child .prev-btn {
    display: none;
}

/* Home Content css  */
.home-about-container {
    width: 100%;
    aspect-ratio: 4 / 1;
    background-color: #fff;
    background-image: url('../Images/02RevisedDeskTop_SEPRE25_Banner(1920px X 480px).jpg');
    background-size: cover; /* or contain, depending on your preference */
    background-position: center;
    background-repeat: no-repeat;
}


.transparent-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: transparent;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    background-color: #09497448;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2px;
    color: black;
    text-align: center;
    box-shadow: var(--box-shadow);
    z-index: 10;
    transition: var(--transition);
}

.banner-overlay h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-overlay p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.banner-overlay .highlight {
    color: var(--white);
    font-weight: 600;
}

.date-box {
    display: inline-block;
    background-color: #0c679b47;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin: 0.25rem;
    font-weight: 400;
    color: white;
}

/* countdown container section  */
.countdown {
    width: 100%;
    background-color: var(--primary-color);
    padding: 10px 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.countdown p {
    margin: 0;
    padding: 0;

}

.countdown span {
    width: 60px;
    height: 60px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    border: 2px solid rgba(220, 219, 219, 0.182);
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.countdown strong {
    font-size: 20px;
    color: white;
}

/* welcome-message-container css  */
.welcome-message-container {
    display: flex;
    width: 100%;
    padding: 30px 2%;
    min-height: 500px;
    flex-wrap: wrap;
    background-color: white;
}

.full-width-text-container {
    width: 100%;
    padding: 30px 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.016);
}

/* Director info styles - LEFT ALIGNED */
.director-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.director-info {
    width: 250px;
    flex-shrink: 0;
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.director-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.director-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.director-title {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    line-height: 1.4;
}

.welcome-content {
    flex: 1;
}

/* Text content styles */
.full-width-text-container h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.full-width-text-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 9%;
    height: 3px;
    background-color: var(--primary-color);
}

.full-width-text-container h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
}

.full-width-text-container p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    text-align: justify;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.highlight-box ul {
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 8px;
}

.highlight-box li strong {
    color: var(--primary-color);
}

/* home-venue-container css  */
.home-venue-container {
    display: flex;
    width: 100%;
    padding: 50px 5%;
    min-height: 500px;
    flex-wrap: wrap;
    background-color: white;
}

.image-container {
    width: 50%;
    position: relative;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-container {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.overlay-image {
    position: absolute;
    width: 60%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid white;
    border-top-right-radius: 8px;
    transform: translate(-10%, 10%);
}

/* Text content styles */
.text-container h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.text-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20%;
    height: 3px;
    background-color: var(--primary-color);
}

.text-container h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
}

.text-container p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.highlight-box ul {
    padding-left: 20px;
}

.highlight-box li {
    margin-bottom: 8px;
}

/* Committee Content css */
.comittee-comtainer {
    width: 100%;
    min-height: calc(100vh - 400px);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comittee-comtainer h1 {
    text-align: center;
    color: #0C669B;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.263);
}

/* Faculty Content css  */
/* Workshop Content css  */
.workshop-main-container {
    background-color: white;
    width: 100%;
    margin: 0 auto;
    padding: 40px 5% 20px 5%;
}

.workshop-header {
    text-align: center;
    color: #0C669B;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.263);
}

.workshop-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.workshop-card {
    /* background-color: rgba(216, 212, 212, 0.252); */
    background-color: #0c679b0e;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-date {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.workshop-details {
    font-size: 0.8rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.workshop-venue {
    font-style: italic;
    color: #555;
}

/* Registration Details Content css  */
.registrationdetails-container {
    width: 100%;
    padding: 40px 5%;
    background-color: var(--white);
}

.registrationdetails-header {
    text-align: center;
    margin-bottom: 30px;
}

.registrationdetails-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.registrationdetails-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 auto 40px;
    text-align: center;
}

/* New toggle switch style */
.registrationdetails-tabs {
    width: 60%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.registrationdetails-tab-toggle-container {
    display: flex;
    background-color: var(--medium-gray);
    border-radius: 50px;
    padding: 5px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.registrationdetails-tab-toggle-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background-color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 0;
}

.registrationdetails-tab-toggle-container.general-active .registrationdetails-tab-toggle-bg {
    transform: translateX(0);
}

.registrationdetails-tab-toggle-container.pgt-active .registrationdetails-tab-toggle-bg {
    transform: translateX(100%);
}

.registrationdetails-tab-button {
    width: 100%;
    padding: 10px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    color: var(--dark-gray);
    font-weight: 600;
}

.registrationdetails-tab-button.active {
    color: white;
}

.registrationdetails-tab-content {
    display: none;
}

.registrationdetails-tab-content.active {
    display: block;
}

.registrationdetails-category-title {
    position: relative;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
}

.registrationdetails-pricing-periods {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.registrationdetails-pricing-period {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registrationdetails-early-advantage {
    background-color: rgba(46, 125, 50, 0.1);
    border: 2px solid var(--early-bird);
}

.registrationdetails-priority-access {
    background-color: rgba(216, 67, 21, 0.1);
    border: 2px solid var(--priority);
}

.registrationdetails-fast-track {
    background-color: rgba(106, 27, 154, 0.1);
    border: 2px solid var(--fast-track);
}

.registrationdetails-period-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.registrationdetails-early-advantage .registrationdetails-period-title {
    color: var(--early-bird);
}

.registrationdetails-priority-access .registrationdetails-period-title {
    color: var(--priority);
}

.registrationdetails-fast-track .registrationdetails-period-title {
    color: var(--fast-track);
}

.registrationdetails-period-dates {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.registrationdetails-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.registrationdetails-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.registrationdetails-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.registrationdetails-card-header {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-align: center;
}

.registrationdetails-price-container {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
}

.registrationdetails-price-tier {
    flex: 1;
    min-width: 200px;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.registrationdetails-Price-ribbon {
    position: absolute;
    width: 100%;
    max-width: 250px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.212);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.registrationdetails-Price-ribbon.early {
    background-color: var(--early-bird);
}

.registrationdetails-Price-ribbon.priority {
    background-color: var(--priority);
}

.registrationdetails-Price-ribbon.fast {
    background-color: var(--fast-track);
}

.registrationdetails-price-tier.early {
    background-color: rgba(46, 125, 50, 0.1);
}

.registrationdetails-price-tier.priority {
    background-color: rgba(216, 67, 21, 0.1);
}

.registrationdetails-price-tier.fast {
    background-color: rgba(106, 27, 154, 0.1);
}

.registrationdetails-price-label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.early .registrationdetails-price-label {
    color: var(--early-bird);
}

.priority .registrationdetails-price-label {
    color: var(--priority);
}

.fast .registrationdetails-price-label {
    color: var(--fast-track);
}

.registrationdetails-price {
    font-size: 1.2rem;
    font-weight: bold;
}

.early .registrationdetails-price {
    color: var(--early-bird);
}

.priority .registrationdetails-price {
    color: var(--priority);
}

.fast .registrationdetails-price {
    color: var(--fast-track);
}

.registrationdetails-card-highlights {
    list-style-type: none;
}

.registrationdetails-card-highlights li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.registrationdetails-card-highlights li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.registrationdetails-register-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 15px;
}

.registrationdetails-register-btn:hover {
    background-color: #e66a2c;
}
/* abstact content css  */
.abstarct-main-container {
    width: 100%;
    padding: 20px 5%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.abstract-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.abstract-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.abstract-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: var(--primary-dark);
}

.process-diagram {
    margin: 40px 0;
    text-align: center;
}

.process-diagram h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.diagram-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.diagramstep {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    width: 200px;
    text-align: center;
    position: relative;
}

.diagramstep-number {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 10px;
    font-weight: bold;
}

.diagramstep:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
}
/* contact-content css  */
.contact-main-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Top Contact Section */
.contact-top-section {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-info {
    flex: 1;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
}

.company-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.company-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.company-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-meta {
    margin-bottom: 30px;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-meta-icon {
    margin-right: 15px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.contact-form-wrapper {
    flex: 1;
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 102, 155, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Contact Cards Section */
.contact-cards-section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(12, 102, 155, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.contact-card-body p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-method i {
    margin-right: 10px;
    color: var(--accent-color);
}

.availability {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.availability h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.availability p {
    color: var(--dark-gray);
}
/* Privacy Policy Content Css  */
.privacy-policy-content {
    background-color: var(--white);
    padding: 30px 5%;
    box-shadow: var(--box-shadow);
}

.privacy-policy-content h1, .privacy-policy-content h2, .privacy-policy-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.privacy-policy-content h2 {
    margin-top: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.privacy-policy-content p, .privacy-policy-content ul {
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    padding-left: 20px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
}

.privacy-policy-content .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.privacy-policy-contact-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}
/* Footer styles */
footer {
    background-color: #ffffff;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 5%;
    border-top: 1px solid #e0e0e0;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    display: inline-block;
    color: #0C669B;
}

.footer-column ul {
    margin: 5px 0;
    list-style: none;
    padding: 0;
}

.footer-column p {
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #555555;
}

.footer-column ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-column ul li {
    flex-basis: 50%;
    margin: 8px 0;
}

.footer-column input[type="text"] {
    padding: 12px;
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.footer-column button {
    padding: 12px 20px;
    width: 100%;
    background-color: #0C669B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-column button:hover {
    background-color: #094974;
}

.icon {
    margin-right: 10px;
    color: #0C669B;
}

.footer-column a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #0C669B;
    text-decoration: underline;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.association-logo {
    height: 80px;
    margin: 10px 10px 10px 0;
}

.brand-line {
    width: 50px;
    height: 4px;
    background-color: #0C669B;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #0C669B;
    margin: 5px;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 18px;
    color: #0C669B;
    /* Default icon color */
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #094974;
    /* White background on hover */
}

.social-icon:hover i {
    color: white;
    /* Red icon on hover */
}

.social-icons a:hover {
    text-decoration: none;
}

.footer-bottom {
    background-color: #f8f8f8;
    padding: 20px 5%;
    text-align: center;
    color: #777777;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom a {
    color: #777777;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #0C669B;
    text-decoration: underline;
}

.connect-text {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #555555;
}

.connect-text span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.connect-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dddddd;
    z-index: 0;
}

.association-section {
    margin-top: 20px;
}

.association-section h4 {
    margin-bottom: 10px;
    color: #0C669B;
    font-size: 16px;
}

.association-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 992px) {

    .top-row,
    .middle-row {
        padding: 8px 3%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0px 2px;
    }
    .home-about-container {
        width: 100%;
        aspect-ratio: 1.5 / 1;
        background-color: #fff;
        background-image: url('../Images/02RevisedMOBILE_SEPRE25_Banner(720px X 480px).jpg');
        background-size: cover; /* or contain, depending on your preference */
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Hide desktop elements */
    .top-row .contact-info,
    .top-row .top-social-icons,
    .auth-buttons,
    .bottom-row {
        display: none;
    }

    .top-row {
        justify-content: flex-end;
    }

    .top-row-mobile-auth-buttons {
        display: flex;
        gap: 15px;

    }

    .top-row-mobile-auth-buttons a {
        padding: 8px 15px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        font-size: 12px;
        transition: all 0.3s;
    }

    .profile-info {
        display: none;
    }

    .mobile-profile-info {
        display: flex;
        align-items: center;
        margin-left: auto;
        position: relative;
    }

    .mobile-profile-icon {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 8px 0px 8px 12px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-profile-icon:hover {
        background-color: rgba(255, 255, 255, 0.416);
    }

    .mobile-profile-icon i {
        font-size: 14px;
        margin-right: 8px;
        color: var(--primary-color);
    }

    .mobile-profile-icon .mobile-username {
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-dropdown-arrow {
        font-size: 12px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .mobile-profile-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 200px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .mobile-profile-info:hover .mobile-profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-profile-info:hover .mobile-dropdown-arrow {
        transform: rotate(180deg);
    }

    .mobile-dropdown-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .mobile-dropdown-item:hover {
        background-color: #f5f5f5;
    }

    .mobile-dropdown-item i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        color: var(--primary-color);
    }

    .logo {
        height: auto;
        width: 60vw;
        max-width: 150px;
    }

    /* Show mobile toggle */
    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile menu styles */
    .middle-row {
        padding: 10px 3%;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 5px 10px #0c679b40;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        background-color: var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        top: 115px;
        bottom: 0;
        overflow-y: auto;
    }

    .mobile-menu.active {
        max-height: calc(100vh - 115px);
        /* Adjust this value based on your header height */
    }

    .mobile-nav {
        list-style: none;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px 20px;
        color: #ffff;
        text-decoration: none;
        transition: all 0.3s;
    }

    .mobile-nav li a:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
        padding-left: 25px;
    }

    /* Mobile dropdown */
    .mobile-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: var(--primary-color);
    }

    .mobile-dropdown.active {
        max-height: 500px;
    }

    .mobile-dropdown li a {
        padding-left: 40px;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-toggle i {
        transition: transform 0.3s;
    }

    .dropdown-toggle.active i {
        transform: rotate(180deg);
    }

    /* Show mobile auth buttons */
    .mobile-auth-buttons {
        display: flex;
    }

    /* login content mobile css  */
    .login-container {
        padding: 30px;
    }

    .login-container-logo img {
        height: 40px;
    }

    .login-container-logo h2 {
        font-size: 20px;
        margin-top: 12px;
    }

    .login-container-logo p {
        font-size: 13px;
    }

    .input-group label {
        font-size: 13px;
    }

    .input-group input {
        height: 48px;
    }

    .input-group .icon {
        top: 38px;
    }

    .options {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .remember-me input {
        width: 14px;
        height: 14px;
    }

    .login-submit-btn {
        height: 48px;
        font-size: 15px;
    }

    .signup-link {
        font-size: 13px;
        margin-top: 22px;
    }

    .medical-icon {
        font-size: 20px;
    }

    .particle {
        width: 150px !important;
        height: 150px !important;
    }

    .floating-element {
        width: 60px !important;
        height: 60px !important;
    }

    /* register now content  */
    .form-panel {
        padding: 2rem 1rem;
    }

    .form-header h1 {
        font-size: 1.8rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }

    .step-tracker {
        margin-bottom: 2rem;
        width: 100%;
        padding: 0 10px;
    }

    .step-tracker::before {
        left: 40px;
        right: 40px;
        height: 6px;
    }

    .step-progress {
        left: 40px;
        height: 6px;
    }

    .step {
        width: 60px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .form-navigation {
        gap: 0.8rem;
    }

    .form-navigation .btn {
        padding: 8px 20px;
    }

    .status-message {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* countdown container section css  */
    .countdown {
        padding: 15px 2%;
        font-size: 10px;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .countdown span {
        width: 40px;
        height: 40px;
        background-color: transparent;
        backdrop-filter: blur(50px);
        border: 2px solid rgba(220, 219, 219, 0.182);
        margin: 0px 3px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 8px;
    }

    .countdown strong {
        font-size: 10px;

    }

    /* welcome-message-container css  */
    .welcome-message-container {
        flex-direction: column;
        padding: 30px 0%;
    }

    .full-width-text-container {
        padding: 5px 5%;
    }

    /* Mobile adjustments for director info */
    .director-container {
        flex-direction: column;
        gap: 25px;
    }

    .director-info {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 25px;
    }

    .director-image {
        width: 200px;
        height: 200px;
    }

    /* home-venue-container css  */
    .home-venue-container {
        flex-direction: column;
        padding: 30px 0%;
    }

    .image-container,
    .text-container {
        width: 100%;
    }

    .image-container {
        min-height: 300px;
        padding: 20px;
    }

    .text-container {
        padding: 30px;
    }

    .main-image-wrapper {
        max-width: 90%;
    }
    /* Registration Details Content  */
    .registrationdetails-tabs {
        width: 100%;
        flex-direction: column;
    }

    .registrationdetails-tab-toggle-container {
        width: 100%;
    }

    .registrationdetails-pricing-periods {
        flex-direction: column;
    }

    .registrationdetails-price-container {
        flex-direction: column;
    }
    /* abstact content css  */
    .diagram-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .diagramstep:not(:last-child)::after {
        content: "↓";
        right: 50%;
        top: 100%;
        transform: translateX(50%);
    }
    /* Contact-content css  */
    .contact-container {
        padding: 10px 2%;
    }

    .contact-top-section {
        flex-direction: column;
    }

    .company-info,
    .contact-form-wrapper {
        padding: 30px;
    }

    .company-info h2,
    .contact-form-wrapper h2,
    .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    /* footer content css  */

    .footer-column {
        flex: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        justify-content: center;
    }

    .footer-column ul li {
        flex-basis: 100%;
        text-align: center;
    }

    .brand-line {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .association-logos {
        justify-content: center;
    }

    .footer-column {
        flex: 100%;
        min-width: 100%;
        text-align: left;
        /* Changed from center to left */
        padding: 15px 0;
        /* Added padding for better spacing */
    }

    .footer-column ul {
        justify-content: flex-start;
        /* Changed from center to flex-start */
    }

    .footer-column ul li {
        flex-basis: 100%;
        text-align: left;
        /* Changed from center to left */
    }

    .brand-line {
        margin-left: 0;
        /* Changed from auto to 0 */
        margin-right: auto;
    }

    .social-icons {
        justify-content: flex-start;
        /* Changed from center to flex-start */
    }

    .association-logos {
        justify-content: flex-start;
        /* Changed from center to flex-start */
    }
}