/* =========================================
   1. RESET & VARIABLES (Restored + New Gradient)
   ========================================= */
:root {
    --bg-color: #0a0a0a;       /* Deep Black */
    --surface-color: #161616;  /* Slightly lighter for cards/nav */
    --primary-color: #FF3B3B;  /* Neon Crimson Red */
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --font-main: 'Space Grotesk', sans-serif;
    --nav-height: 80px;
}

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

body {
    /* UPDATED: The "Gorgeous" Gradient you wanted */
    background: radial-gradient(circle at 50% -20%, #1f0505, #0a0a0a 80%);
    background-attachment: fixed;
    
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. NAVBAR (Restored + Active Link Fix)
   ========================================= */
.navbar {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links { display: flex; gap: 40px; align-items: center; }

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* --- UPDATED: Active Link Styling --- */
.nav-links a.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
}

.btn-contact {
    border: 1px solid var(--text-muted);
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--text-main);
}

.btn-contact:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white !important;
}

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   3. HERO SECTION (Your Original Design)
   ========================================= */
.hero {
    height: 100vh;
    /* Keeps your original background setup */
    background: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.7)), url('images/gcover.png');
    background-size: cover;
    background-position: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-top: -80px; 
}

.badge {
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.cta-group { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    align-items: center; /* Ensures alignment */
    margin-top: 30px; 
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    gap: 10px;
    border: none;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 59, 59, 0.3); }

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

.btn-secondary:hover { border-color: white; background: white; color: black; }

/* Glow Effects */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}
.glow-1 { top: 20%; left: 20%; }
.glow-2 { bottom: 20%; right: 20%; }

/* =========================================
   4. ABOUT SECTION (Your Original Design)
   ========================================= */
