/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0f1a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 165, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0a0f1a 0%, #111827 100%);
    color: #e2e8f0;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    color: #ff6600;
    font-size: 2.2rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo p {
    color: #00ffff;
    font-size: 1rem;
    margin: 5px 0 0;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: #ff6600;
}

.nav-links a.active {
    color: #ff6600;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6600, #ff9500);
}

/* Main Content */
.site-main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5% 60px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 165, 0, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6600;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.4);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    color: #ff6600;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 165, 0, 0.1));
    color: #ff9500;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 165, 0, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

/* Stats Section */
.stats-section {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    background: linear-gradient(145deg, #1e293b, #1a2332);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #00ffff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    color: #ff6600;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    border-left: 4px solid #00ffff;
}

.about-section h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #00ffff);
}

.about-section p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 60px;
}

.certifications-section h2,
.services-section h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.certifications-section h2::after,
.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #00ffff);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cert-card {
    background: linear-gradient(145deg, #1e293b, #1a2332);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #ff6600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(0, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ff6600;
}

.cert-card h3 {
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cert-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.cert-date {
    color: #ff6600;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, #1e293b, #1a2332);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border-top: 4px solid #00ffff;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 102, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #00ffff;
}

.service-card h3 {
    color: #ff6600;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    margin-bottom: 60px;
}

.blog-preview h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.blog-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #00ffff);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: linear-gradient(145deg, #1e293b, #1a2332);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #00ffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.blog-card:hover::before {
    opacity: 1;
}

.blog-card h3 {
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.read-more:hover {
    color: #ff9500;
    padding-left: 5px;
}

/* Floating Connect Button - Right Side */
.floating-connect {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.connect-btn {
    background: linear-gradient(135deg, #ff6600, #ff9500);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.connect-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.6);
}

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

/* Footer Styles */
.site-footer {
    background: rgba(17, 24, 39, 0.95);
    border-top: 1px solid rgba(255, 165, 0, 0.3);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-info h3,
.footer-social h3 {
    color: #ff6600;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ffff;
}

.footer-info p {
    color: #e2e8f0;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-info p strong {
    color: white;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e293b, #1a2332);
    color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 165, 0, 0.3);
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.3rem;
    width: 1.3rem;
    text-align: center;
}

.social-icon:hover {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(0, 255, 255, 0.2));
    border-color: #ff6600;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 25px 5%;
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo {
        align-items: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        width: 180px;
        height: 180px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .floating-connect {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-connect {
        bottom: 15px;
        right: 15px;
    }
    
    .connect-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}