/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    color: #333;
}
/* Hide default cursor ONLY on this page */
body {
    cursor: none;
}

/* Dot */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #0055ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
}

/* Ring */
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(0, 85, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: 
        width 0.2s ease,
        height 0.2s ease,
        border 0.2s ease,
        transform 0.05s linear;
}

/* Hover animation */
.cursor-ring.cursor-hover {
    width: 52px;
    height: 52px;
    border-color: #ff8a00;
}

/* Video Background Styling */
.video-background {
    opacity: 50%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BACK ARROW (TOP LEFT) --- */
.back-arrow {
    position: absolute;
    top: 25px;
    left: 110px;
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    z-index: 20; /* High z-index to sit on top of everything */
    transition: transform 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.back-arrow:hover {
    transform: translateX(-5px); /* Slight animation on hover */
    color: #0d6efd;
}

/* --- NAVBAR (CENTERED) --- */
.navbar {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: auto;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0d6efd;
}

/* --- FULL SCREEN CONTAINER --- */
.full-screen-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* THE GRADIENT BACKGROUND */
 
    /* THE BLUR EFFECT */
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
}

.content-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    padding: 0 50px;
    /* Adjusted top margin to clear the navbar area visually */
    margin-top: 40px; 
}

/* Left Section */
.left-section {
    flex: 1;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* (Note: Back arrow removed from here) */

.hero-text h1 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blue-text { color: #0d6efd; }

.orange-text {
    color: #fd7e14;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.black-line {
    display: inline-block;
    width: 180px;
    height: 8px;
    background-color: #000;
    margin-left: 15px;
}

.hero-text p {
    font-size: 15px;
    color:black;
    line-height: 1.8;
    max-width: 550px;
    margin-top: 25px;
    font-weight: 400;
    
}

/* Right Section (Form) */
.right-section {
    flex: 1;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.1); 
}

.right-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    color: black;
    
}

.sub-text {
    font-size: 14px;
    color: black;
    margin-bottom: 40px;
    
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    max-width: 500px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: black
    
}

.form-group input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(193, 129, 0, 0.6);
    background: transparent;
    outline: none;
    font-size: 16px;
    transition: all 0.3s;
    color: #fff;
}

.form-group input:focus {
    border-bottom: 2px solid #0d6efd;
}
.navbar {
  display: flex;
  align-items: center;
}

.hamburger {
  margin-left: auto; /* pushes it to right */
}


.submit-btn {
    width: 45%;
    max-width: 500px;
    padding: 13px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0b5ed7;
}

/* Responsive */
@media (max-width: 1000px) {
    .content-wrapper {
        flex-direction: column;
        padding: 40px;
        overflow-y: auto;
    }
    
    .full-screen-container {
        height: auto;
        min-height: 100vh;
        display: block;
    }

    .left-section, .right-section {
        padding: 0;
        width: 100%;
        border: none;
    }

    .left-section {
        margin-bottom: 60px;
        margin-top: 80px; 
    }
    
    .navbar {
        top: 20px;
        position: relative; /* On mobile, let it flow or stack */
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }

    .back-arrow {
        top: 20px;
        left: 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 12px;
    }
}
/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 25;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* ---------------- MOBILE NAVBAR ---------------- */
@media (max-width: 900px) {



  .navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
    z-index: 10001;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  @media (max-width: 900px) {

  /* Disable custom cursor on mobile */
  

  .navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
    z-index: 10001;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  /* Mobile menu */
  .nav-links {
    position: fixed;
    top: 70px;
    right: 20px;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    flex-direction: column;
    gap: 18px;
    padding: 20px 26px;
    border-radius: 16px;

    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;

    transition: all 0.35s ease;
  }

  .nav-links a {
    color: #fff;
    font-size: 14px;
    text-align: right;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}}