<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --dark-bg: #0f172a;
    --dark-blue: #1e293b;
    --accent: #7dd3fc;
    --accent-dark: #0ea5e9;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, label, strong {
    color: var(--text-light);
}

.text-accent {
    color: var(--accent);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-accent {
    background-color: var(--accent) !important;
    color: var(--dark-bg) !important;
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
    margin-left: 1.5rem !important;
    color: var(--text-light) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--dark-bg) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.4);
}

.btn-outline-light {
    color: var(--text-light) !important;
    border-color: var(--text-light) !important;
}

.btn-outline-light:hover {
    color: var(--dark-bg) !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(30,41,59,0.9) 100%);
}

.profile-image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent);
    transition: all 0.5s ease;
}

/* Cards */
.card {
    background-color: var(--dark-blue);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 211, 252, 0.2);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(125, 211, 252, 0.1);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: var(--accent);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-top: 40px;  /* Adds space above each card */
    margin-bottom: 60px;
}

.timeline-content {
    width: calc(50% - 30px);
    padding: 30px 20px 20px; /* Extra padding top so it's below the label */
    color: var(--text-light);
}


.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

/* Form */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.2);
    color: var(--text-light);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(125, 211, 252, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-image-container {
        width: 250px;
        height: 250px;
        margin: 2rem auto 0;
    }

    .hero .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }

    .timeline-date {
        left: 30px;
        transform: none;
    }
}

@media (max-width: 576px) {
    .profile-image-container {
        width: 200px;
        height: 200px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    
    /* Add to your styles.css */
.btn-outline-light {
    border: 2px solid var(--accent);
    color: var(--accent);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.3);
}

/* For mobile responsiveness */
@media (max-width: 576px) {
    .hero .d-flex.flex-wrap {
        flex-direction: column;
    }
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Category Styles */
.category-section {
  padding: 1.5rem;
  border-radius: 10px;
  background-color: rgba(30, 41, 59, 0.5);
  margin-bottom: 2rem;
}

.category-divider {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-left: 1rem;
}

/* Card Header Gradients */
.bg-gradient-web {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

.bg-gradient-ai {
  background: linear-gradient(135deg, #ff5e62, #ff9966);
}

.bg-gradient-data {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.bg-gradient-upcoming {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.card-header {
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 10px 10px 0 0 !important;
}

/* Tech Stack */
.tech-stack img {
  transition: transform 0.3s ease;
}

.tech-stack img:hover {
  transform: scale(1.2);
}

/* Project Status */
.project-status .badge {
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .category-section {
    padding: 1rem;
  }
  
  .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .category-divider {
    width: 100%;
    margin: 0.5rem 0 0 0;
  }
 
 
 .tech-item {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 2px;
}

.tech-item img {
  margin-right: 6px;
} 

  .leadership-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
  }
  
  .leadership-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .tech-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
  }
  
  .bg-dark-blue-hover {
    background: #0a192f;
  }
  
  .bg-dark-blue-hover:hover {
    background: #0f2342;
  }
  
  .transition-all {
    transition: all 0.3s ease;
  }
  
  
@keyframes rain {
  from { transform: translateY(-100vh); }
  to { transform: translateY(100vh); }
}

/* Ensure text remains visible during animations */
.glitch-hover:hover {
  transform: none !important;
}

.hero-buttons {
  position: relative;
  z-index: 10;
}

.profile-image-container {
  position: relative;
  z-index: 10;
}



}

</pre></body></html>