/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
} top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.motto {
    margin-bottom: 2rem;
    text-align: center;
}

.motto-text {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: #f4b942;
    background: linear-gradient(135deg, #f4b942 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 15px rgba(244, 185, 66, 0.4);
    letter-spacing: 1px;
    display: block;
    margin: 0.5rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.hero-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 10%; right: 10%; animation-delay: 0s; }
.icon-2 { top: 50%; left: -10%; animation-delay: 1.5s; }
.icon-3 { bottom: 20%; right: -5%; animation-delay: 3s; }
.icon-4 { bottom: 10%; left: 20%; animation-delay: 4.5s; }

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

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 0.5rem;
    min-width: 30px;
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.highlight p {
    color: #666;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-gpa {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Skills Section */
.skills {
    padding: 5rem 0;
}

.skills .container {
    max-width: 1400px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: fit-content;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: #f8f9fa;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #667eea;
    color: white;
}

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

.project-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

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

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Featured Project Styles */
.featured-project {
    margin-bottom: 3rem;
    position: relative;
}

/* Regular Project Styles */
.project {
    margin-bottom: 3rem;
    position: relative;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f4b942 0%, #f39c12 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(244, 185, 66, 0.3);
}

.project-card.featured {
    border: 2px solid #f4b942;
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 185, 66, 0.15);
}

.project-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(244, 185, 66, 0.2);
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(244, 185, 66, 0.1);
    border-radius: 10px;
    border-left: 4px solid #f4b942;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.highlight-item i {
    color: #f39c12;
    font-size: 1rem;
}

/* Dashboard Embed Styles */
.dashboard-embed {
    margin: 2rem 0;
    border: 2px solid #f4b942;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(244, 185, 66, 0.15);
}

.dashboard-header {
    background: linear-gradient(135deg, #f4b942 0%, #f39c12 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.dashboard-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.dashboard-container {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    min-height: 600px;
}

.dashboard-container iframe {
    display: block;
    border: none;
    border-radius: 0;
}

.dashboard-note {
    background: rgba(244, 185, 66, 0.1);
    padding: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(244, 185, 66, 0.2);
}

.dashboard-note i {
    color: #f39c12;
    margin-right: 0.5rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        min-height: 400px;
    }
    
    .dashboard-container iframe {
        height: 400px;
    }
    
    .dashboard-header h4 {
        font-size: 1.1rem;
    }
    
    .dashboard-header p {
        font-size: 0.9rem;
    }
}

/* Netflix Project Specific Styles */
.netflix-project .featured-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.project-card.netflix-card {
    border: 2px solid #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(200, 35, 51, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.project-card.netflix-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.2);
}

.netflix-project .project-highlights {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
}

.netflix-project .highlight-item i {
    color: #dc3545;
}

/* Flight Project Styles */
.project-card.flight-card {
    border: 2px solid #007acc;
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.05) 0%, rgba(0, 86, 179, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.15);
}

.project-card.flight-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 122, 204, 0.2);
}

.flight-project .project-highlights {
    background: rgba(0, 122, 204, 0.1);
    border-left: 4px solid #007acc;
}

.flight-project .highlight-item i {
    color: #007acc;
}

.flight-project .dashboard-embed {
    border: 2px solid #007acc;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.15);
}

.flight-project .dashboard-note {
    background: rgba(0, 122, 204, 0.1);
    border-top: 1px solid rgba(0, 122, 204, 0.2);
}

.flight-project .dashboard-note i {
    color: #007acc;
}

.flight-project .btn-primary {
    background: #007acc;
    border-color: #007acc;
}

.flight-project .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.flight-project .btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border: 2px solid #6c757d !important;
    font-weight: 600;
    opacity: 1 !important;
    visibility: visible !important;
}

.flight-project .btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.netflix-project .dashboard-embed {
    border: 2px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.netflix-project .dashboard-note {
    background: rgba(220, 53, 69, 0.1);
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.netflix-project .dashboard-note i {
    color: #dc3545;
}

/* Netflix Project Button Overrides */
.netflix-project .btn-primary {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    font-weight: 600;
}

.netflix-project .btn-primary:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.netflix-project .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    font-weight: 600;
}

.netflix-project .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Rorock P&L Project Button Overrides */
.project:first-of-type .btn-primary {
    background: #f4b942 !important;
    color: white !important;
    border: 2px solid #f4b942 !important;
    font-weight: 600;
    opacity: 1 !important;
    visibility: visible !important;
}

.project:first-of-type .btn-primary:hover {
    background: #f39c12 !important;
    border-color: #f39c12 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
}

.project:first-of-type .btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border: 2px solid #6c757d !important;
    font-weight: 600;
    opacity: 1 !important;
    visibility: visible !important;
}

