/* Custom Tech Styles */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}

.tech-badge {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-badge:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
    color: white;
}

.tech-badge:hover::before {
    left: 100%;
}

.tech-badge:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.overlay-tech {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.img:hover .overlay-tech {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

/* Premium Buttons - Black with White Text */
.custom-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

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

.custom-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

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

.custom-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Premium Button Variants */
.custom-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.custom-btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.custom-btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.custom-btn-success:hover {
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.custom-btn-outline {
    background: transparent;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    box-shadow: none;
}

.custom-btn-outline:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

/* Bootstrap Button Premium Overrides */
.btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4) !important;
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.btn-black {
    background: linear-gradient(135deg, #232526 0%, #414345 100%) !important;
    box-shadow: 0 4px 15px rgba(35, 37, 38, 0.3) !important;
}

.btn-black:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%) !important;
    box-shadow: 0 8px 25px rgba(35, 37, 38, 0.4) !important;
}

/* Premium Icons without Emojis */
.premium-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.premium-icon:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

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

/* Specific Icon Styles */
.premium-icon::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
}

.project-icon-enhanced::after {
    content: '\f135'; /* rocket icon */
}

.career-icon::after {
    content: '\f0b1'; /* briefcase icon */
}

.web-icon::after {
    content: '\f0ac'; /* globe icon */
}

.backend-icon::after {
    content: '\f1c0'; /* server icon */
}

.database-icon::after {
    content: '\f1c0'; /* database icon */
}

.devops-icon::after {
    content: '\f085'; /* cogs icon */
}

/* Glass Cards with Tech Aesthetic */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.glass-content {
    padding: 0 20px 20px 20px;
    color: #000000;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.glass-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #000000;
    font-weight: 600;
}

.glass-content h3 {
    color: #000000;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.3rem;
}

.modern-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-chip {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #006633;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tech-chip:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.tech-chip:hover::before {
    left: 100%;
}

.glass-button-container {
    text-align: center;
    margin-top: 10px;
}

.glass-button {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.8) 0%, rgba(0, 255, 136, 0.6) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.glass-button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 255, 136, 0.8) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.glass-button:hover::before {
    left: 100%;
}

.career-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.career-card::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
}

.career-card:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.career-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(255, 107, 107, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.career-icon:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95) 0%, rgba(255, 107, 107, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Premium Icons with Glass Effect */
.premium-icon {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.9) 0%, rgba(255, 193, 7, 0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.premium-icon:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 235, 59, 0.9) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Update Expertise Icons with Glass Effect */
.expertise-icon {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.9) 0%, rgba(255, 193, 7, 0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.expertise-icon:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 235, 59, 0.9) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.expertise-icon:hover::before {
    left: 100%;
}

/* Update Expertise Icons */
.expertise-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.expertise-icon:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

.expertise-icon:hover::before {
    left: 100%;
}

.img:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

/* Hero Section 3D Effect */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
    animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Latest & Greatest Section */
.latest-greatest {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
}

.latest-greatest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Premium Glass Effect */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
    animation: glassShimmer 3s ease-in-out infinite;
}

@keyframes glassShimmer {
    0%, 100% {
        opacity: 0.3;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    }
    50% {
        opacity: 0.5;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    }
}

.hero-wrap-2 {
    position: relative;
    overflow: hidden;
}

.hero-wrap-2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: glassRotate 8s linear infinite;
    pointer-events: none;
}

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

.hero-wrap-2 .slider-text {
    position: relative;
    z-index: 10;
}

