/* CSS Variables for consistent theming */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #34495e;
    --light-bg: #ecf0f1;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Global reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Left column styling for skills section */
.column-left{
    align-self: last baseline;
    max-width: 690px;
}

/* Text styling */
.text{font-size: 19px;}


/* ============================================
   UNIQUE EXPERIENCE SECTION - SOFT AQUA THEME
   ============================================ */

.experience-unique-container {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 28px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.experience-unique-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3), transparent 70%);
    pointer-events: none;
}

.exp-unique-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.exp-unique-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #1e293b, #2ecc71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-unique-subtitle {
    color: #2c3e50;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* 3-Column Grid */
.exp-unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Card Design with Colored Borders */
.exp-unique-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Colored Borders for each card */
.treasury-unique {
    border-left: 4px solid #e74c3c;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    border-right: 1px solid rgba(231, 76, 60, 0.2);
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.eac-unique {
    border-left: 4px solid #3498db;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
    border-right: 1px solid rgba(52, 152, 219, 0.2);
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.current-unique {
    border-left: 4px solid #2ecc71;
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    border-right: 1px solid rgba(46, 204, 113, 0.2);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.exp-unique-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Card Header */
.exp-card-header {
    padding: 1.2rem 1.5rem 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
}

.exp-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.treasury-icon-bg {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(231, 76, 60, 0.05));
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.eac-icon-bg {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.12), rgba(52, 152, 219, 0.05));
    border: 1px solid rgba(52, 152, 219, 0.25);
}

.current-icon-bg {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.25);
}

.exp-badge-tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
}

.current-badge-tag {
    background: rgba(46, 204, 113, 0.12);
    color: #27ae60;
}

/* Card Body */
.exp-card-body {
    padding: 1rem 1.5rem;
    flex: 1;
}