.project:first-of-type .btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Superstore Project Specific Styles */
.superstore-project .featured-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.project-card.superstore-card {
    border: 2px solid #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.project-card.superstore-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.2);
}

.superstore-project .project-highlights {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

.superstore-project .highlight-item i {
    color: #28a745;
}

.superstore-project .dashboard-embed {
    border: 2px solid #28a745;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.superstore-project .dashboard-note {
    background: rgba(40, 167, 69, 0.1);
    border-top: 1px solid rgba(40, 167, 69, 0.2);
}

.superstore-project .dashboard-note i {
    color: #28a745;
}

/* Superstore Project Button Overrides */
.superstore-project .btn-primary {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
    font-weight: 600;
}

.superstore-project .btn-primary:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.superstore-project .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    font-weight: 600;
}

.superstore-project .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* EV Project Specific Styles */
.ev-project .featured-badge {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    box-shadow: 0 3px 10px rgba(66, 133, 244, 0.3);
}

.project-card.ev-card {
    border: 2px solid #4285f4;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}

.project-card.ev-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.2);
}

.ev-project .project-highlights {
    background: rgba(66, 133, 244, 0.1);
    border-left: 4px solid #4285f4;
}

.ev-project .highlight-item i {
    color: #4285f4;
}

.ev-project .dashboard-embed {
    border: 2px solid #4285f4;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}

.ev-project .dashboard-note {
    background: rgba(66, 133, 244, 0.1);
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.ev-project .dashboard-note i {
    color: #4285f4;
}

/* EV Project Button Overrides */
.ev-project .btn-primary {
    background: #4285f4;
    color: white;
    border: 2px solid #4285f4;
    font-weight: 600;
}

.ev-project .btn-primary:hover {
    background: #3367d6;
    border-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.ev-project .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    font-weight: 600;
}

.ev-project .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Real Estate Project Specific Styles */
.realestate-project .featured-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.project-card.realestate-card {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.project-card.realestate-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.realestate-project .project-highlights {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
}

.realestate-project .highlight-item i {
    color: #ff6b35;
}

.realestate-project .dashboard-embed {
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.realestate-project .dashboard-note {
    background: rgba(255, 107, 53, 0.1);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.realestate-project .dashboard-note i {
    color: #ff6b35;
}

/* Real Estate Project Button Overrides */
.realestate-project .btn-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    font-weight: 600;
}

.realestate-project .btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.realestate-project .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    font-weight: 600;
}

.realestate-project .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Insurance Project Specific Styles */
.insurance-project .project-highlights {
    background: rgba(156, 39, 176, 0.1);
    border-left: 4px solid #9c27b0;
}

.insurance-project .highlight-item i {
    color: #9c27b0;
}

.project-card.insurance-card {
    border: 2px solid #9c27b0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(103, 58, 183, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}

.project-card.insurance-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.2);
}

.insurance-project .dashboard-embed {
    border: 2px solid #9c27b0;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}

.insurance-project .dashboard-note {
    background: rgba(156, 39, 176, 0.1);
    border-top: 1px solid rgba(156, 39, 176, 0.2);
}

.insurance-project .dashboard-note i {
    color: #9c27b0;
}

/* Insurance Project Button Overrides */
.insurance-project .btn-primary {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    border: 2px solid #9c27b0;
    font-weight: 600;
}

.insurance-project .btn-primary:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    border-color: #7b1fa2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.insurance-project .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
    font-weight: 600;
}

.insurance-project .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

@media (max-width: 480px) {
    .dashboard-container {
        min-height: 350px;
    }
    
    .dashboard-container iframe {
        height: 350px;
    }
    
    .dashboard-embed {
        margin: 1.5rem 0;
    }
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.github-link {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.contact-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Old contact styles - keep for backward compatibility */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .project-filters {
        gap: 0.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