.about-section {
    padding: 100px 5%;
    background: var(--surface-color); /* Kept consistent */
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Frame - FIXED POSITIONING HERE */
.about-image-wrapper {
    position: relative; /* Critical fix for badge */
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 500px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.5s;
}

.image-frame:hover .profile-img { filter: grayscale(0%); transform: scale(1.03); }

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.experience-badge .number { font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.experience-badge .text { font-size: 0.8rem; line-height: 1.2; font-weight: 600; }

/* Text Content */
.section-title { font-size: 0.9rem; color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.role-title { font-size: 2.5rem; margin-bottom: 25px; line-height: 1.2; }
.role-title .highlight { color: var(--text-muted); font-weight: 300; }
.bio-text { color: var(--text-muted); margin-bottom: 15px; font-size: 1.05rem; }
.bio-text strong { color: white; font-weight: 500; }

.skills-mini { display: flex; gap: 15px; margin-top: 30px; }
.skills-mini span {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   5. SHARED PAGE HEADERS (Education, Portfolio, etc.)
   ========================================= */
.page-header {
    padding: 150px 20px 50px;
    text-align: center;
    
    /* Consistent Background for sub-pages */
    background: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.7)), url('images/gcover.png');
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }

/* =========================================
   6. EDUCATION PAGE STYLES
   ========================================= */
.timeline-section { padding: 50px 5% 100px; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 2px; background: rgba(255,255,255,0.1);
    top: 0; bottom: 0; left: 20px; margin-left: -1px;
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 50px; }
.timeline-dot {
    position: absolute; left: 11px; top: 25px; width: 18px; height: 18px;
    border-radius: 50%; background: var(--bg-color); border: 3px solid var(--primary-color); z-index: 10;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.6); transition: 0.3s;
}
.timeline-item:hover .timeline-dot { background: var(--primary-color); box-shadow: 0 0 30px rgba(255, 59, 59, 1); transform: scale(1.2); }
.timeline-content {
    background: var(--surface-color); padding: 30px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; position: relative;
}
.timeline-content:hover { transform: translateY(-5px); border-color: rgba(255, 59, 59, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.timeline-content h3 { font-size: 1.5rem; color: white; margin-top: 10px; margin-bottom: 5px; }
.timeline-content h4 { font-size: 1.1rem; color: var(--primary-color); font-weight: 500; margin-bottom: 15px; }
.timeline-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.date-badge { display: inline-block; background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 6px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.gpa-box { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 59, 59, 0.1); color: var(--primary-color); padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.status { display: inline-block; color: #4CAF50; font-weight: 600; font-size: 0.9rem; }

/* =========================================
   7. PORTFOLIO PAGE STYLES
   ========================================= */
.portfolio-category, .why-choose-section, .services-section {
    padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}
.category-title {
    font-size: 1.5rem; color: white; margin-bottom: 30px;
    padding-left: 15px; border-left: 4px solid var(--primary-color); margin-left: 5%;
}
.section-center-title { text-align: center; font-size: 2.2rem; margin-bottom: 60px; color: white; }

.marquee-container { display: flex; overflow: hidden; width: 100%; margin-bottom: 20px; position: relative; }
.marquee-container::before, .marquee-container::after {
    content: ''; position: absolute; top: 0; height: 100%; width: 100px; z-index: 2; pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--bg-color), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--bg-color), transparent); }
.marquee-content { display: flex; gap: 20px; }
.thumb-img { height: 200px; width: auto; border-radius: 12px; transition: 0.3s; opacity: 0.8; }
.cover-img { height: 250px; width: auto; border-radius: 12px; opacity: 0.9; }
.banner-img { height: 180px; width: auto; border-radius: 12px; opacity: 0.9; }
.poster-img { height: 400px; width: auto; border-radius: 12px; opacity: 0.9; }
.marquee-content img:hover { opacity: 1; transform: scale(1.05); z-index: 10; border: 2px solid var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.scroll-left { animation: scrollLeft 30s linear infinite; }
.scroll-right { animation: scrollRight 30s linear infinite; }
.slow { animation-duration: 45s; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Projects */
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.project-card { background: var(--surface-color); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.project-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.project-img-box { position: relative; height: 200px; overflow: hidden; }
.project-img-box img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.3s; }
.project-card:hover .overlay { opacity: 1; }
.view-btn { padding: 10px 25px; border: 1px solid var(--primary-color); color: var(--primary-color); border-radius: 50px; font-weight: 600; }
.view-btn:hover { background: var(--primary-color); color: white; }
.project-info { padding: 20px; }
.tech-stack { color: var(--primary-color); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.desc { font-size: 0.9rem; color: var(--text-muted); }

/* Course Section */
.course-section { padding: 80px 0; background: #080808; }
.stats-row { display: flex; justify-content: center; gap: 60px; margin-bottom: 70px; text-align: center; }
.stat-item h3 { font-size: 2.8rem; color: white; line-height: 1; font-weight: 700; }
.course-wrapper { display: flex; align-items: center; gap: 50px; background: var(--surface-color); padding: 50px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.course-wrapper::before { content: ''; position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; background: var(--primary-color); filter: blur(150px); opacity: 0.1; }
.course-text { flex: 1; z-index: 1; }
.course-image { flex: 1; display: flex; justify-content: center; z-index: 1; }
.course-image img { max-width: 100%; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Brands */
.brand-item { display: flex; justify-content: center; align-items: center; width: 120px; }
.brand-item img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; filter: grayscale(100%); opacity: 0.5; transition: 0.3s; }
.brand-item img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 59, 59, 0.3); }

/* Why Choose Me & Services */
.features-grid, .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card, .service-card { background: var(--surface-color); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.feature-card:hover, .service-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
.feature-card h3, .service-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: white; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }
.icon-lg { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; display: inline-block; }
.service-card ul li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); margin-bottom: 10px; }
.service-card ul li i { color: var(--primary-color); }

/* =========================================
   8. EXPERIENCE PAGE STYLES (WITH BUTTON FIX)
   ========================================= */
.experience-section, .reviews-section, .cert-section { padding: 80px 0; overflow: hidden; }

.exp-card {
    display: flex;
    align-items: stretch; /* UPDATED: Ensures equal height for alignment */
    gap: 60px;
    margin-bottom: 100px;
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}
.exp-card:hover { border-color: rgba(255, 59, 59, 0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.exp-card.reverse { flex-direction: row-reverse; }

.exp-content { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start; /* UPDATED: Aligns button to LEFT */
}

.exp-image { flex: 1; height: 400px; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.1); }
.exp-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.exp-image:hover img { transform: scale(1.05); }

.date-badge-outline { border: 1px solid var(--primary-color); color: var(--primary-color); padding: 5px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; display: inline-block; }
.exp-content h2 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.1; color: white; }
.exp-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }
.highlight { color: var(--primary-color); }
.client-list { width: 100%; margin-bottom: 30px; }
.client-list li { margin-bottom: 10px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.client-list li i { color: var(--primary-color); }
.rating-box { display: inline-flex; align-items: center; gap: 8px; background: #ffb900; color: black; padding: 5px 15px; border-radius: 5px; font-weight: 700; margin-bottom: 20px; }
.gig-tags span { background: rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; margin-right: 8px; display: inline-block; margin-bottom: 20px; color: #ddd; }

/* Button Alignment Fix */
.btn-fiverr, .exp-content .btn-primary { 
    margin-top: auto; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}
.btn-fiverr { background: #1DBF73; color: white; padding: 14px 32px; border-radius: 50px; font-weight: 700; transition: 0.3s; }
.btn-fiverr:hover { background: #19a463; box-shadow: 0 10px 20px rgba(29, 191, 115, 0.3); transform: translateY(-3px); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.review-card { background: var(--bg-color); padding: 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.review-card:hover { border-color: rgba(255,255,255,0.2); }
.reviewer-info { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }
.flag { font-size: 1.8rem; }
.reviewer-info h4 { font-size: 1rem; margin: 0; color: white; }
.stars { color: #ffb900; margin-bottom: 15px; }
.review-card p { font-style: italic; color: var(--text-muted); }

/* Certificates */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.cert-card { background: var(--surface-color); border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.cert-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cert-img-box { height: 220px; width: 100%; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cert-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cert-card:hover .cert-img-box img { transform: scale(1.05); }
.cert-info { padding: 20px; text-align: center; }
.cert-info .issuer { color: var(--primary-color); font-size: 0.85rem; font-weight: 600; }

/* =========================================
   9. CONTACT PAGE STYLES
   ========================================= */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { display: flex; align-items: center; gap: 20px; background: var(--surface-color); padding: 25px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.info-card:hover { transform: translateX(10px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.icon-box { width: 50px; height: 50px; background: rgba(255, 59, 59, 0.1); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.info-text h3 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 5px; }
.info-text p { font-size: 1.1rem; color: white; font-weight: 600; }

.social-connect { margin-top: 20px; padding: 25px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.social-icons { display: flex; gap: 15px; }
.social-btn { width: 45px; height: 45px; background: var(--surface-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.social-btn:hover { background: var(--primary-color); transform: translateY(-3px); border-color: var(--primary-color); }

.contact-form-wrapper { background: var(--surface-color); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.contact-form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-color), transparent); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 30px; color: white; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.input-group input, .input-group textarea { width: 100%; background: var(--bg-color); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 15px; color: white; font-family: var(--font-main); font-size: 1rem; transition: 0.3s; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 10px rgba(255, 59, 59, 0.2); }
.full-width { width: 100%; justify-content: center; margin-top: 10px; }

/* =========================================
   10. RESPONSIVE FIXES (Final)
   ========================================= */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .image-frame { height: 400px; }
    .experience-badge { right: 10px; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
    
    .exp-card { flex-direction: column; text-align: left; padding: 25px; gap: 30px; }
    .exp-card.reverse { flex-direction: column; }
    .exp-image { height: 250px; width: 100%; }
    .exp-content h2 { font-size: 1.8rem; }
}

/* =========================================
   FOOTER STYLES
   (Add to bottom of style.css)
   ========================================= */

.footer {
    background: #050505; /* Deepest black for footer */
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px;
    margin-top: auto; /* Pushes footer to bottom if content is short */
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
    max-width: 300px;
}

/* Links Column */
.footer-links h3, 
.footer-social h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px; /* Slight movement effect */
}

/* Social Column */
.f-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.f-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.f-social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-email {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2px;
}

.footer-email:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Copyright Area */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-bottom .highlight {
    color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 15px auto 0; /* Centers text */
    }
    
    .f-social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}