:root {
    --primary-red: #c00;
    --primary-blue: #0050d0;
    --gradient: linear-gradient(90deg, #c00, #0050d0);
    --gradient-reverse: linear-gradient(90deg, #0050d0, #c00);
    --light-bg: linear-gradient(135deg, rgba(200, 0, 0, 0.08), rgba(0, 70, 180, 0.08));
    --dark-gradient: linear-gradient(160deg, rgba(200, 0, 0, 0.9), rgba(0, 70, 180, 0.9));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-light: #f2f2f2;
    --gray-medium: #666;
    --gray-dark: #333;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 18px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    margin: 0;
    min-height: 100vh;
    background: var(--light-bg);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 45px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 30px;
}

.search-container {
    flex: 1;
    max-width: 400px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 17px;
    background: var(--off-white);
    transition: var(--transition);
    /*font-family: 'Hind Siliguri', sans-serif;*/
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--gradient-reverse);
    transform: translateY(-50%) scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    background: var(--gradient);
    color: var(--white);
}

.nav-menu li a.active {
    background: var(--gradient);
    color: var(--white);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--gradient);
    border-radius: 50%;
}

.nav-menu li a i {
    font-size: 14px;
}

/* Mobile Menu - FIXED */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Remove the separate search icon from mobile header */
.search-icon-mobile {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gray-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}

/* Mobile search is now INSIDE the mobile menu */
.mobile-search-container {
    margin-bottom: 20px;
    display: block !important; /* Always show in mobile menu */
}

.mobile-search-form {
    display: flex;
    width: 100%;
}

.mobile-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--off-white);
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
}

.mobile-search-btn {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-search-btn:hover {
    background: var(--gradient-reverse);
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
}

.mobile-nav-menu li a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--off-white);
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    background: var(--gradient);
    color: white;
    transform: translateX(5px);
}

.mobile-nav-menu li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Video Section */
.video-section {
    margin: 30px 0 40px;
    width: 100%;
}

.video-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.video-thumbnail {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gradient-reverse);
}

.video-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.video-features {
    flex: 1.13;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* Registration Section */
.registration-section {
    margin: 40px 0 60px;
    width: 100%;
}

/* Auth Wrapper */
.auth-wrapper {
    display: flex;
    min-height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    background: var(--white);
    width: 100%;
}

/* Trust Panel */
.trust-panel {
    flex: 1;
    padding: 40px;
    background: var(--dark-gradient);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trust-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
    background-size: cover;
}

.trust-content {
    position: relative;
    z-index: 1;
}

.trust-panel h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.trust-panel ul {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.trust-panel li {
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    opacity: 0.95;
}

.trust-panel li i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.additional-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.prop-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prop-card i {
    font-size: 20px;
    color: #ffd700;
}

.prop-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.trust-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.trust-badge i {
    font-size: 24px;
    margin-right: 12px;
    color: #ffd700;
}

.trust-badge span {
    font-weight: 600;
    font-size: 15px;
}

/* Form Panel */
.form-panel {
    flex: 1.2;
    padding: 40px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 30px;
    text-align:center;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.subtext {
    color: var(--gray-medium);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form */
form {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}

.field {
    margin-bottom: 24px;
    position: relative;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 15px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    font-size: 16px;
}

input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Li Ador Noirrit';
    transition: var(--transition);
    background: var(--off-white);
}

input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 80, 208, 0.12);
    background: var(--white);
}

/* Contact Toggle */
.contact-toggle {
    margin-bottom: 24px;
}

.toggle-container {
    position: relative;
    display: flex;
    background: #dddddd;
    border-radius: 18px;
    padding: 4px;
    overflow: hidden;
}

.toggle-container input {
    display: none;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 9px;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 26px;
}

.toggle-option i {
    margin-right: 8px;
    font-size: 16px;
}

.toggle-bg {
    position: absolute;
    width: 50%;
    height: calc(100% - 0px);
    background: var(--gradient);
    border-radius: 18px;
    transition: transform 0.3s ease;
    top: 0px;
    left: 0px;
}

#email:checked ~ .toggle-bg {
    transform: translateX(100%);
}

#mobile:checked ~ label[for="mobile"],
#email:checked ~ label[for="email"] {
    color: var(--white);
    font-weight: 600;
}

/* Password Field */
.password .toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    cursor: pointer;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    /*background: #f8f9fa;*/
    padding: 4px 8px;
    border-radius: 6px;
    width: 40px;
}

.toggle-text {
    font-weight: 500;
}