.hero-wrap-2 .bread {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-wrap-2 .breadcrumbs {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Full HD Images */
.img {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-wrap {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-wrap-2 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Infinite Color Animation for UDT Letters */
@keyframes colorChange {
    0% { color: #FFD700; }    /* Yellow */
    25% { color: #FF6B6B; }   /* Red */
    50% { color: #4ECDC4; }   /* Green */
    75% { color: #45B7D1; }   /* Blue */
    100% { color: #FFD700; }   /* Yellow */
}

.letter {
    display: inline-block;
    font-weight: bold;
}

/* Resume Page Styling */
.resume-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 40px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.resume-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.resume-page {
    text-align: center;
    margin-bottom: 30px;
    display: block !important;
    visibility: visible !important;
}

.resume-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.resume-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-resume-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.8) 0%, rgba(0, 255, 136, 0.6) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 30px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    font-size: 16px;
    margin: 20px 0;
}

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

.download-resume-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 255, 136, 0.8) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

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

.download-resume-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Mobile Responsive for Resume */
@media (max-width: 768px) {
    .resume-container {
        padding: 20px;
        margin: 10px 0;
    }
    
    .resume-image {
        max-width: 100%;
        height: auto;
    }
    
    .download-resume-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .resume-container {
        padding: 15px;
        margin: 5px 0;
    }
    
    .download-resume-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* Enhanced Contact Boxes - Simple Professional Design */
.contact-box-enhanced {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.contact-box-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.contact-box-enhanced::before {
    display: none;
}

.icon-enhanced {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: #667eea;
    font-size: 24px;
}

.contact-box-enhanced:hover .icon-enhanced {
    background: #667eea;
    color: #ffffff;
    transform: scale(1.05);
}

.contact-box-enhanced h3 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-box-enhanced p {
    color: #6b7280;
    margin-bottom: 0;
}

.contact-box-enhanced .contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-box-enhanced .contact-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Enhanced Expertise Section - Simple Professional Design */
.expertise-title {
    color: #1f2937;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 30px;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

.expertise-grid {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    transition: all 0.3s ease;
    color: #667eea;
}

.expertise-icon:hover {
    transform: translateY(-3px);
    background: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Comprehensive Layout Fixes - Prevent Horizontal Scroll */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    overflow-x: hidden;
}

.col, .col-md-6, .col-md-8, .col-md-10, .col-md-12, .col-md-3, .col-md-4, .col-md-5,
.col-6, .col-8, .col-10, .col-12, .col-3, .col-4, .col-5 {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
}

/* Fix for all elements that might cause overflow */
img, .img, .img-fluid {
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

/* Fix for glass cards */
.glass-card {
    max-width: 100%;
    overflow: hidden;
}

/* Fix for buttons */
.custom-btn, .glass-button {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Fix for tech badges */
.tech-badge, .tech-chip {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced Mobile Fixes */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, .col-md-6, .col-md-8, .col-md-10, .col-md-12, .col-md-3, .col-md-4, .col-md-5,
    .col-6, .col-8, .col-10, .col-12, .col-3, .col-4, .col-5 {
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
    }
    
    .glass-card {
        height: auto;
        min-height: 320px;
    }
    
    .custom-btn, .glass-button {
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .col, .col-md-6, .col-md-8, .col-md-10, .col-md-12, .col-md-3, .col-md-4, .col-md-5,
    .col-6, .col-8, .col-10, .col-12, .col-3, .col-4, .col-5 {
        padding-left: 5px;
        padding-right: 5px;
        overflow-x: hidden;
    }
    
    .glass-card {
        min-height: 280px;
    }
    
    .custom-btn, .glass-button {
        font-size: 11px;
        padding: 8px 16px;
    }
}

.project-card-enhanced::before {
    display: none;
}

.project-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.project-icon-enhanced {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.3s ease;
    color: #667eea;
}

.project-card-enhanced:hover .project-icon-enhanced {
    background: #667eea;
    color: #ffffff;
    transform: scale(1.05);
}

.career-card-enhanced {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.career-card-enhanced:hover {
    border-color: #f5576c;
}

.career-card-enhanced .project-icon-enhanced {
    color: #f5576c;
}

.career-card-enhanced:hover .project-icon-enhanced {
    background: #f5576c;
    color: #ffffff;
}

.project-btn-enhanced {
    background: #667eea;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.project-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    background: #4f46e5;
}

.career-card-enhanced .project-btn-enhanced {
    background: #f5576c;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.2);
}

.career-card-enhanced .project-btn-enhanced:hover {
    background: #e53e3e;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 60px 0;
    }
    
    .vr {
        font-size: 4rem !important;
    }
    
    .letter {
        font-size: 3.5rem !important;
    }
    
    /* Hero Images Mobile - Full Display */
    .hero-wrap,
    .hero-wrap-2 {
        min-height: 400px !important;
    }
    
    .one-third.img.js-fullheight {
        height: 400px !important;
        min-height: 400px !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .slider-item.js-fullheight {
        min-height: 400px !important;
    }
    
    .home-slider.owl-carousel {
        height: auto !important;
        min-height: 400px !important;
    }
    
    /* Navigation Mobile */
    #ftco-navbar {
        padding: 15px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    /* Contact Boxes Mobile */
    .contact-box-enhanced {
        min-height: 200px;
        margin-bottom: 15px;
    }
    
    .icon-enhanced {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Project Cards Mobile */
    .project-card-enhanced {
        min-height: 280px;
        margin-bottom: 20px;
    }
    
    .project-icon-enhanced {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Expertise Mobile */
    .expertise-grid {
        padding: 20px;
    }
    
    .expertise-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    /* Project Images Mobile - Original Size */
    .img.js-fullheight {
        height: 300px !important;
        width: 100% !important;
        max-width: none !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        object-fit: contain !important;
    }
    
    /* Text Mobile */
    .ftco-intro h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .ftco-intro p {
        font-size: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-info .col-md-4 {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .vr {
        font-size: 3.5rem !important;
    }
    
    .letter {
        font-size: 3rem !important;
    }
    
    /* Hero Images Extra Small Mobile */
    .one-third.img.js-fullheight {
        height: 350px !important;
        min-height: 350px !important;
    }
    
    .slider-item.js-fullheight {
        min-height: 350px !important;
    }
    
    .home-slider.owl-carousel {
        min-height: 350px !important;
    }
    
    .slider-item.js-fullheight {
        min-height: 300px !important;
    }
    
    .ftco-intro h2 {
        font-size: 1.5rem;
    }
    
    .ftco-intro p {
        font-size: 0.9rem;
    }
    
    .contact-box-enhanced {
        min-height: 180px;
        padding: 20px;
    }
    
    .project-card-enhanced {
        min-height: 250px;
        padding: 20px;
    }
    
    .expertise-grid {
        padding: 15px;
    }
    
    .img.js-fullheight {
        height: 200px !important;
    }
    
    /* Prevent Zoom and Ensure Proper Fitting */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
        overflow-x: hidden;
        touch-action: manipulation;
    }
    
    /* Mobile Navigation Fix */
    .navbar-collapse {
        max-height: 100vh;
        overflow-y: auto;
    }
    
    /* Fix Mobile Input Issues */
    input, textarea, select {
        font-size: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Prevent Double Tap Zoom */
    * {
        touch-action: manipulation;
    }
    
    /* Ensure Content Fits Screen */
    .container, .container-fluid {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix Mobile Images - Full Display */
    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Hero Images Mobile - Full Display */
    .one-third.img.js-fullheight {
        height: 400px !important;
        min-height: 400px !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .slider-item.js-fullheight {
        min-height: 400px !important;
    }
    
    .home-slider.owl-carousel {
        height: auto !important;
        min-height: 400px !important;
    }
    
    /* About Page Images Mobile - Full Display */
    .about-section .img,
    .services-section .img {
        height: 300px !important;
        width: 100% !important;
        max-width: none !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        object-fit: contain !important;
    }
    
    /* Work Page Images Mobile - Full Display */
    .work-section .img {
        height: 250px !important;
        width: 100% !important;
        max-width: 100% !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        object-fit: contain !important;
        overflow: hidden !important;
    }
    
    /* Work Page Container Mobile */
    .work-section .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Work Page Hero Mobile */
    .hero-wrap-2 {
        min-height: 300px !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    }
