/* Custom Styles for Mubarmij */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    padding: 5px 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Logo Styles */
.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.code-animation {
    animation: float 3s ease-in-out infinite;
}

.logo-animation {
    animation: float 3s ease-in-out infinite;
}

.hero-main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Social Media */
.hero-social {
    margin-top: 30px;
}

.hero-social p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-social .btn {
    margin: 5px;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-social .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Logo */
.hero-logo {
    text-align: center;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.feature-icon {
    margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

/* Enhanced Service Icons */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon-wrapper:hover::before {
    opacity: 1;
}

.service-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.web-dev-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-app-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.cloud-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.custom-software-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Enhanced Service Detail Icons */
.service-detail-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-detail-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.service-detail-icon-wrapper:hover::before {
    opacity: 1;
}

.service-detail-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.web-dev-detail-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.web-dev-detail-icon:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.mobile-app-detail-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.mobile-app-detail-icon:hover {
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.5);
}

.cloud-detail-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.cloud-detail-icon:hover {
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.custom-software-detail-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.custom-software-detail-icon:hover {
    box-shadow: 0 15px 40px rgba(67, 233, 123, 0.5);
}

/* Enhanced Feature Icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.feature-icon-wrapper:hover::before {
    opacity: 1;
}

.feature-icon-wrapper:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fast-dev-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.secure-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.expert-team-icon {
    background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
}

/* About Title Logo */
.about-title-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

/* Enhanced Value Icons */
.value-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.value-icon-wrapper:hover::before {
    opacity: 1;
}

.value-icon-wrapper:hover {
    transform: perspective(1000px) rotateY(15deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.innovation-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.partnership-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.excellence-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

/* Enhanced Contact Icons */
.contact-icon-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.contact-icon-wrapper:hover::before {
    opacity: 1;
}

.contact-icon-wrapper:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.email-icon:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.phone-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.phone-icon:hover {
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Country Code Dropdown Styling */
.input-group .form-select {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .form-control {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

/* Enhanced Story Visual Container */
.story-visual-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.story-icon-grid {
    position: relative;
    width: 320px;
    height: 320px;
    margin: auto;
}

.story-icon-wrapper {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: floatStory 4s ease-in-out infinite;
}

.story-icon-wrapper:hover {
    transform: scale(1.15);
    z-index: 10;
    animation-play-state: paused;
}

/* Icon positioning in circle - Fixed positioning */
.code-icon {
    top: 10px;
    left: 50%;
    margin-left: -35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation-delay: 0s;
}

.design-icon {
    top: 80px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    animation-delay: 0.7s;
}

.innovation-icon-story {
    bottom: 80px;
    right: 10px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation-delay: 1.4s;
}

.team-icon {
    bottom: 10px;
    left: 50%;
    margin-left: -35px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    animation-delay: 2.1s;
}

.growth-icon {
    bottom: 80px;
    left: 10px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    animation-delay: 2.8s;
}

.solution-icon {
    top: 80px;
    left: 10px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    animation-delay: 3.5s;
}

.story-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffffff;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.story-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

/* Floating animation - Fixed */
@keyframes floatStory {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1);
    }
}

/* Hover state override */
.story-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.15) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .story-visual-container {
        height: 350px;
        margin-top: 30px;
    }
    
    .story-icon-grid {
        width: 280px;
        height: 280px;
    }
    
    .story-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .story-icon-wrapper i {
        font-size: 1.5rem !important;
    }
    
    .story-center-logo {
        padding: 12px;
        width: 100px;
        height: 100px;
    }
    
    .story-logo {
        width: 76px;
        height: 76px;
    }
    
    .code-icon {
        margin-left: -30px;
    }
    
    .team-icon {
        margin-left: -30px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.cta-buttons {
    margin-bottom: 30px;
}

.contact-quick a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-quick a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-buttons {
        margin-top: 30px;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .service-card {
        margin-bottom: 30px;
    }
}

/* Responsive Logo Design */
@media (max-width: 768px) {
    .hero-main-logo {
        max-width: 250px;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 50px;
        margin-bottom: 30px;
    }
    
    .hero-image {
        margin-top: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shimmer Effect for Mubarmij Text */
.shimmer-text {
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff, #00d4ff, #007bff);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    display: inline-block;
    font-weight: 700;
}

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* Page Header Logo */
.page-logo {
    margin-bottom: 20px;
}

.page-logo-img {
    height: 100px;
    width: auto;
}

/* Service Detail Cards */
.service-detail-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #43e97b 100%);
    border-radius: 20px 20px 0 0;
}

.service-detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f4 100%);
}

.service-detail-card h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-detail-card:hover h3 {
    transform: scale(1.05);
}

.service-detail-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover ul li {
    transform: translateX(5px);
}

.service-detail-card ul li i {
    transition: all 0.3s ease;
}

.service-detail-card:hover ul li i {
    transform: scale(1.2);
}

/* Tech Stack */
.tech-stack .badge {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #43e97b 100%);
    border-radius: 20px 20px 0 0;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f4 100%);
}

.project-image {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    position: relative;
}

.project-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.project-logo:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.eltime-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.padel-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-header {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative;
}

.project-header h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.project-card:hover .project-header h4 {
    transform: scale(1.05);
}

.project-header p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #5a6c7d;
    font-weight: 400;
}

.project-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.project-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.project-footer .btn {
    font-size: 0.95rem;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.project-footer .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.project-footer .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 2px;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-width: 150px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin: 5px;
}

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

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

.store-btn:hover {
    transform: translateY(-3px) scale(1.05);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.app-store-btn {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: white;
    border-color: #000000;
}

.app-store-btn:hover {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.play-store-btn {
    background: linear-gradient(135deg, #01875f 0%, #028a63 100%);
    color: white;
    border-color: #01875f;
}

.play-store-btn:hover {
    background: linear-gradient(135deg, #016b4a 0%, #01735b 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(1, 135, 95, 0.4);
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.store-text small {
    font-size: 0.7rem;
    opacity: 0.9;
}

.store-text strong {
    font-size: 0.85rem;
    font-weight: 600;
}

.store-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 160px;
        justify-content: center;
    }
}
