@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;
        }

        /* Button Styles */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
        }

        .btn {
            padding: 0 1.5rem;
            border-radius: 8px;
            font-size: 20px;
            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;
        }

        .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);
        }

        /* Modal Styles */
        .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;
        }

        .social-login-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .social-login-btn img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .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;
        }

        .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: var(--text-gray);
        }

        .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: 15px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .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;
        }

        /* 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: 1rem;
            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);
        }


        

        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
        }
        .btn {
            padding: 0 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            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: 120px;
            height: 50px;
            padding: 0 1.2rem;
            font-size: 1rem;
        }
        .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;
        }

        /* Sidebar Styles */
        .sidebar {
            width: var(--sidebar-width);
            padding: 2rem;
            border-right: 1px solid #e0e0e0;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 1rem;
        }

        .sidebar-nav a {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.95rem;
        }

        .sidebar-nav a:hover {
            color: var(--primary-pink);
        }

        .sidebar-nav .active {
            color: var(--primary-pink);
            font-weight: bold;
            border-left: 3px solid var(--primary-pink);
            padding-left: 1rem;
        }

        /* Main Content Styles */
        .main-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 1rem;
        }

        .main-content h1 {
            font-size: 52px;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .main-content p {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .last-updated {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .section {
            margin-bottom: 2rem;
        }

        .section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .section-content {
            color: var(--text-gray);
        }

        /* 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 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);
        }
        

        /* Container Styles */
        .container {
            max-width: 2000px;
            margin: auto;
            padding: auto;
        }

        /* 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-right: 10px;
            border-radius: 50%;
            color: var(--text-light);
            transition: transform 0.3s ease, color 0.3s ease;
        }

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


        /* Intro Section Styles */
        .intro-section {
            background-color: #f8f9fa;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 3rem;
            margin-top: 5.5rem;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: -150%;
            left: -150%;
            width: 400%;
            height: 400%;
            background-image: url('../img/giggenius_logo.jpg');
            background-size: 150px 150px;
            background-repeat: repeat;
            transform: rotate(-15deg);
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.92) 0%, /* Slightly more transparent */
                rgba(255, 255, 255, 0.82) 100%);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .intro-title {
            color: var(--primary-blue);
            font-size: 3.5rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .intro-title .highlight {
            color: var(--primary-pink);
        }

        .intro-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            z-index: -1;
        }

        .intro-text {
            color: var(--text-dark);
            font-size: 21px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 2.5rem auto;
            padding: 0 1rem;
            text-align: center;
        }

        .intro-text:last-child {
            margin-bottom: 0;
        }

        .intro-content {
            text-align: center;
        }

        .intro-text strong {
            color: var(--primary-blue);
        }

        /* Add animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .intro-title {
            animation: fadeInUp 0.8s ease-out;
        }

        .intro-text {
            animation: fadeInUp 0.8s ease-out 0.2s;
            animation-fill-mode: backwards;
        }

        

        

        /* Journey Section Styles */
        .journey-section {
            background: var(--primary-blue);
            padding: 3rem 2rem;
            border-radius: 15px;
        }

        .journey-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .journey-box {
            background: white;
            border: 2px solid var(--primary-pink);
            border-radius: 15px;
            padding: 2rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        .journey-text {
            color: var(--text-dark);
            font-size: 21px;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .journey-text ul {
        list-style-type: disc;
        margin-left: 2rem;
        padding-left: 1rem;
        }

        .journey-text li {
        line-height: 1.6;
        }

        .journey-text ul ul {
        list-style-type: circle;
        margin-top: 0.3rem;
        margin-left: 1.5rem;
        }

        .journey-text ul ul li {
        margin-bottom: 0.4rem;
        line-height: 1.5;
        color: #333;
        }

        .journey-text:last-child {
            margin-bottom: 0;
            margin-left: -2rem;
        }

        /* Founder Section Styles */
        .founder-section {
            background: var(--text-light);
            padding: 4rem 2rem;
        }

        .founder-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .founder-content {
            padding-right: 2rem;
        }

        .founder-title {
            color: var(--primary-blue);
            font-size: 40px;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .founder-text {
            font-size: 21px;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .founder-quote {
            font-style: italic;
            color: var(--primary-pink);
            font-size: 1.3rem;
            margin: 2rem 0;
            padding-left: 1rem;
            border-left: 4px solid var(--primary-pink);
        }

        .founder-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .founder-image {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .founder-image:hover {
            transform: scale(1.05);
        }

        .founder-signature {
            margin-top: 2rem;
            text-align: right;
        }

        .signature-name {
            color: var(--primary-blue);
            font-size: var(--font-small-large);
            font-weight: 700;
        }

        .signature-title {
            color: var(--text-dark);
            font-size: 1.3rem;
            font-style: italic;
        }

        /* Mission & Vision Section */
        .mv-section {
            background: var(--primary-pink);
            padding: 2rem 2rem;
            border-radius: 15px;
        }

        .mv-title {
            color: var(--text-light);
            font-size: 40px;
            margin-bottom: 3rem;
            text-align: center;
        }

        .mv-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .mv-box {
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mv-box h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .mv-box p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Core Values Section */
        .values-section {
            background: var(--text-light);
            padding: 2rem 2rem;
        }

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

        .values-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-box {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            border: 2px solid var(--primary-blue);
        }

        .value-box i {
            font-size: 75px;
            color: var(--primary-pink);
            margin-bottom: 1.5rem;
        }

        .value-box h3 {
            color: var(--primary-blue);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }

        .value-box p {
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.6;
            text-align: left;
        }

        /* Team Section */
        .team-section {
            background: #f5f5f5f5;
            padding: 2rem;
            border-radius: 15px;
        }

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

        .team-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            padding: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        

        .member-image {
            width: 100%;
            height: 200px;
            margin: 0 auto 1rem;
            border-radius: 10px;
            overflow: hidden;
            max-width: 300px;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .member-social a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .email-text {
            font-size: 0.9rem;
        }

        .email-icon {
            position: relative;
        }

        .email-icon:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 5px 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            z-index: 1000;
        }

        .member-social a:hover {
            color: var(--primary-pink);
        }

        

            .navbar .auth-buttons {
                display: none;
            }

            .logo {
                margin-left: -0.5rem;
            }
            /* Intro Section - Remove conflicting styles, handled above */

            /* Mission & Vision Section */
            .mv-title, .values-title, .team-title {
                font-size: 40px;
                margin-bottom: 1.5rem;
            }
            .mv-box h3, .value-box h3 {
                font-size: 30px;
                margin-bottom: 0.5rem;
            }
            .mv-box p, .value-box p {
                font-size: 21px;
                line-height: 1.4;
            }

            .journey-text {
                font-size: 21px;
                line-height: 1.4;
            }


            /* Founder Section */
            .founder-title {
                font-size: 40px;
                margin-bottom: 1rem;
            }
            .founder-text {
                font-size: 21px;
                line-height: 1.4;
            }
            .founder-quote {
                font-size: 21px;
                padding: 0.8rem;
                margin: 1rem 0;
            }
            .signature-name {
                font-size: 21px;
            }
            .signature-title {
                font-size: 21px;
            }        

            .modal-content,
            .login-modal-content,
            .forgot-password-modal,
            .security-code-modal {
                width: 95%;
                padding: 1rem;
                max-height: 85vh;
            }

            .form-group input {
                padding: 0.7rem 1rem 0.7rem 2.2rem;
                font-size: 0.9rem;
            }

            .modal-content h2 {
                font-size: 20px;
            }

            .close {
                right: 0.5rem;
                top: 0;
            }

        
        .team-section .team-grid.top-row {
            display: flex !important;        
            justify-content: center;          
            align-items: stretch;
            gap: 2rem;
            flex-wrap: nowrap;                
            max-width: 1000px;                 
            margin: 0 auto 1.25rem;            
            padding: 0;
        }

        .team-section .team-grid.top-row .team-member {
            flex: 0 1 300px;                
            max-width: 320px;
        }

        .team-section .team-grid.bottom-row {
            display: flex !important;         
            justify-content: center;
            align-items: stretch;
            gap: 2rem;
            flex-wrap: nowrap;                
            max-width: 1200px;              
            margin: 0 auto;
            padding: 0;
        }

        .team-section .team-grid.bottom-row .team-member {
            flex: 0 1 260px;               
            max-width: 280px;
        }


        .team-member .member-role {
            text-align: center !important;
        }
        .team-member {
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 15px;
            padding: 1rem !important;
            text-align: center;
            width: 100%;
        }


/* --- Maintain side-by-side layout until 992px --- */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }

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

  .nav-buttons {
    display: none;
  }

  .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 {
    display: none;
  }

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

  .main-content {
    padding: 2rem 1.5rem;
    max-width: 1100px;
  }

  .account-type-selection h2 {
    font-size: var(--font-h2-large);
  }

  /* Keep 3 columns at 1200px like 1440px */
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 380px;
    padding: 1.8rem;
  }

  /* Footer Dropdown */
  .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-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 24px;
    border-top: none;
  }

  .founder-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .mv-row,
  .values-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* --- Stack when screen gets narrower --- */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }

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

  .founder-content {
    padding: 0;
  }

  .founder-image-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .mv-row,
  .values-row {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* --- Tablets and smaller --- */
@media (max-width: 768px) {
  html {
    font-size: 13.5px;
  }

  h1, h2, h3, p, a, li, span {
    font-size: inherit;
  }

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

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

  .intro-section {
    padding: 3rem 1rem;
  }

  .mv-row,
  .values-row {
    grid-template-columns: 1fr;
  }

  .team-section .team-grid,
  .team-section .team-grid.top-row,
  .team-section .team-grid.bottom-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .team-section .team-member {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-section .member-image {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
  }

  .team-section .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-section h3 {
    margin: 0.5rem 0 0.2rem;
    line-height: 1.3;
  }

  .team-section .member-role {
    margin-bottom: 0.8rem;
  }

  .team-section .member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .team-section .team-grid.bottom-row .team-member {
    max-width: 320px;
    margin-top: 1rem;
  }

  .founder-quote {
    font-size: 1.1rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    font-size: 16px;
    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;
  }

  .main-content h1 {
    font-size: 30px;
  }

  .main-content p {
    font-size: 15px;
  }

  .mv-title, .values-title, .team-title {
    font-size: 30px;
  }

  .mv-box h3, .value-box h3 {
    font-size: 20px;
  }

  .value-box i {
    font-size: 55px;
}

  .journey-title {
    font-size: 30px;
  }

  .founder-title {
    font-size: var(--font-h3-large);
    margin-bottom: 1rem;
  }

  .founder-quote {
    font-size: var(--font-h3-small);
  }

  .signature-name, .signature-title {
    font-size: var(--font-h3-small);
  }

  .team-member .member-role {
    text-align: center !important;
    font-size: var(--font-p-small);
  }

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

  .journey-text ul {
    list-style-type: disc;
    margin-left: 1rem;
}

.journey-text li {
    line-height: 1.6;
    font-size: 15px;
}
}

/* --- Mobile screens --- */
@media (max-width: 425px) {
  html {
    font-size: 13px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .mv-row,
  .values-row {
    grid-template-columns: 1fr;
  }

  .intro-title {
    font-size: 2rem;
  }

  .founder-title {
    font-size: 1.8rem;
  }

  .founder-text {
    font-size: 1rem;
  }

  .journey-text ul {
    list-style-type: disc;
    margin-left: 1rem;
}

.journey-text li {
    line-height: 1.6;
    font-size: 15px;
}

.intro-container {
    padding: 1rem;
}

.main-content p {
        font-size: 15px;
        text-align: center;
    }

    .journey-text ul ul {
    list-style-type: circle;
    margin-top: 0.3rem;
    margin-left: 0rem;
}

.team-title {
        font-size: 25px;
        line-height: 1.1;
    }

}
