<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --bs-primary: #0080FF;
  --bs-primary-rgb: 0, 128, 255;
  --about-title-color: #0056b3;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background-color: #0066CC;
  border-color: #0066CC;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav .nav-item {
  margin-right: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0080FF 0%, #0066CC 100%);
  padding: 80px 0;
  margin-bottom: 0;
}

/* Carousel Section */
.carousel-section {
  padding: 0;
  margin-bottom: 0;
}

.full-width-carousel .carousel-item {
  height: 610px;
}

.full-width-carousel .carousel-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.full-width-carousel .carousel-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.full-width-carousel .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  width: 100%;
  color: white;
}

.full-width-carousel .carousel-indicators {
  bottom: 20px; /* Increase margin from bottom */
}

/* About Page Styles */
.content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
}

.content-card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--about-title-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.content-card h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-top: 15px;
  padding-left: 8px;
  border-left: 4px solid #007bff;
}

.content-card p, .content-card ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.card-title i {
  margin-left: 5px;
}

.sidebar {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px;
}

.sidebar h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.sidebar .list-group-item {
  font-size: 0.8rem; 
  padding: 8px 10px; 
  border-radius: 0; 
  border-bottom: 1px solid #ddd; 
  transition: all 0.3s;
  background: #ffffff;
}

.sidebar .list-group-item a {
  text-decoration: none; /* Remove underline */
  color: inherit;
}


.sidebar .list-group-item:hover {
  background: #007bff;
  color: #fff;
}

/* Sidebar Highlight for Active Project */
.sidebar .list-group-item.active-project {
  background-color: #0080FF; /* Primary color */
  color: white;
  /* font-weight: bold; */
  border-left: 4px solid #0056b3; /* Darker shade for emphasis */
}

.sidebar .list-group-item.active-project a {
  color: white;
  text-decoration: none;
}


footer {
  font-size: 0.85rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  margin-bottom: 3px;
}

.badge.bg-secondary {
  background-color: #e9ecef !important; 
  color: #495057 !important;  
  /* border: 1px solid #ced4da !important;  */
} 

.card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.card-body h5 {
  font-size: 1rem;
  font-weight: 600;
}

.btn-sm {
  font-size: 0.85rem;
}

.navbar .dropdown-menu {
  background-color: #343a40;
  border: none;
}

.navbar .dropdown-item {
  color: white;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #0080FF;
  color: white;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .full-width-carousel .carousel-item {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .full-width-carousel .carousel-item {
    height: 300px;
  }

  .full-width-carousel .carousel-caption h3 {
    font-size: 1.4rem;
  }

  .full-width-carousel .carousel-caption p {
    font-size: 0.85rem;
  }
}</pre></body></html>