.strength-meter {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strength-label {
    font-size: 13px;
    color: var(--gray-medium);
}

.strength {
    display: flex;
    gap: 4px;
    flex: 1;
}

.strength-bar {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    transition: var(--transition);
}

.strength-text {
    font-size: 13px;
    font-weight: 500;
    min-width: 60px;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    width: auto;
    margin-top: 4px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.checkbox a:hover {
    text-decoration: underline;
}

/* CTA Button */
.cta {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--border-radius);
    background: var(--gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-family: 'Li Ador Noirrit', sans-serif;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--gradient-reverse);
}

.helper {
    text-align: center;
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Action Buttons */
.action-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
    font-family: 'Li Ador Noirrit';
}

.btn-forgot {
    background: #313d9f;
    color: #fff;
    border: 1px solid #313d9f;
}

.btn-forgot:hover {
    background: #1c2889;
}

.btn-login {
    background: #6c2662;
    color: #fff;
    border: 1px solid #6c2662;
}

.btn-login:hover {
    background: #631959;
}

.btn-delete {
    background: #b80714;
    color: #fff;
    border: 1px solid #b80714;
}

.btn-delete:hover {
    background: #94000b;
}

.login {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.login a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.login a:hover {
    text-decoration: underline;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--gray-medium);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    padding: 0 15px;
    font-size: 14px;
}

/* Social Login */
.social-login {
    text-align: center;
}

.social-login p {
    margin-bottom: 15px;
    color: var(--gray-medium);
    font-size: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.google {
    background: #db4437;
}

.social-icon.whatsapp {
    background: #25d366;
}

/* Footer */
footer {
    background: var(--gray-dark);
    color: white;
    padding: 50px 0 20px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.contact-info {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 8px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

/* OTP MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 1000px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    margin:auto;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* OTP Modal Sidebar */
.modal-sidebar {
    width: 300px;
    background: var(--dark-gradient);
    color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-sidebar h3 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-sidebar ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-sidebar li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.modal-sidebar li i {
    color: #4cd964;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-card i {
    font-size: 24px;
    color: #ffd700;
}

.benefit-card h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
}

.benefit-card p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.modal-sidebar .trust-badge {
    margin-top: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-sidebar .trust-badge i {
    font-size: 32px;
    color: #4cd964;
}

.modal-sidebar .trust-badge h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.modal-sidebar .trust-badge p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* OTP Modal Main */
.modal-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-medium);
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

.otp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    background: var(--off-white);
    padding: 15px;
    border-radius: var(--border-radius);
}

.otp-info i {
    font-size: 24px;
    color: var(--primary-blue);
}

.otp-info p {
    margin: 0;
    font-size: 15px;
}

.otp-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.otp-digit {
    width: 60px;
    height: 70px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--off-white);
}

.otp-digit:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 80, 208, 0.12);
}

.otp-timer {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 25px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.otp-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.resend-otp, .verify-otp {
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 15px;
}

.resend-otp {
    background: var(--off-white);
    border: 1px solid #ddd;
    color: var(--gray-dark);
}

.resend-otp:hover:not(:disabled) {
    background: #e9ecef;
}

.verify-otp {
    background: var(--gradient);
    border: none;
    color: white;
}

.verify-otp:hover {
    background: var(--gradient-reverse);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.resend-otp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.otp-note {
    background: #fff8e1;
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 12px;
    border-left: 4px solid var(--warning);
}

.otp-note i {
    color: var(--warning);
    font-size: 18px;
    margin-top: 2px;
}

.otp-note p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .auth-wrapper {
        min-height: auto;
    }
    
    .trust-panel, .form-panel {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        height: 40px;
    }
    
    .auth-wrapper {
        flex-direction: column;
    }
    
    .trust-panel {
        padding: 30px 20px;
        text-align: center;
    }
    
    .trust-panel h2 {
        font-size: 24px;
    }
    
    .form-panel {
        padding: 30px 20px;
    }
    
    .form-header h1 {
        font-size: 28px;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .video-thumbnail, .video-features {
        width: 100%;
    }
    
    /* OTP Modal Responsive */
    .modal-container {
        flex-direction: column;
        max-width: 500px;
        overflow: auto;
    }
    
    .modal-sidebar {
        width: 100%;
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        height: 35px;
    }
    
    /* Center logo on mobile */
    .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .trust-panel h2 {
        font-size: 22px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
    
    .video-thumbnail img {
        height: 200px;
    }
    
    .video-overlay h3 {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h4 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .otp-inputs {
        gap: 10px;
    }
    
    .otp-digit {
        width: 50px;
        height: 60px;
        font-size: 24px;
    }
    
    .otp-actions {
        flex-direction: column;
    }
    
    .resend-otp, .verify-otp {
        width: 100%;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .trust-panel h2 {
        font-size: 20px;
    }
    
    .form-header h1 {
        font-size: 22px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-thumbnail img {
        height: 180px;
    }
    
    .otp-inputs {
        gap: 8px;
    }
    
    .otp-digit {
        width: 45px;
        height: 55px;
        font-size: 22px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .socials {
        justify-content: center;
    }
}

/* Active hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile nav animation */
.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}