/* Custom navbar styling */

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
.navbar-custom {
    background-color: #fafafa !important; /* Off-white background */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-custom .navbar-nav .nav-link {
    color: #000000 !important; /* Black text color */
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}
        
.navbar-custom .navbar-nav .nav-link:hover {
    color: #28a745 !important; /* Green hover color */
}

.navbar-custom .navbar-brand {
    color: #000000 !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-custom .navbar-brand:hover {
    color: #28a745 !important;
}
        
/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #28a745;
    color: #ffffff !important;
}
        
/* Mega menu styling */
.mega-menu {
    position: static !important;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
    margin-top: 8px;
    background-color: #ffffff;
}

.mega-menu .container {
    padding: 2.5rem 2rem;
}
        
.mega-menu h6 {
    color: #28a745;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.mega-menu .list-unstyled li {
    margin-bottom: 0.7rem;
}

.mega-menu .list-unstyled a {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu .list-unstyled a:hover {
    color: #28a745;
}

/* Navbar toggler styling */
.navbar-custom .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/***bio-styles***/
        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --bg-tertiary: #2a2a2a;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #808080;
            --accent-primary: #00d4ff;
            --accent-secondary: #ff6b6b;
            --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 100%);
            --border-color: #333333;
            --shadow-light: rgba(255, 255, 255, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .background-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .biography-wrapper {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px var(--shadow-dark);
        }

        .hero_section {
            background: var(--accent-gradient);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero_section::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 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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid rgba(255, 255, 255, 0.3);
            margin: 0 auto 30px;
            display: block;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero_content {
            position: relative;
            z-index: 2;
        }

        .name {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .title {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .contact-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .contact-highlight:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .contact-highlight i {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-highlight a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .content-section {
            padding: 50px 40px;
        }

        .bio-section {
            background: rgba(42, 42, 42, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            backdrop-filter: blur(10px);
            /*text-align: center;*/
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .section-title i {
            font-size: 1.5rem;
        }

        .bio-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent-gradient);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .decorative-line {
            width: 100px;
            height: 3px;
            background: var(--accent-gradient);
            margin: 20px auto;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .hero-section {
                padding: 40px 20px;
            }

            .name {
                font-size: 2.5rem;
            }

            .title {
                font-size: 1.2rem;
            }

            .content-section {
                padding: 30px 20px;
            }

            .bio-section {
                padding: 30px 20px;
            }

            .section-title {
                font-size: 1.6rem;
                flex-direction: column;
                gap: 10px;
            }

            .bio-text {
                font-size: 1.1rem;
            }

            .contact-highlight {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
/* Footer */
.footer-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    border-top: 3px solid #007bff;
    width: 100%;
}
        
.footer-dark .footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dark .footer-brand:hover {
    color: #0056b3;
}

.footer-dark h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-dark h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #007bff;
}
.footer-dark p.foot {
    font-size: 1.3rem !important;
}

.footer-dark a {
    color: #b0b0b0;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-dark a:hover {
    color: rgb(4, 230, 4) !important;
    padding-left: 5px;
}

.footer-dark .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #b0b0b0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    padding: 0;
}

.footer-dark .social-links a:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    padding-left: 0;
}

.footer-dark .contact-info {
    color: #b0b0b0;
    font-size: 1rem;
}

.footer-dark .contact-info i {
    color: #007bff;
    width: 20px;
    margin-right: 10px;
}

.footer-bottom {
    background-color: #111;
    border-top: 1px solid #333;
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 1.2rem;
}
.footer-bottom a {
    text-decoration: none;
    color: rgb(4, 230, 4) !important;
    font-size: 1.2rem;
}
.footer-bottom a:hover {
    color: rgb(227, 232, 227) !important;
}