  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #f093fb;
            --text-dark: #1a1a1a;
            --text-light: #6b7280;
            --bg-light: #fafafa;
            --white: #ffffff;
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navbar Base */
.navbar {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 0;
}
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar-brand{
     font-size: 2rem;
    font-weight: bold;
    color:#222!important;

}
.navbar-default .navbar-nav>li>a{
       text-decoration: none;
    color: #333;
    font-size: 1.6rem;
    font-weight: 500;

}
.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1.6rem;
    font-weight: 500;
}

/* Hamburger Menu (Hidden on Desktop) */
.menu-toggle {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        display: none;
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
    /* Show menu when toggle is checked */
    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }
}

     /* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(120deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

/* Animated Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.bubbles span {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}
.bubbles span:nth-child(1) { left: 5%; width: 40px; height: 40px; animation-duration: 12s; }
.bubbles span:nth-child(2) { left: 20%; width: 20px; height: 20px; animation-duration: 8s; animation-delay: 2s; }
.bubbles span:nth-child(3) { left: 35%; width: 25px; height: 25px; animation-duration: 10s; animation-delay: 4s; }
.bubbles span:nth-child(4) { left: 50%; width: 50px; height: 50px; animation-duration: 15s; animation-delay: 3s; }
.bubbles span:nth-child(5) { left: 65%; width: 15px; height: 15px; animation-duration: 9s; animation-delay: 5s; }
.bubbles span:nth-child(6) { left: 75%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 1s; }
.bubbles span:nth-child(7) { left: 85%; width: 20px; height: 20px; animation-duration: 7s; animation-delay: 6s; }
.bubbles span:nth-child(8) { left: 90%; width: 45px; height: 45px; animation-duration: 13s; animation-delay: 2s; }
.bubbles span:nth-child(9) { left: 95%; width: 25px; height: 25px; animation-duration: 9s; animation-delay: 4s; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-1000px) scale(0.8); opacity: 0; }
}

/* Static Shapes */
.static-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Circle */
.circle-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

