@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);

:root {
  --primary-blue: #004AAD;
  --primary-pink: #CD208B;
  --yellow: #FFD700;
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --text-gray: #666;
  /* ===== FONT SIZES (LARGE SCREENS) ===== */
  --font-h1-large: 3.5rem;
  --font-h2-large: 2.5rem;
  --font-h3-large: 2.1rem;
  --font-p-large: 1.8rem;
  --font-small-large: 1.6rem;

  /* ===== FONT SIZES (SMALL SCREENS) ===== */
  --font-h1-small: 2.5rem;
  --font-h2-small: 1.8rem;
  --font-h3-small: 1.2rem;
  --font-p-small: 1rem;
  --font-small-small: 0.8rem;
}
    html {
        font-size: 1.1rem;
        scrollbar-gutter: stable;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        transition: all 0.3s ease-in-out;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    body {
        font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
    /* Header Styles */
    .header {
        background-color: white;
        color: var(--text-dark);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all var(--transition-speed) ease;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0rem 1rem;
        max-width: 1400px;
        margin: 0 auto;
        height: 5.5rem;
    }

    .logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        color: var(--primary-pink);
        margin-right: 1rem;
        text-decoration: none;
    }

    .logo img {
        width: 3rem;
        height: 3rem;
        margin-right: 0.5rem;
        border-radius: 50%;
        object-fit: cover;
    }

    .logo h1 {
        font-size: 32px;
        margin: 0;
        font-weight: bold;
        color: var(--primary-pink);
    }

    .nav-links {
        display: flex;
        gap: 1rem;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        color: var(--primary-blue);
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-size: 20px;
        font-weight: 500;
        transition: color var(--transition-speed) ease;
    }

    .nav-links a:hover, .nav-links a.active {
        color: var(--primary-pink);
    }

    .nav-buttons {
        display: flex;
        gap: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition-speed) ease;
        border: none;
        font-size: 20px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .btn-login {
        background-color: transparent;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }

    .btn-login:hover {
        background-color: var(--primary-blue);
        color: var(--text-light);
    }

    .btn-signup {
        background-color: var(--primary-pink);
        color: var(--text-light);
        border: 2px solid var(--primary-pink);
    }

    .btn-signup:hover {
        background-color: #a91a6d;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(205, 32, 139, 0.3);
    }

    .hamburger {
        display: none;
        cursor: pointer;
        background: none;
        border: none;
        color: var(--primary-blue);
        font-size: 1.8rem;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: background-color var(--transition-speed) ease;
    }

    .hamburger:hover {
        background-color: rgba(0, 74, 173, 0.1);
    }

    .hamburger:active {
        background-color: rgba(0, 74, 173, 0.2);
    }


    .search-container {
        display: flex;
        height: 40px;
        margin-right: 1rem;
    }
    .search-type-select {
        position: relative;
        height: 100%;
    }
    .search-type-button {
        height: 50px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0 1rem;
        border: 2px solid var(--primary-blue);
        border-radius: 8px 0 0 8px;
        border-right: none;
        background: white;
        cursor: pointer;
        font-size: 1rem;
        color: var(--primary-blue);
    }
    .search-type-button:hover {
        color: var(--primary-pink);
        border-color: var(--primary-pink);
    }
    .search-type-button:after {
        content: '▼';
        font-size: 1rem;
    }
    .search-type-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 2px solid var(--primary-blue);
        border-radius: 8px;
        margin-top: 0.5rem;
        display: none;
        z-index: 1000;
        width: max-content;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .search-type-dropdown.active {
        display: block;
    }
    .search-type-option {
        padding: 1rem;
        cursor: pointer;
        color: var(--primary-blue);
    }
    .search-type-option:hover {
        color: var(--primary-pink);
    }
    .search-bar {
        height: 50px;
        display: flex;
        align-items: center;
        background: white;
        border: 2px solid var(--primary-blue);
        border-radius: 0 8px 8px 0;
        width: 200px;
        margin-right: 1rem;
    }
    .search-bar:hover {
        border-color: var(--primary-pink);
    }
    .search-type-button:hover + .search-bar {
        border-color: var(--primary-pink);
    }
    .search-bar input {
        border: none;
        outline: none;
        padding: 0 1rem;
        width: 100%;
        height: 100%;
        font-size: 1rem;
    }
    .search-bar .icon {
        color: var(--primary-blue);
        padding: 0 0.5rem;
        font-size: 1rem;
    }
    .search-bar:hover .icon {
        color: var(--primary-pink);
    }
    .auth-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
        position: relative;
    }
    .btn {
        padding: 0 1.5rem;
        border-radius: 8px;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
        height: 50px;
    }
    .navbar .btn {
        min-width: 100px;
        height: 40px;
        padding: 0 1.2rem;
        font-size: 1.2rem;
    }
    .modal .btn {
        width: 100%;
        height: 50px;
        margin: 0.5rem 0;
    }
    .btn-primary {
        background: var(--primary-pink);
        border: 2px solid var(--primary-pink);
        color: var(--text-light);
    }
    .btn-outline {
        background: white;
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
    }
    .btn-gigs {
        background: var(--primary-blue);
        border: 2px solid var(--primary-blue);
        color: var(--text-light);
    }
    .btn-primary:hover {
        background: white;
        border: 2px solid var(--primary-pink);
        color: var(--primary-pink);
        text-decoration: none;
    }
    .btn-outline:hover {
        background: var(--primary-blue);
        color: var(--text-light);
        text-decoration: none;
    }
    .btn-gigs:hover {
        background: white;
        color: var(--primary-blue);
    }
    .navbar .auth-buttons {
        gap: 0.8rem;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background-color: var(--text-light);
        padding: 2rem;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        position: relative;
        text-align: center;
    }
    .modal-content h2 {
        font-size: 24px;
        color: var(--primary-blue);
    }
    .modal-buttons {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        padding: 0 2rem;
    }
    .modal-buttons .btn {
        width: auto;
        min-width: 160px;
        max-width: 80%;
        margin: 0 auto;
    }
    .close {
        position: absolute;
        right: 1rem;
        top: 0.1rem;
        font-size: 2rem;
        cursor: pointer;
    }
    .role-selection {
        margin: 2rem 0;
    }
    .role-option {
        border: 2px solid var(--primary-blue);
        border-radius: 10px;
        padding: 1rem;
        margin: 1rem 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .role-option:hover {
        background-color: var(--text-light);
    }
    .role-option.selected {
        border-color: var(--primary-pink);
        background-color: var(--text-light);
    }
    .role-option input[type="radio"] {
        margin-right: 0.5rem;
    }
    .login-link {
        text-align: center;
        margin-top: 15px;
        font-size: 0.9rem;
        color: var(--text-gray);
    }
    .login-link a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 500;
    }
    .login-link a:hover {
        text-decoration: underline;
    }
    /* Hamburger Menu Styles */
    .hamburger {
        position: relative;
        display: none;
        cursor: pointer;
        padding: 15px;
        background: none;
        border: none;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--primary-blue);
        transition: all 0.3s ease;
    }
    /* Side nav styles */
    .side-nav {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        background-color: white;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .side-nav.active {
        left: 0;
    }
    .side-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    .side-nav-overlay.active {
        display: block;
    }
    .side-nav-content {
        padding: 100px 20px 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background-color: white;
        min-height: 100vh;
    }
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        padding: 20px;
        color: var(--primary-blue);
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: all 0.2s ease;
        font-size: 1.2rem;
        text-align: center;
        margin: 10px 0;
        font-weight: 500;
        background-color: white;
    }
    .nav-item:hover {
        color: var(--primary-pink);
        background-color: rgba(205, 32, 139, 0.05);
    }
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Mobile Search Icon */
    .mobile-search-icon {
        display: none;
        background: none;
        border: none;
        color: var(--primary-blue);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
    }
    .mobile-search-icon:hover {
        color: var(--primary-pink);
    }
    /* Expandable Search Overlay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 2000;
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding-top: 120px;
    }
    .search-overlay.active {
        display: flex;
    }
    .expanded-search-container {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(0.8);
        opacity: 0;
        transition: all 0.3s ease;
    }
    .search-overlay.active .expanded-search-container {
        transform: scale(1);
        opacity: 1;
    }
    .expanded-search-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .expanded-search-header h3 {
        color: var(--primary-blue);
        font-size: 1.5rem;
        margin: 0;
    }
    .close-search-btn {
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--primary-blue);
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }
    .close-search-btn:hover {
        color: var(--primary-pink);
    }
    .expanded-search-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .expanded-search-type {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .search-type-chip {
        padding: 0.5rem 1rem;
        border: 2px solid var(--primary-blue);
        border-radius: 20px;
        background: white;
        color: var(--primary-blue);
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    .search-type-chip.active,
    .search-type-chip:hover {
        background: var(--primary-blue);
        color: white;
    }
    .expanded-search-input {
        display: flex;
        align-items: center;
        border: 2px solid var(--primary-blue);
        border-radius: 8px;
        background: white;
        height: 50px;
    }
    .expanded-search-input input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 1rem;
        font-size: 1.1rem;
        height: 100%;
    }
    .expanded-search-input .search-btn {
        background: var(--primary-blue);
        color: white;
        border: none;
        padding: 0 1.5rem;
        height: 100%;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.3s ease;
    }
    .expanded-search-input .search-btn:hover {
        background: var(--primary-pink);
    }
    /* Mobile auth buttons in hamburger menu */
    .mobile-auth-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
        background-color: white;
        padding: 10px;
    }
    .mobile-auth-buttons .btn {
        flex: 1;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .mobile-auth-buttons .btn-outline {
        background: white;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }
    .mobile-auth-buttons .btn-outline:hover {
        background: var(--primary-blue);
        color: white;
    }
    .mobile-auth-buttons .btn-primary {
        background: var(--primary-pink);
        color: white;
        border: 2px solid var(--primary-pink);
    }
    .mobile-auth-buttons .btn-primary:hover {
        background: white;
        color: var(--primary-pink);
    }

        /* Footer Styles */
        footer {
            background: var(--primary-blue);
            padding: 2.5rem 5%;
            align-items: center;
            padding-bottom: 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-size: var(--font-h3-large);
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .footer-column a {
            font-size: 21px;
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: text-decoration 0.3s ease;
        }

        .footer-column a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            font-size: 21px;
            color: var(--text-light);
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10rem;
        }

        .footer-bottom a {
            color: var(--text-light);
            margin: 0 10px;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .footer-bottom .social-icons img {
            width: 1rem;
            height: 1rem;
        }

        .social-icons .bi {
            font-size: 1.5rem;
            margin: 0 0.5rem;
            color: var(--text-light);
            text-decoration: none;
        }

        

        .social-icons .bi {
            font-size: 1.5rem;
            margin-right: 10px;
            border-radius: 50%;
            color: white;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-icons .bi:hover {
            transform: scale(1.2);
            color: var(--primary-pink);
        }

        .login-modal-content {
            max-width: 400px;
            padding: 2rem;
        }

        .login-container {
            width: 100%;
        }

        .login-container h2 {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .login-container form .btn-primary {
            width: auto;
        }

        .form-group {
            position: relative;
            margin-bottom: 1rem;
        }

        .form-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .checkbox-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .forgot-password-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .forgot-password-link:hover {
            text-decoration: underline;
        }

        .or-separator {
            text-align: center;
            margin: 1rem 0;
            position: relative;
        }

        .or-separator::before,
        .or-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%;
            height: 1px;
            background-color: #ddd;
        }

        .or-separator::before {
            left: 0;
        }

        .or-separator::after {
            right: 0;
        }

        .signup-link {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .signup-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        .forgot-password-modal {
            max-width: 400px;
            padding: 2rem;
        }

        .forgot-password-modal h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .forgot-password-modal input {
            width: 100%;
            padding: 0.8rem;
            margin: 1rem 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .social-login-buttons {
            margin: 1.5rem 0;
            width: 100%;
            padding-right: 20px;  
        }

        .social-login-btn {
            width: 100%;
            height: 45px;
            border-radius: 15px;
            border: 1px solid #ddd;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .social-login-btn:active {
            transform: translateY(-1px);
        }

        .social-login-btn i {
            font-size: 1.3rem;
            transition: all 0.3s ease;
            margin-right: 10px;
        }

        .social-login-btn span {
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .social-login-btn .bi-google {
            color: #DB4437;
        }

        .social-login-btn:hover .bi {
            transform: scale(1.2);
        }

        .social-login-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease-out;
        }

        .social-login-btn:active::after {
            transform: scale(2);
            opacity: 0;
        }

        .social-login-btn {
            animation: slideInRight 0.5s ease forwards;
            opacity: 0;
        }

        .social-login-btn:nth-child(1) { animation-delay: 0.1s; }
        .social-login-btn:nth-child(2) { animation-delay: 0.2s; }
        .social-login-btn:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .security-code-modal {
            max-width: 450px;
            padding: 2rem;
            text-align: center;
        }

        .security-code-modal h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .email-display {
            background-color: #f5f5f5;
            padding: 0.8rem;
            margin: 1rem 0;
            border-radius: 5px;
            font-weight: 500;
            word-break: break-all;
        }

        .security-code-inputs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 1.5rem 0;
        }

        .code-input {
            width: 40px;
            height: 50px;
            text-align: center;
            font-size: 1.5rem;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .code-input:focus {
            border-color: var(--primary-blue);
            outline: none;
        }

        .resend-code {
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .resend-code a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .resend-code a:hover {
            text-decoration: underline;
        }
        #verificationModal .modal-content {
            max-width: 500px;
        }

        #verificationMessage {
            margin: 20px 0;
            font-size: 1.1rem;
            text-align: center;
            line-height: 1.5;
        }

        .hero-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            max-width: 1400px;
            margin: 5.5rem auto 0;
            text-align: center;
            padding: 80px 10% 40px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/phhi12.webp');
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 52px;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 32px;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

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

        h1 {
            text-align: center;
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;  
            margin-bottom: 30px;
            gap: 16px;
        }

        .tab {
            padding: 12px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            font-size: 20px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .tab.active {
            background-color: var(--primary-blue);
            color: white;
        }

        .tab:not(.active) {
            background-color: transparent;
            color: var(--primary-pink);
            border: 1px solid #ddd;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
            gap: 30px;
            margin-top: 30px;
            justify-items: center;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            width: 100%;
            max-width: 450px; 
        }

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

        .step-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        .step-number {
            background: var(--primary-pink);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            display: inline-block;
            font-weight: 700;
            font-size: var(--font-h3-small);
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
        }

        /* Step Title (Hidden since Step Number acts as title) */
        .step-title {
            display: none;
        }

        /* Description */
        .step-description {
            color: var(--text-dark);
            max-width: 300px;
            margin: 0 auto;
            font-size: 21px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 40px;
            color: var(--primary-blue);
        }

        .talent-categories {
            margin-top: 60px;
            padding: 0 5%;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 1rem auto;
            padding: 0 0.5rem;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: auto;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

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

        .category-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            padding: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .category-card:hover i {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .category-card h3 {
            color: var(--primary-blue);
            font-size: var(--font-h3-large);
            margin-bottom: 0.5rem;
            font-weight: 700;
            line-height: 45px;
        }

        .category-card p {
            color: #666;
            font-size: 21px;
            margin-bottom: 1.5rem;
            min-height: 40px;
        }

        .category-card:nth-child(1) i { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .category-card:nth-child(2) i { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .category-card:nth-child(3) i { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .category-card:nth-child(4) i { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .category-card:nth-child(5) i { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .category-card:nth-child(6) i { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); color: #333; }
        .category-card:nth-child(7) i { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); color: #333; }
        .category-card:nth-child(8) i { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
        .category-card:nth-child(9) i { background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%); color: #333; }
        .category-card:nth-child(10) i { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); color: #333; }

        .button-container {
            display: flex;
            justify-content: center;
            width: 100%;
            margin: 40px 0;
        }

        .create-account-btn {
            margin: 0 auto;
        }

       
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
        position: relative;
    }

    .navbar-left {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 1.5rem;  
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        cursor: pointer;
    }

    .hamburger span {
        background-color: var(--primary-blue);
    }

    .nav-links,
    .navbar-right {
        display: none;
    }


    .nav-buttons {
        display: none; 
    }

    .mobile-auth-buttons {
        display: flex; 
    }

    .nav-item {
        font-size: 20px;
    }

    footer {
        padding: 1rem 5%;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 0.5rem;
    }

    .footer-column h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: var(--font-h3-large);
        color: var(--text-light);
        cursor: pointer;
        padding: 0.8rem 0;
        margin: 0;
        position: relative;
    }

    .footer-column h3::after {
        content: '▾';
        font-size: 2rem;
        color: var(--text-light);
        transition: transform 0.3s ease;
    }

    .footer-column h3.active::after {
        transform: rotate(180deg);
    }

    .footer-column .footer-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-column .footer-links.show {
        max-height: 300px;
        opacity: 1;
        margin-top: 0.5rem;
    }

    .footer-column .footer-links a {
        display: block;
        font-size: 24px;
        color: var(--text-light);
        text-decoration: none;
        margin: 0.3rem 0;
    }

    .footer-column .footer-links a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        flex-direction: column;         
        align-items: center;       
        justify-content: center;
        text-align: center;
        gap: 0.75rem;                   
        font-size: 24px;               
        padding-top: 1.5rem;
        border-top: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo img {
        height: 3rem;
        width: 3rem;
    }

    .section-title,
    h1 {
        font-size: 30px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .category-card p,
    .step-description {
        font-size: 19px;
    }

    .hero-content p {
        font-size: 25px;
    }

    .btn {
        height: 40px;
        font-size: 16px;
    }

    .tab {
        font-size: 16px;
    }

    .step,
    .category-card {
        max-width: 500px;
    }

    .category-card h3 {
        font-size: 25px;
        line-height: 1.2;
    }

    .category-card i {
        font-size: 2rem;
    }

    .button-container {
        margin: 30px 0 20px 0;
    }

    .steps-container {
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }

    footer {
        padding: 1rem 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        font-size: 16px;  
        text-align: center;
        border-top: none;
    }

    .footer-column h3 {
        font-size: var(--font-h3-small);
    }

    .footer-column h3.active::after {
        font-size: 1.5rem;
    }
    
    .footer-column .footer-links a {
        font-size: 16px;
        text-align: left;
    }

    .social-icons {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .social-icons .bi {
        font-size: 1.4rem;
    }

    .nav-item {
        font-size: var(--font-smaller-large);
    }
}

@media (max-width: 420px) {
     h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .step-description {
            font-size: 15px;
    }
    .category-card {
            max-width: 250px;
    }

    .category-grid{
    justify-content: center;
    }

    .category-card h3 {
        font-size: 23px;
    }

    .category-card p, .step-description, .hero-content p {
        font-size: 17px;
    }

    .hero-section{
        justify-content: center;
    }
} 