* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #0055aa;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo h1 {
    color: #0066cc;
}

/* Transparent Header */
.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0px;
}

.header-content {
    display: flex;
    justify-content: space-between; /* This pushes logo left and nav right */
    align-items: center;
    width: 100%;
    max-width: 150000px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation container */
nav {
    text-transform: uppercase;
    margin: 0 auto; /* This centers the nav between logo and empty space */
    position: absolute;
    right: 0%;
    transform: translateX(-10%);
}

/* Logo container */
.logo {
    position: relative;
    z-index: 2; /* Ensures logo stays above other elements */
}

.brand-name {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: white;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: white;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Scrolled State */
.transparent-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    nav {
        position: static;
        left: auto;
        transform: none;
        margin: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
}



/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 10%;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px 15px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* Projects Section */
.projects {
    padding: 100px 5%;
    text-align: center;
}

.projects h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    padding: 15px;
}

.project-card p {
    padding: 0 15px 15px;
}

/* About Section */
.about {
    display: flex;
    padding: 100px 5%;
    align-items: center;
    background: #f0f8ff;
}

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    text-align: center;
}

.contact h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact form input,
.contact form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form textarea {
    height: 150px;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: #0066cc;
    margin-bottom: 10px;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: #0066cc;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .about {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}
/* Video Background Styles */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Optional overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .video-background {
        height: 70vh; /* Adjust height for mobile */
    }
    
    .video-background video {
        /* Alternative mobile-first approach */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .video-background {
        height: 60vh;
    }
}

/* Adjust slider to work with video */
.slider {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.slide-content {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    border-radius: 10px;
}
/* Disclaimer Popup Styles */
.disclaimer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    width: 80%;
    max-width: 800px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popup-header h3 {
    color: #0066cc;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.popup-body {
    line-height: 1.6;
}

.popup-body p {
    margin-bottom: 15px;
}

/* Popup Footer & Button Styles */
.popup-footer {
    text-align: center;
    padding: 20px 0 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.agree-btn {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agree-btn:hover {
    background: linear-gradient(135deg, #004499, #0066cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.agree-btn:active {
    transform: translateY(0);
}

.one_event {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.evnt_iimg img {
  max-width: 100%;
  height: auto;
}

/* Center align the banking partners heading */
.bank-content h2 {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0; /* Add some vertical spacing */
}

/* Optional: Add styling to make it stand out more */
.bank-content h2 {
    text-transform: uppercase;
    font-size: 2rem;
    color: #0066cc; /* Or your preferred color */
    letter-spacing: 2px;
    position: relative; /* For optional underline effect */
}

/* Optional: Add decorative underline */
.bank-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0066cc;
    margin: 15px auto 0;
}

.bank {
    text-align: center;
    padding: 50px 0; /* Adjust as needed */
}

.bank-content {
    max-width: 1200px; /* Or your preferred max width */
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .bank-content h2 {
        font-size: 1.5rem;
        padding: 15px 0;
    }
}

.owl-carousel {
    margin: 30px auto;
    max-width: 1200px;
}

/* Sign Up Section Styles */
.signup-section {
    padding: 100px 20px;
    background: #f9f9f9;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

.signup-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signup-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0066cc;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: #0066cc;
    outline: none;
}

.name-group {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.username-group, .password-group {
    position: relative;
}

.generate-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #0066cc;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: #ff4d4d;
    width: 0%;
    transition: width 0.3s, background 0.3s;
    display: block;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    display: block;
}

.terms {
    display: flex;
    align-items: center;
}

.terms input {
    width: auto;
    margin-right: 10px;
}

.terms label {
    margin-bottom: 0;
    font-weight: normal;
}

.terms a {
    color: #0066cc;
    text-decoration: none;
}

.signup-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 20px;
    background: #0066cc;
    border: none;
}

.signup-btn:hover {
    background: #0055aa;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.login-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .name-group {
        flex-direction: column;
        gap: 0;
    }
    
    .signup-container {
        padding: 30px 20px;
    }
}

/* Login Section Styles */
.login-section {
    padding: 100px 20px;
    background: #f9f9f9;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    background-image: url('https://migsun.in/assets/images/login-bg.jpg'); /* Optional */
    background-size: cover;
    background-position: center;
}

.login-container {
    width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0066cc;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: #0066cc;
    outline: none;
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 25px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    width: auto;
    margin-right: 8px;
}

.remember-me label {
    margin-bottom: 0;
    font-weight: normal;
}

.forgot-password {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    background: #0066cc;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #0055aa;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.signup-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Terms Checkbox Styles */
.terms {
    margin: 25px 0;
    position: relative;
}

.terms input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.custom-checkbox {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #0066cc;
    border-radius: 3px;
    transition: all 0.2s;
}

.terms input:checked ~ .terms-label .custom-checkbox {
    background-color: #0066cc;
    border-color: #0066cc;
}

.custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms input:checked ~ .terms-label .custom-checkbox:after {
    display: block;
}

.terms-text {
    margin-left: 10px;
    line-height: 1.4;
}

.terms a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.terms a:hover {
    text-decoration: underline;
}

/* Mobile menu styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

nav ul {
    display: flex;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    nav ul.active {
        display: flex;
    }
}