/* Square */
.square-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* Triangle */
.triangle-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.15);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.7s forwards;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-large);
            background: rgba(255, 255, 255, 0.3);
            color: white;
        }

        /* Search Section */
        .search-section {
            padding: 4rem 0;
            background: var(--bg-light);
        }

        .search-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .search-box {
            position: relative;
            margin-bottom: 2rem;
        }

        .search-input {
            width: 100%;
            padding: 1.5rem 1.5rem 1.5rem 3rem;
            border: none;
            border-radius: 25px;
            font-size: 1.5rem;
            background: white;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            transform: translateY(-2px);
            box-shadow: var(--shadow-large);
        }

        .search-icon {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 1.5rem;
        }

        .search-filters {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-tag {
            padding: 0.5rem 1rem;
            background: white;
            border: none;
            border-radius: 20px;
            font-weight: 500;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
        }

        .filter-tag:hover, .filter-tag.active {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Profiles Section */
        .profiles-section {
            padding: 6rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.5s ease;
            position: relative;
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-large);
        }

        .profile-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .profile-card:hover .profile-image {
            transform: scale(1.1);
        }

        .profile-content {
            padding: 2rem;
        }

        .profile-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        } 

        .profile-title {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .profile-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .profile-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .profile-button:hover {
            transform: translateX(5px);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--gradient-accent);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2rem;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-large);
            color: var(--primary-color);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: #000;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color:#fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateX(0px);
            }
            50% {
                transform: translateX(20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* .nav-links {
                display: none;
            } */

            .hero h1 {
                font-size: 2.5rem;
            }

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

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

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


        /* Scroll animations */
        /* .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        } */
         /* profile */
          /* Bootstrap 3 Typography Scale */
        .ap-text-xs { font-size: 10px; }
        .ap-text-sm { font-size: 12px; }
        .ap-text-base { font-size: 14px; }
        .ap-text-lg { font-size: 16px; }
        .ap-text-xl { font-size: 18px; }
        .ap-text-2xl { font-size: 24px; }
        .ap-text-3xl { font-size: 30px; }
        .ap-text-4xl { font-size: 36px; }
        .ap-text-5xl { font-size: 48px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        /* Navigation */
        .ap-navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .ap-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ap-logo {
            font-size: 18px;
            font-weight: 700;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

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

        .ap-nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .ap-nav-link:hover {
            color: var(--primary-color);
        }

        .ap-nav-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .ap-nav-back-btn:hover {
            transform: translateX(-3px);
            color: white;
        }

        /* Hero Profile Section */
        .ap-hero-profile {
            background: var(--gradient-overlay);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .ap-hero-profile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/></svg>');
            opacity: 0.3;
        }

        .ap-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .ap-profile-header {
            display: grid;
            grid-template-columns: 200px 1fr auto;
            gap: 2rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .ap-profile-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-large);
            transition: all 0.3s ease;
        }

        .ap-profile-avatar:hover {
            transform: scale(1.05);
        }

        .ap-profile-info h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .ap-profile-specialty {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .ap-profile-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .ap-profile-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .ap-stars {
            display: flex;
            gap: 0.25rem;
        }

        .ap-star {
            color: #f1c40f;
            font-size: 16px;
        }

        .ap-rating-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .ap-profile-stats {
            display: flex;
            gap: 2rem;
            font-size: 12px;
        }

        .ap-stat {
            text-align: center;
        }

        .ap-stat-number {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .ap-stat-label {
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ap-profile-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-btn-primary {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .ap-btn-secondary {
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .ap-btn-primary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            color: white;
        }

        .ap-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Main Content */
        .ap-main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        /* About Section */
        .ap-about-section {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }

        .ap-section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ap-section-icon {
            color: var(--primary-color);
            font-size: 20px;
        }

        .ap-about-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .ap-skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .ap-skill-tag {
            padding: 0.5rem 1rem;
            background: var(--gradient-primary);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Portfolio Section */
        .ap-portfolio-section {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }

        .ap-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .ap-portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .ap-portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .ap-portfolio-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .ap-portfolio-item:hover .ap-portfolio-img {
            transform: scale(1.1);
        }

        .ap-portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-overlay);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .ap-portfolio-item:hover .ap-portfolio-overlay {
            opacity: 1;
        }

        .ap-overlay-icon {
            color: white;
            font-size: 24px;
        }

        /* Reviews Section */
        .ap-reviews-section {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
        }

        .ap-review-item {
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .ap-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .ap-reviewer-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .ap-reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .ap-reviewer-details h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .ap-reviewer-details p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        .ap-review-rating {
            display: flex;
            gap: 0.25rem;
        }

        .ap-review-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-light);
        }

        /* Sidebar */
        .ap-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Contact Card */
        .ap-contact-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
        }

        .ap-contact-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .ap-contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ap-form-group {
            display: flex;
            flex-direction: column;
        }

        .ap-form-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ap-form-input {
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: var(--bg-light);
        }

        .ap-form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
        }

        .ap-form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .ap-submit-btn {
            padding: 1rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ap-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* Pricing Card */
        .ap-pricing-card {
            background: var(--gradient-primary);
            color: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-medium);
        }

        .ap-pricing-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .ap-price-range {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .ap-price-description {
            font-size: 12px;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .ap-pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .ap-pricing-features li {
            font-size: 12px;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ap-pricing-features li:last-child {
            border-bottom: none;
        }

        /* Social Links */
        .ap-social-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            text-align: center;
        }

        .ap-social-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .ap-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .ap-social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .ap-social-instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }

        .ap-social-behance {
            background: #1769ff;
            color: white;
        }

        .ap-social-linkedin {
            background: #0077b5;
            color: white;
        }

        .ap-social-website {
            background: var(--gradient-primary);
            color: white;
        }

        .ap-social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Animations */
        .ap-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .ap-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ap-nav-links {
                display: none;
            }

            .ap-profile-header {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }

            .ap-profile-avatar {
                width: 150px;
                height: 150px;
                margin: 0 auto;
            }

            .ap-main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .ap-profile-stats {
                justify-content: center;
            }

            .ap-portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
        /* signup page */

.signup-wrapper{

  padding: 4rem; 

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;



 }

 .signup-form{

      margin-top:60px;

  position: relative;

  width: 100%;

  max-width: 600px;

  padding: 60px 40px 40px;

  /* background: rgba(0,0,0,0.7); */

  border:2px solid #31708f;

  border-radius: 10px;

  color: #fff;
  

  box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }



.signup-form h2 {

  text-align: center;

  letter-spacing: 4px;

  margin-bottom: 2rem;

  font-size: 2.4rem;

  color: #31708f;

}

.signup-form .input-group {

  position: relative;

  width:100%;

}

.signup-form .input-group input,textarea,select {

  width: 100%;

  padding: 10px 0;

  border-radius: 0;
  font-size: 1.4rem;

  color:#333;

  letter-spacing: 1px;

  margin-bottom: 30px;

  border: none;

  border-bottom: 1px solid rgba(0,0,0,0.2);

  outline: none;

  background-color: transparent;

  resize: none;

}

.signup-form .input-group label{

    color: #444;

    font-size: 1.4rem;

}

.submit-btn {

   display: block;

   margin-left: auto;

   border: none;

   outline: none;

   background: #31708f;

   font-size: 1.4rem;

   text-transform: uppercase;

   letter-spacing: 1px;

   padding: 10px 20px;

   border-radius: 5px;

   color: #fff;

   cursor: pointer;

   margin-bottom: 1.2rem;

 }

  /* login-form */

.login-wrapper {

    padding:7rem ;

  

   display: flex;

   justify-content: center;

   align-items: center;

 }

 .login-wrapper .form {

     margin-top:40px;

   position: relative;

   width: 100%;

   max-width: 380px;

   padding: 80px 40px 40px;

   /* background: rgba(0,0,0,0.7); */

   border:2px solid #31708f;

   border-radius: 10px;

   color: #fff;

   box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }

 

 .login-wrapper .form img {

   position: absolute;

   top: -50px;

   left: calc(50% - 50px);

   width: 100px;

   background: rgba(255,255,255, 0.8);

   border-radius: 50%;

 }

 .login-wrapper .form h2 {

   text-align: center;

   letter-spacing: 4px;

   margin-bottom: 2rem;

   font-size: 2.4rem;

   color: #31708f;

 }

 .login-wrapper .form .input-group {

   position: relative;

 }

 .login-wrapper .form .input-group input {

   width: 100%;

   padding: 10px 0;

   font-size: 1.4rem;

   color:#111;

   letter-spacing: 1px;

   margin-bottom: 30px;

   border: none;

   border-bottom: 1px solid #777;

   outline: none;

   background-color: transparent;

 }

 .login-wrapper .form .input-group label{

     color: #333;

     font-size: 1.4rem;

 }

  /* advertise page */

.content-top{

 margin-top:80px;



  text-align: center;

  list-style-type: none;

 

}

.content-top h2{

  color: #272F38;

  padding: 1rem;

  

  font-size: 2.1rem;

}

.content-top li{

  padding:.5rem;

  color: #384350;

  font-size: 1.4rem;

}

.content-top ul{

  list-style-type: none;

}
/*dashboard*/
.dash-container{
  position: relative;
  width:  100%;
  display:flex;
  margin: 0rem auto;
 min-height: 100vh;

  
  
}
.dash{
    padding:1rem;
}
.dash h3{
  color:#fff;
}
.dash-nav{
  position: absolute;
  top: 0;
  width :250px;
  height: 100%;
  background:#31708f;
  transition: 0.5s;
  /*overflow: hidden;*/
}
.dash-nav.active{
  width: 10px;

}
.dash-nav.active .link{
  display: none;

}

.dash-nav ul{
  position: absolute;
  top:0;
  left:0;
  width:100%
}
.dash-nav ul li{
  position: relative;
  width:100%;
  list-style: none;
}
.dash-nav ul li:hover{
  background:#255d79;
  cursor:pointer;

}
/*.dash-nav ul li:nth-child(1){*/
/*  margin-bottom:20px ;*/
/*}*/

.dash-nav ul li:nth-child(1):hover{
  background: transparent;
}
.dash-nav ul li a h2{
  font-size: 15px;
  
 
}
.dash-nav .link .dash-title h2{
    margin-top:0px;
    margin-bottom:10px;
}



.dash-nav ul li .link{
   
   padding:.5rem;
  position: relative;
  display: block;
  width: 100%;
  /*display: flex;*/
  text-decoration: none;
  color:#fff;
  font-size: 12px;
  border-bottom:1px solid rgba(0,0,0,0.2);
  

}
.dash-nav ul li a{
    color:#fff;
    text-decoration:none;
    text-align:left;
    font-size:1.6rem;
}
/*.dash-nav ul li a .icon{*/
/*  position: relative;*/
/*  display: block;*/
/*  min-width: 60px;*/
/*  height: 60px;*/
/*  line-height: 60px;*/
/*  text-align: center;*/

/*}*/
.dash-nav ul li a .icon .fab{
  color: #fff;
  font-size: 15px;
}
.dash-nav ul li  .dash-title{
  position: relative;
 
  display: block;
  padding: 0 30px;
  /*height: 60px;*/
  line-height: 25px;
  white-space: nowrap;
}
.dash-nav ul li a .brand{
  text-transform: uppercase;
  font-size: 15px;
}
.main-container{
  position: relative;
  width: calc(100% - 250px);
 
  left:250px;
  /* min-height: 100vh; */
  /*background: #f5f5f5;*/
  transition: 0.5s;
}
.main-container.active{
  width: calc(100% - 10px);
  left:10px;
}


.main-container .topbar{
  width: 100%;
 background: #f2f2f2;
  height: 60px;
  padding-left: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle h4{
  position: absolute;
    top: 13px;
    left: 49px;
    color:var(--light-color);
}
.toggle{
  position: relative;
  width: 60px;
  height: 60px;
  
  cursor: pointer;
}
.toggle::before{
  content: '\f007';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  color: var(--light-color);
}
@media (max-width: 991px) {

  .dash-nav{
    left:-300px;
}
.dash-nav.active {
    left:0;
}
.dash-nav.active h3{
  display: block;;

}

.main-container{
    width:100%;
    left:0px;   

}
}

@media (max-width: 768px) {
 
  .signup-wrapper , .login-wrapper{
    padding:3rem 2rem;
}
  
}

@media (max-width: 450px) {

}
@media(max-width:480px){
   
  .dash-nav{
      width: 100%;
      left: -100%;
      z-index: 1;
  }
  .dash-nav.active{
      width: 100%;
      left:0;
  }
  .dash-nav.active .link{
    display: block;
  }

  .toggle.active{
      /* position: fixed; */
      z-index: 1;
      right: 0;
      left: 290px;
     

  }
  .toggle.active::before{
      color:#fff;
  }
  
  .dash-ban{
            left:0;
        }
        .dash-bottom{
            left:0;
            
        }
        .dash-container{
            width:100%;
        }
        
        
            .topbar h4{
                display:block;
            }
            .toggle.active h4{
                display:none;
                
            }
            
            
  
}


    