/* style.css */
:root {
    /* Luxury Color Palette */
    --primary-dark: #0a0a0a;
    --secondary-dark: #121212;
    --tertiary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-blue: #3a86ff;
    --accent-purple: #8338ec;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}



body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(58, 134, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: -1;
}

@media (max-width: 768px) {
    body{
        margin-top: 30px;
    }
}


/* Typography */
h1, h2, h3, h4, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-line {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

.loader-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes loading {
    0% {
        left: -40%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -40%;
    }
}

/* Cursor Effects */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-out;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    overflow: hidden;
}

.name-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.profession-text {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
}

.profession-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-purple);
    bottom: 50px;
    left: 0;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    bottom: 0;
    right: 100px;
    animation-delay: 4s;
}

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

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin-bottom: 10px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 60px; opacity: 1; }
    100% { height: 60px; opacity: 0; }
}

/* Sections Common */
.section {
    padding: 8rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-style: normal;
}
.about-intro p {
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-style: normal;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        transparent, 
        var(--accent-gold), 
        var(--accent-blue), 
        var(--accent-purple),
        transparent,
        transparent
    );
    background-size: 400% 400%;
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    animation: borderRotate 3s linear infinite paused;
}

.detail-item:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.detail-item::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--tertiary-dark);
    border-radius: 14px;
    z-index: -1;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

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

.detail-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 5px;
    z-index: 1;
    transition: all 0.3s ease;
}

.detail-item:hover i {
    color: white;
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--accent-gold);
}

.detail-item h4 {
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    z-index: 1;
}

.detail-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
    z-index: 1;
}





.detail-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-item h4 {
    margin-bottom: 0.3rem;
}

.detail-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/*.visual-card {
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.visual-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}

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

.card-content h3 {
    margin-bottom: 1rem;
}

.card-back ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.card-back li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}*/

/* Skills Section */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.skills-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.skills-category:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.category-title i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.skill-name {
    margin-bottom: 0.5rem;
}

.skill-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.skill-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* Education Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    text-align: center;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 3rem;
    max-width: 400px;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.social-links h4 {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.contact-form input:focus ~ .form-focus-line,
.contact-form textarea:focus ~ .form-focus-line {
    width: 100%;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.8);
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    
    .hero-container,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-date {
        width: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: left;
    }
    
    .skills-category {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
/* style.css ফাইলে নিচের কোডগুলো যোগ করুন */

/* সাবসেকশন টাইটেল স্টাইল */
.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    position: relative;
    padding-left: 1rem;
}

.subsection-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* সার্টিফিকেশন গ্রিড স্টাইল */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.cert-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cert-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cert-org {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.cert-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ওয়ার্কশপ লিস্ট স্টাইল */
.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.workshop-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-purple);
    transition: var(--transition-smooth);
}

.workshop-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.workshop-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.workshop-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* এডুকেশন কার্ডস স্টাইল */
.education-cards {
    margin-top: 4rem;


}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.edu-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.edu-card-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.edu-card-header i {
    font-size: 1.5rem;
}

.edu-year {
    font-weight: 600;
    font-size: 1.1rem;
}

.edu-card-body {
    padding: 1.5rem;
}

.edu-card-body h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.edu-institute {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.edu-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.edu-card-footer {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
}

.edu-duration, .edu-grade {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.edu-grade {
    color: var(--accent-gold);
    font-weight: 500;
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
    .certifications-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
}
/* Additional Qualifications Title Center */
.education-cards > .subsection-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ========================================= */
/* EXPERIENCE SECTION STYLES */
/* ========================================= */

.experience {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--accent-blue));
    border-radius: 3px;
}

.exp-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.exp-timeline-item:last-child {
    margin-bottom: 0;
}

.exp-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--tertiary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-primary);
    border: 3px solid var(--accent-gold);
    z-index: 2;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.exp-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.exp-content:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.exp-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.exp-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.exp-company {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    font-weight: 500;
}