.exp-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.exp-card-org {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.treasury-unique .exp-card-org { color: #e74c3c; }
.eac-unique .exp-card-org { color: #3498db; }
.current-unique .exp-card-org { color: #2ecc71; }

.exp-card-sub {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

/* Details */
.exp-card-details {
    margin-bottom: 1rem;
}

.exp-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.exp-detail-icon {
    font-size: 0.85rem;
    min-width: 20px;
}

/* Description */
.exp-description-text {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
}

/* Skill Pills */
.exp-skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.exp-pill {
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #2ecc71;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.exp-pill:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
}

/* Card Footer */
.exp-card-footer {
    padding: 0.8rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f2f5;
    background: #fafcff;
}

.exp-duration {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    padding: 3px 10px;
    background: #f1f5f9;
    border-radius: 20px;
}

.current-duration {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.exp-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.completed-status {
    background: rgba(46, 204, 113, 0.12);
    color: #27ae60;
}

.inprogress-status {
    background: rgba(243, 156, 18, 0.12);
    color: #e67e22;
}

/* Footer colored backgrounds for consistency */
.treasury-footer {
    border-top: 2px solid rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.02);
}

.eac-footer {
    border-top: 2px solid rgba(52, 152, 219, 0.3);
    background: rgba(52, 152, 219, 0.02);
}

.current-footer {
    border-top: 2px solid rgba(46, 204, 113, 0.3);
    background: rgba(46, 204, 113, 0.02);
}

/* Responsive */
@media (max-width: 1000px) {
    .exp-unique-grid {
        gap: 1.2rem;
    }
    
    .exp-card-header {
        padding: 1rem 1.2rem 0.6rem 1.2rem;
    }
    
    .exp-card-body {
        padding: 0.8rem 1.2rem;
    }
    
    .exp-card-footer {
        padding: 0.6rem 1.2rem 1rem 1.2rem;
    }
}

@media (max-width: 850px) {
    .exp-unique-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-unique-container {
        padding: 2rem 1.5rem;
    }
    
    .exp-unique-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .exp-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .exp-card-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
        
/* ============================================
   PREMIUM EDUCATION SECTION - LIGHT & HARMONIOUS
   ============================================ */

.premium-edu-container {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7f0 100%);
    border-radius: 30px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.premium-edu-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.05), transparent 70%);
    pointer-events: none;
}

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

.premium-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #27ae60);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #5a6e7a;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.premium-edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Premium Card Design - Light Theme */
.premium-edu-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(46, 204, 113, 0.2);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.premium-edu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: left 0.6s ease;
}

.premium-edu-card:hover::before {
    left: 100%;
}

.premium-edu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(46, 204, 113, 0.1);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(46, 204, 113, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-edu-card:hover .card-glow {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(39, 174, 96, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.icon-emoji {
    font-size: 2.2rem;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Degree Title */
.edu-degree {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0.5rem 0 0.3rem;
    line-height: 1.3;
}

/* Institution */
.edu-institution {
    color: #5a6e7a;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Meta Items */
.edu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a6e7a;
    font-size: 0.8rem;
    background: #f0f4f8;
    padding: 4px 10px;
    border-radius: 20px;
}

.meta-item svg {
    color: #2ecc71;
}

.meta-item.scholarship {
    background: rgba(243, 156, 18, 0.12);
    color: #e67e22;
}

.meta-item.scholarship svg {
    color: #f39c12;
}

/* Progress Bar */
.edu-progress {
    margin: 1.2rem 0;
    height: 6px;
    background: #e0e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 6px;
    position: relative;
    transition: width 0.5s ease;
}

/* Card Footer */
.card-footer {
    margin-top: 1rem;
    text-align: right;
}

.status-completed, .status-progress {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.status-completed {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.status-progress {
    background: rgba(243, 156, 18, 0.15);
    color: #e67e22;
}

/* Hover Animation for Progress Bar */
.premium-edu-card:hover .progress-bar {
    animation: pulse 0.5s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .premium-edu-container {
        padding: 2rem 1.5rem;
    }
    
    .premium-section-title {
        font-size: 1.8rem;
    }
    
    .premium-edu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .edu-degree {
        font-size: 1.2rem;
    }
    
    .card-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.65rem;
    }
}
        
 /* Toast Notification Styles - With Better Visibility */
    
    .toast-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
        padding: 14px 20px;
        min-width: 280px;
        max-width: 350px;
        z-index: 10000;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        transform: translateX(400px);
        transition: transform 0.3s ease;
        font-family: 'Segoe UI', sans-serif;
    }
    
    .toast-notification.show {
        transform: translateX(0);
    }
    
    .toast-icon {
        font-size: 24px;
        min-width: 32px;
        text-align: center;
    }
    
    .toast-content {
        flex: 1;
    }
    
    .toast-title {
        font-weight: bold;
        margin-bottom: 4px;
        font-size: 14px;
    }
    
    .toast-message {
        font-size: 12px;
        opacity: 0.85;
    }
    
    .toast-close {
        cursor: pointer;
        font-size: 18px;
        opacity: 0.6;
        transition: opacity 0.2s;
        padding: 0 4px;
        color: inherit;
    }
    
    .toast-close:hover {
        opacity: 1;
    }
    
    /* Toast Type 1: Warning (Yellow/Orange) */
    .toast-warning {
        background: #fff7e7;
        border-left: 4px solid #f39c12;
        color: #7a5c00;
    }
    .toast-warning .toast-icon { color: #f39c12; }
    .toast-warning .toast-title { color: #e67e22; }
    
    /* Toast Type 2: Error (Red) - For blocked actions */
    .toast-error {
        background: #fff5f5;
        border-left: 4px solid #e74c3c;
        color: #c0392b;
    }
    .toast-error .toast-icon { color: #e74c3c; }
    .toast-error .toast-title { color: #c0392b; }
    
    /* Toast Type 3: Info (Blue) */
    .toast-info {
        background: #f0f8ff;
        border-left: 4px solid #3498db;
        color: #1a5276;
    }
    .toast-info .toast-icon { color: #3498db; }
    .toast-info .toast-title { color: #2980b9; }
    
    /* Toast Type 4: Success (Green) - Optional */
    .toast-success {
        background: #f0fff4;
        border-left: 4px solid #27ae60;
        color: #1e6f3f;
    }
    .toast-success .toast-icon { color: #27ae60; }
    .toast-success .toast-title { color: #1e6f3f; }
    
    @keyframes toastPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }


 /* Modern Social Media Section Styles */
    .social-master-modern {
        background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
        backdrop-filter: blur(10px);
        border-radius: 30px;
        padding: 2rem 1.5rem;
        margin: 2rem auto 3rem auto;
        max-width: 800px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
        border: 1px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
    }
    
    .social-master-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }
    
    .social-container-modern {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .social-btn-modern {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }
    
    .social-btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.2);
        transition: left 0.3s ease;
        z-index: 1;
    }
    
    .social-btn-modern:hover::before {
        left: 100%;
    }
    
    .social-btn-modern:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }
    
    .social-btn-modern i {
        font-size: 1.3rem;
        z-index: 2;
    }
    
    .social-btn-modern span {
        z-index: 2;
    }
    
    /* Individual Button Colors */
    .whatsapp-modern {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .facebook-modern {
        background: linear-gradient(135deg, #1877F2, #0b5e9e);
    }
    
    .github-modern {
        background: linear-gradient(135deg, #333333, #1a1a1a);
    }
    
    .email-modern {
        background: linear-gradient(135deg, #EA4335, #c5221f);
    }
    
    .phone-modern {
        background: linear-gradient(135deg, #34B7F1, #1e88e5);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .social-container-modern {
            gap: 0.8rem;
        }
        
        .social-btn-modern {
            padding: 10px 18px;
            font-size: 0.85rem;
        }
        
        .social-btn-modern i {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 550px) {
        .social-container-modern {
            flex-direction: column;
            width: 100%;
        }
        
        .social-btn-modern {
            width: 100%;
            justify-content: center;
        }
    }


    /* Floating animation for profile image */
    .floating-img {
        animation: floatImage 3s ease-in-out infinite;
    }
    
    @keyframes floatImage {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    /* Hero text container */
    .hero-text-container {
        position: relative;
        z-index: 1;
        margin-top: 1rem;
    }
    
    /* Dynamic title styling */
    .dynamic-title {
        color: aliceblue;
        font-size: 2rem;
        font-weight: 600;
        min-height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    /* Static prefix styling */
    .static-prefix {
        display: inline-block;
    }
    
    /* Typed text styling */
    .typed-text {
        display: inline-block;
        color: #2ecc71;
        text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }
    
    /* Blinking cursor */
    .cursor-blink {
        display: inline-block;
        width: 3px;
        margin-left: 4px;
        animation: blink 0.7s infinite;
        font-weight: 100;
        color: #2ecc71;
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .dynamic-title {
            font-size: 1.3rem;
            min-height: 60px;
        }
    }
    
    @media (max-width: 480px) {
        .dynamic-title {
            font-size: 1rem;
            min-height: 50px;
        }
    }
        /* Contact forms container styling */
        .forms-master-container {
            background: linear-gradient(135deg, #d9e39c 0%, #fad0c4 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1), 
                        inset 0 0 15px rgba(255,255,255,0.5);
            margin: 3rem auto;
            max-width: 1000px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .forms-master-container:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15), 
                       inset 0 0 20px rgba(255,255,255,0.6);
        }

        .forms-master-container h2 {
            text-align: center;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .forms-inner-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .form-body {
            flex: 1;
            min-width: 350px;
            max-width: 500px;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .form-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .form-container h4 {
            color: #607616;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.4rem;
        }

        .form-group {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        label {
            width: 100px;
            text-align: left;
            margin-right: 10px;
            color: #555555;
            font-weight: 500;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s;
            background: rgba(255,255,255,0.8);
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        select:focus,
        textarea:focus {
            border-color: #ff6b88;
            box-shadow: 0 0 0 3px rgba(255, 107, 136, 0.2);
            outline: none;
        }

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

        .submit-button {
            text-align: center;
            margin-top: 20px;
        }

        input[type="submit"] {
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff6b88, #ff8e53);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(255, 107, 136, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        input[type="submit"]:hover {
            transform: translateY(-3px) scale(1.05) rotate(2deg);
            box-shadow: 0 8px 25px rgb(103, 112, 45);
            background: linear-gradient(45deg, #21b016, #70cf77);
        }
 
        .radio-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            width: auto;
            cursor: pointer;
        }

        .radio-group input[type="radio"] {
            margin-right: 5px;
            accent-color: #ff6b88;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 10px;
            accent-color: #ff6b88;
        }

        .checkbox-group label {
            width: auto;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .forms-master-container {
                padding: 1.5rem;
            }
            
            .form-body {
                min-width: 100%;
            }
            
            .form-group {
                flex-direction: column;
                align-items: flex-start;
            }
            
            label {
                margin-bottom: 5px;
                width: 100%;
            }
        }

        body {
            background-color: #f5f5f5;
        }

        .download-btn {
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff6b88, #ff8e53);
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(255, 107, 136, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
        }

        .download-btn:hover {
            transform: translateY(-3px) scale(1.05) rotate(2deg);
            box-shadow: 0 8px 25px rgb(103, 112, 45);
            background: linear-gradient(45deg, #21b016, #70cf77);
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

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

        .logo {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .toggle-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--secondary-color);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .nav-links a:hover {
            color: rgb(57, 8, 94);
            font-weight: bolder;
            transform: translateY(-2px);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .hero {
            margin-top: 80px;
            padding: 4rem 2rem;
            text-align: center;
            background-image: url('resources/images/karanjam.jpg');
            background-size: cover;
            background-position: center;
            color: var(--light-text);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }

        .hero h1 {
            position: relative;
            font-size: 2.5rem;
            margin-top: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 4px solid var(--primary-color);
            object-fit: cover;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .profile-img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
        }

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

        .card {
            background: rgb(230, 238, 239);
            padding: 2rem;
            border-radius: 25px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(46, 204, 113, 0.1));
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

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

        .card:hover::after {
            bottom: -30%;
            left: -30%;
        }

        .education .card-header {
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
        }

        .experience .card-header {
            border-left: 4px solid rgb(134, 121, 218);
            padding-left: 1rem;
        }

        .education {
            border-left: 4px solid var(--primary-color);
            border-radius: 5px;
        }

        .experience {
            border-left: 4px solid #7ca9dd;
            border-radius: 5px;
        }

        .skill-container {
            background:burlywood; 
            border-radius: 8px;
            margin: 10px 0;
            height: 20px; 
            position: relative;
            overflow: hidden;
        }

        .skill-bar {
            background:  #bd8434;
            color: rgb(3, 19, 1);
            height: 100%;  
            border-radius: 8px;
            transition: width 1s ease;
            position: relative;
            min-width: fit-content;
        }

        .skill-bar::after {
            content: attr(data-skill);
            position: absolute;
            right: 10px;  
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            white-space: nowrap;
        }

        .skills-master-container {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 3rem auto;
            max-width: 1200px;
            border: 1px solid rgba(46, 125, 204, 0.3);
            position: relative;
            overflow: hidden;
        }

        .skills-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding: 0 1rem;
        }

        .skills-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
            margin: 0;
            flex: 1;
            text-align: center;
        }

        .skills-title:first-child {
            text-align: left;
        }

        .skills-title:last-child {
            text-align: right;
        }

        .skills-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .skills-title:hover::after {
            transform: scaleX(1);
        }

        .skills-inner-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            min-height: 400px;
        }

        .column-right {
            flex: 1;
            min-width: 300px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .column-left {
            flex: 1;
            align-self: top;
            min-width: 300px;
            max-width: 300px;
            padding-top: 0;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .skills-content {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 1rem 1.5rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .skills-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .divider {
            width: 1px;
            background: rgba(46, 125, 204, 0.2);
            margin: 0 1rem;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(46, 125, 204, 0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .skills-inner-container:hover .divider::before {
            opacity: 1;
        }

        .hobbies-container {
            background: linear-gradient(135deg, #f8f1ff 0%, #e8d7ff 100%);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .hobbies-container h3 {
            color: #6a3093;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
        }

        .hobbies-container h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #9c27b0, #3f51b5);
        }

        .hobbies-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .hobby-item {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .hobby-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(138, 43, 226, 0.15);
        }

        .hobby-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #6a3093;
        }

        .hobby-item h4 {
            color: #4a148c;
            margin-bottom: 0.5rem;
        }

        .hobby-item p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .hobbies-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .skills-header {
                flex-direction: column;
            }
            
            .skills-title {
                text-align: center !important;
                margin-bottom: 1rem;
            }
            
            .skills-inner-container {
                flex-direction: column;
                min-height: auto;
            }
            
            .divider {
                width: 100%;
                height: 1px;
                margin: 1rem 0;
            }
            
            .column-left, .column-right {
                width: 100%;
            }
        }

        input:invalid, select:invalid, textarea:invalid {
            border-color: #ff6b88;
        }

        input:valid, select:valid, textarea:valid {
            border-color: #2ecc71;
        }

        .social-master {
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem auto;
            max-width: 800px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .social-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            justify-items: center;
        }

        .social-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #fff8e1;
        }

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

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

        .whatsapp { background: #25D366; }
        .facebook { background: #3b5998; }
        .discord { background: #5865F2; }
        .instagram { background: #E1306C; }
        .linkedin { background: #1DA1F2; }
        .github { background: #333; }
        .x { background: #000; }
        .telegram {background :blueviolet}
        .email{background :rgb(13, 130, 30)}
        .phone{background :rgb(143, 115, 168)}
        .youtube{background :rgb(197, 31, 13)}

        /* Enhanced Projects Section */
        .projects-master-container {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 3rem auto;
            max-width: 1200px;
            border: 1px solid rgba(46, 125, 204, 0.2);
        }

        .projects-inner-container {
            display: flex;
            gap: 2rem;
        }

        .project-description {
            flex: 1;
            min-width: 300px;
        }

        .project-screenshots {
            flex: 1;
            min-width: 300px;
        }

        .project-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .project-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .project-card p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .project-card ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .project-card li {
            margin-bottom: 0.5rem;
        }

        .status-badge {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .status-in-progress {
            background: #fef3c7;
            color: #d97706;
        }

        .status-completed {
            background: #d1fae5;
            color: #059669;
        }

        .demo-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(45deg, #2ecc71, #27ae60);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .demo-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
        }

        .tech-stack {
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: #e0f2fe;
            color: #0369a1;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .screenshot-card {
            background: #00e6e6;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .screenshot-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 230, 230, 0.3);
            background: #00d1d1;
        }

        .screenshot-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border: 2px solid white;
            transition: transform 0.3s ease;
        }

        .screenshot-card p {
            text-align: center;
            font-weight: 600;
            color: #2c3e50;
        }

        @media (max-width: 768px) {
            .projects-inner-container {
                flex-direction: column;
            }
            
            .screenshot-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Add to a wrapper container */
        body {
            position: relative;
            min-height: 100vh;
            padding-bottom: 80px;
 
        }

        footer {
            background: rgb(103, 112, 45);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            text-align: center;
            padding: 10px;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
        }



        footer p {
            color: #fff;
            text-align: center;
            font-size: 1.1em;   
        }

        footer p a {
            text-decoration: none;
            color: black;
            font-weight: bolder;
            font-style:italic ;
            font-size: 1em;
            transition: 0.5s ease-in-out;
        }

        footer p a:hover {
            text-decoration: underline;
            color: rgb(46, 12, 100);
            font-size: 1.2em;
        }

        .master-container {
            background: #dde9ec;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            width: 100%;
            position: relative;
        }

        .master-container:last-child {
            margin-bottom: 0;
        }

        .master-container h2 {
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }

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

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

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

        .education-title {
            grid-column: 1 / -1;
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            padding-left: 0.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .treasury-btn, .eac-btn {
            position: relative;
            padding: 12px 24px;
            background-color: #bd8434;
            color: white;
            font-weight: bold;
            border: none;
            border-left: 8px solid #cc0000;
            border-right: 2px solid #cc0000;
            border-radius: 20px;
            cursor: pointer;
            transform-origin: left center;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }

        .treasury-btn:hover, .eac-btn:hover {
            background-color: #00aa00;
            transform: rotate(-5deg) translateY(-5px);
            box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        .modal-content {
            display: block;
            margin: 5% auto;
            max-width: 90%;
            max-height: 80%;
            border: 3px solid white;
            border-radius: 5px;
            animation: zoomIn 0.3s;
        }

        @keyframes zoomIn {
            from {transform: scale(0.9);}
            to {transform: scale(1);}
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 35px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-btn:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .toggle-btn {
                display: block;
            }

            .nav-links {
                display: none;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
            }

            .education-container,
            .experience-container,
            .education-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .main-content, 
            .skills-master-container,
            .projects-master-container,
            .forms-master-container {
                padding: 1.5rem;
            }
            
            .skills-inner-container,
            .projects-inner-container {
                gap: 1.5rem;
            }
            
            .profile-img {
                width: 150px;
                height: 150px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-content {
                padding: 0.5rem 1rem;
            }
            
            .logo {
                font-size: 1.2rem;
            }
            
            .hero {
                margin-top: 60px;
                padding: 2rem 1rem;
            }
            
            .main-content {
                padding: 0 1rem;
            }
            
            .card {
                padding: 1.5rem;
            }
            
            .social-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            footer {
                padding: 10px;
                height: auto;
            }
            
            footer p {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .profile-img {
                width: 120px;
                height: 120px;
            }
            
            .card {
                padding: 1rem;
                border-radius: 15px;
            }
            
            .social-container {
                grid-template-columns: 1fr;
            }
            
            .social-btn {
                width: 100%;
                justify-content: center;
            }
        }