.exp-type {
    display: inline-block;
    background: var(--accent-purple);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.exp-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.exp-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.exp-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.exp-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(58, 134, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(58, 134, 255, 0.3);
    transition: var(--transition-smooth);
}

.tech-tag:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.exp-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.exp-stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.exp-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.exp-stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Styles for Experience */
@media (max-width: 768px) {
    .experience-timeline::before {
        left: 20px;
    }
    
    .exp-timeline-item {
        padding-left: 60px;
    }
    
    .exp-date {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .exp-content {
        padding: 1.5rem;
    }
    
    .exp-header h3 {
        font-size: 1.3rem;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .exp-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .exp-tech {
        gap: 0.3rem;
    }
    
    .tech-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .exp-company, .exp-type {
        display: block;
        margin-bottom: 0.5rem;
        width: fit-content;
    }
}
/* ========================================= */
/* HIRE ME CARD STYLES */
/* ========================================= */

.hire-card-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: fit-content;
    margin: 0 auto;
    perspective: 1000px;
}

.hire-card {
    width: 100%;
    height: 580px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    
}

.hire-card-front,
.hire-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.hire-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #0f3460 0%, #1a1a2e 100%);
}

/* Front Card Styles */
.hire-card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hire-badge {
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hire-badge i {
    font-size: 0.9rem;
}

.hire-card-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

.hire-card-body {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.hire-card-title {
    text-align: center;
    margin-bottom: 2rem;
}

.hire-card-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-primary);
}

.hire-card-title h3 i {
    color: var(--accent-gold);
}

.hire-card-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.hire-services {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.service-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(58, 134, 255, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid rgba(58, 134, 255, 0.1);
}

.feature i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.hire-card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hire-cta {
    flex-grow: 1;
}

.flip-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.flip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.hire-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.hire-contact i {
    font-size: 1rem;
}

/* Back Card Styles */
.hire-card-header.back {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-flip-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-flip-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Scrollbar Styling */
.packages-container::-webkit-scrollbar {
    width: 5px;
}

.packages-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.packages-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card.basic {
    border-color: rgba(255, 255, 255, 0.1);
}

.package-card.pro {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.package-card.premium {
    border-color: var(--accent-blue);
}

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

.package-header h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-price {
    text-align: right;
}

.package-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.package-price .duration {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features li i {
    width: 20px;
    font-size: 0.9rem;
}

.package-features li i.fa-check {
    color: var(--accent-gold);
}

.package-features li i.fa-times {
    color: var(--text-muted);
}

.package-select-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-select-btn.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.package-select-btn:hover:not(.active) {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.custom-project {
    background: rgba(58, 134, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(58, 134, 255, 0.1);
    margin-bottom: 1.5rem;
}

.custom-project h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.custom-project p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.custom-project-btn {
    background: rgba(58, 134, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(58, 134, 255, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-project-btn:hover {
    background: var(--accent-blue);
    color: white;
}

.hire-action {
    flex-grow: 1;
}

.hire-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold), #ff9500);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hire-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.hire-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hire-note i {
    color: var(--accent-gold);
}

/* Card Glow Effect */
.hire-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.15) 0%, 
        transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Flip Animation */
.hire-card.flipped {
    transform: rotateY(180deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hire-card {
        height: 550px;
    }
    
    .hire-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .packages-container {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .hire-card {
        height: 520px;
        width: 100%;
    }
    
    .hire-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hire-card-price {
        text-align: left;
    }
    
    .hire-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hire-contact {
        justify-content: center;
    }
    .hire-card-front, .hire-card-back {
        margin-bottom: 2rem;
    }
    
}

/* ========================================= */
/* PREMIUM GAMING CARD STYLES */
/* ========================================= */

.gaming-premium {
    background: linear-gradient(145deg, 
        rgba(15, 15, 35, 0.9),
        rgba(25, 10, 50, 0.9)
    );
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin-top: 3rem;
}

.gaming-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-gold),
        var(--accent-purple),
        var(--accent-blue),
        transparent
    );
}

.gaming-premium .category-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FF9500);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Gaming Premium Container */
.gaming-premium-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Premium Gaming Card */
.premium-gaming-card {
    background: linear-gradient(145deg, 
        rgba(30, 15, 55, 0.9),
        rgba(20, 10, 40, 0.9)
    );
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(147, 51, 234, 0.1) 0%,
        transparent 70%
    );
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-neon-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg, 
        #FF6B6B, 
        #4ECDC4, 
        #45B7D1,
        #96C93D
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Top Section */
.card-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.player-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.player-level {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.rank-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FF9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.rank-info {
    display: flex;
    flex-direction: column;
}

.rank-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.rank-stars {
    display: flex;
    gap: 0.2rem;
}

.rank-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Gaming Stats Grid */
.gaming-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    max-height: 100vh;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Skill Chart */
.skill-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title h4 {
    font-size: 1.3rem;
    color: white;
}

.xp-meter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.xp-meter span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.xp-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
    border-radius: 3px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-bar span {
    width: 120px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-fill {
    height: 8px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.bar-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
}

/* Games Carousel */
.games-carousel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.carousel-header h4 {
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-header h4 i {
    color: var(--accent-gold);
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.1);
}

.games-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.game-card {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card.active {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.game-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.game-info {
    flex: 1;
}

.game-info h5 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.2rem;
}

.game-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.game-hours {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stream-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF6B6B;
    font-weight: 600;
    font-size: 0.9rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #FF6B6B;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.viewer-count i {
    color: var(--accent-gold);
}

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

.action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.stream-btn {
    background: linear-gradient(135deg, #9146FF, #6441A5);
    color: white;
}

.portfolio-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Side Skills */
.side-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-skill-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mini-skill-card:hover {
    transform: translateX(5px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.mini-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.mini-content {
    flex: 1;
}

.mini-content h5 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.3rem;
}

.mini-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.mini-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.mini-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gaming-premium-container {
        grid-template-columns: 1fr;
    }
    
    .gaming-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gaming-premium {
        padding: 1.5rem;
    }
    
    .gaming-premium .category-title {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
    
    .card-top-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gaming-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .xp-meter {
        align-items: flex-start;
    }
    
    .xp-bar {
        width: 100%;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .stream-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}



/* ========================================= */
/* SERVICES SHOWCASE STYLES - Home Page */
/* ========================================= */

.services-showcase {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(58, 134, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(58, 134, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 1.2rem;
    color: white;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
}










/* ========================================= */






/* portfolio-gallery.css */

/* Gallery Section */
.portfolio-gallery-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #18191a 0%, #48566d 100%);
    margin: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c5ddee;
}

.section-subtitle {
    color: #b6f5fa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #555;
}

.filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.filter-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Search Box */
.gallery-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.item-overlay p {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-tag {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.view-btn {
    background: white;
    color: #3498db;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #3498db;
    color: white;
}

/* Upload Section */
.upload-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 2px dashed #3498db;
}

.upload-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.upload-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.upload-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.upload-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.no-results i {
    font-size: 48px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-results p {
    color: #7f8c8d;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.3s;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modal-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.image-meta span {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.category {
    background: #e3f2fd;
    color: #1976d2;
}

.date {
    background: #f3e5f5;
    color: #7b1fa2;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.btn-live {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-live:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-download {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-filter {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .modal-content {
        margin: 20px;
    }
    
    .modal-image-container {
        height: 300px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}











































/*

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
} */













.hero2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
}

/* LEFT */
.hero-left2 {
  width: 50%;
}

.hero-left h1 {
  font-size: 70px;
  color: white;
  line-height: 1.1;
}

.hero-left h1 span {
  color: #f3c83b;
}

.hero-left h3 {
  color: #f3c83b;
  font-style: italic;
  margin: 15px 0;
}

.hero-left p {
  color: #bdbdbd;
  max-width: 480px;
  margin-top: 15px;
}

/* BUTTONS */
.hero-buttons2 {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.yellow {
  background: #f3c83b;
  color: black;
  box-shadow: 0 0 30px rgba(243,200,59,0.4);
}

.dark {
  border: 1px solid #444;
  color: white;
}

/* STATS */
.hero-stats2 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-avatars2 {
  display: flex;
}

.hero-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0a;
  margin-left: -20px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-projects h4 {
  color: white;
  font-size: 18px;
}

.hero-projects span {
  color: #999;
  font-size: 12px;
  letter-spacing: 1px;
}

/* RIGHT */
.hero-right2 {
  position: relative;
  width: 420px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CIRCLE IMAGE */
.image-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #00ff99, #00cc66);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

/* FLOATING CARD */
.floating-card2 {
  position: absolute;
  left: 10px;
  bottom: 15px;
  background: #111;
  color: white;
  padding: 15px 18px;
  border-radius: 14px;
  width: 180px;
  box-shadow: 0 0 25px rgba(0,255,153,0.3);
}

.floating-card h4 {
  font-size: 14px;
  color: #00ff99;
  margin-bottom: 6px;
}

.floating-card p {
  font-size: 16px;
  margin-bottom: 4px;
}

.floating-card span {
  font-size: 12px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero2 {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left2 {
    width: 100%;
  }

  .hero-buttons2,
  .hero-stats2 {
    justify-content: center;
  }

  .hero-right2 {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right2 {
    width: 300px;
    height: 360px;
  }

  .image-circle {
    width: 260px;
    height: 260px;
    align-items: center;
  }
}


@media (max-width: 992px) {
  .hero2 {
    flex-direction: column;
  }

  .hero-right2 {
    order: 1; /* আগে ছবি */
  }

  .hero-left2 {
    order: 2; /* পরে লেখা */
  }

  /* Mobile এ image একটু zoom-out */
  .image-circle {
    transform: scale(0.85);
  }
}
.floating-card2{
    scale: calc(0.60);
}



































/*Footer About*/


/* Footer 
.footer2 {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.8);
    margin-top: 130px;
}

.footer-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand2 {
    margin-bottom: 2rem;
}

.footer-brand2 .logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-tagline2 {
    color: var(--text-muted);
    font-style: italic;
}

.footer-links2 {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links2 a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-copyright2 {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note2 {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}


@media (max-width: 576px) {
    .footer2{
        margin-top: 450px;
    }
    .footer-links2 {
        flex-direction: column;
        gap: 1rem;
    }
} */


























































.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px 1.6fr;
  gap: 40px;
  align-items: start;
}

/* left */
.footer-about h2 {
  font-size: 42px;
  margin: 0 0 12px;
  font-weight: 700;
  color: #fff;
}

.footer-about h2 span {
  color: #d4af37;
}

.footer-about p {
  margin: 0;
  color: #999;
  font-size: 17px;
  line-height: 1.6;
}

/* middle */
.footer-links h3,
.footer-map h3,
.footer-facebook h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #00e6a8;
  text-transform: uppercase;
}

.footer-links h3 span {
  margin-right: 6px;
}

.footer-links ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d7d7d7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* right */
.footer-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-map iframe,
.footer-facebook iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  display: block;
  background: #111;
}

.footer-map iframe {
  height: 400px;
}

.footer-facebook iframe {
  height: 400px;
  width: 100% !important;
  overflow: hidden;
  border-radius: 10px;
}

/* bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid #1f1f1f;
  text-align: center;
}

.footer-bottom p {
  margin: 6px 0;
  color: #888;
  font-size: 14px;
}

/* tablet */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-media {
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile */
@media (max-width: 767px) {
  .footer-about h2 {
    font-size: 32px;
  }

  .footer-media {
    grid-template-columns: 1fr;
  }

  .footer-map iframe,
  .footer-facebook iframe {
    height: 400px;
    content: center;
  }
  
}
.fb-btn {
  display: inline-block;
  padding: 10px 10px;
  background: #24a314;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
    text-align: center;

}































































.about-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 90px;
}

.about-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px 1.6fr;
  gap: 40px;
  align-items: start;
}

/* left */
.about-footer-about h2 {
  font-size: 42px;
  margin: 0 0 12px;
  font-weight: 700;
  color: #fff;
}

.about-footer-about h2 span {
  color: #d4af37;
}

.about-footer-about p {
  margin: 0;
  color: #999;
  font-size: 17px;
  line-height: 1.6;
}

/* middle */
.about-footer-links h3,
.about-footer-map h3,
.about-footer-facebook h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #00e6a8;
  text-transform: uppercase;
}

.about-footer-links h3 span {
  margin-right: 6px;
}

.about-footer-links ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.about-footer-links li {
  margin-bottom: 10px;
}

.about-footer-links a {
  color: #d7d7d7;
  text-decoration: none;
  transition: 0.3s;
}

.about-footer-links a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* right */
.about-footer-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-footer-map iframe,
.about-footer-facebook iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  display: block;
  background: #111;
}

.about-footer-map iframe {
  height: 400px;
}

.about-footer-facebook iframe {
  height: 400px;
  width: 100% !important;
  overflow: hidden;
  border-radius: 10px;
}

/* bottom */
.about-footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid #1f1f1f;
  text-align: center;
}

.about-footer-bottom p {
  margin: 6px 0;
  color: #888;
  font-size: 14px;
}

/* tablet */
@media (max-width: 991px) {
  .about-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-footer {
    margin-top: 500px;
  }

  .about-footer-media {
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile */
@media (max-width: 767px) {
  .about-footer-about h2 {
    font-size: 32px;
  }

  .about-footer-media {
    grid-template-columns: 1fr;
  }

  .about-footer-map iframe,
  .about-footer-facebook iframe {
    height: 400px;
  }
}

/* button */
.about-fb-btn {
  display: inline-block;
  padding: 10px 10px;
  background: #24a314;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  text-align: center;
}





#loader, .loader, .preloader {
    display: none !important;
}




























































