 :root {
      --primary: #e74c3c;
      --secondary: #2c3e50;
      --accent: #f39c12;
      --light: #f8f9fa;
      --dark: #2c3e50;
      --transition: all 0.3s ease;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 12px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
      border: 2px solid #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
    
    /* Firefox Scrollbar */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--primary) #f1f1f1;
    }
    
    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
     
    /* Navbar */
    .navbar {
      padding: 15px 0;
      transition: var(--transition);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    .navbar-brand img {
      border: 2px solid var(--accent);
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    /* Navbar
    .navbar {
      padding: 20px 0;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--dark) !important;
    }
    
    .navbar-brand img {
      border: 2px solid var(--accent);
      transition: var(--transition);
    }
    
    .navbar-brand:hover img {
      transform: rotate(10deg);
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 12px;
      position: relative;
      color: var(--dark) !important;
      transition: var(--transition);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    .nav-link:hover {
      color: var(--primary) !important;
    }
    
    .navbar-scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.98) !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
     */
    
    /* Hero Section */
    .about-hero {
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 100px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&h=900&q=80');
      background-size: cover;
      background-position: center;
      color: white;
    }
    
    /* Buttons */
    .btn {
      border-radius: 30px;
      padding: 12px 30px;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
    }
    
    .btn-primary:hover {
      background-color: #c0392b;
      border-color: #c0392b;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .btn-warning {
      background-color: var(--accent);
      border-color: var(--accent);
      color: white;
    }
    
    .btn-warning:hover {
      background-color: #e67e22;
      border-color: #e67e22;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    /* Cards */
    .team-card {
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .team-card img {
      transition: var(--transition);
      height: 250px;
      object-fit: cover;
    }
    
    .team-card:hover img {
      transform: scale(1.05);
    }
    
    .team-social {
      position: absolute;
      bottom: -40px;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.9);
      padding: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
      transition: var(--transition);
      opacity: 0;
    }
    
    .team-card:hover .team-social {
      bottom: 0;
      opacity: 1;
    }
    
    .team-social a {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .team-social a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    /* Timeline */
    .timeline {
      position: relative;
      padding: 20px 0;
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      width: 2px;
      height: 100%;
      background: var(--accent);
      transform: translateX(-50);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 40px;
    }
    
    .timeline-content {
      position: relative;
      width: 45%;
      padding: 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: auto;
    }
    
    .timeline-content::after {
      content: '';
      position: absolute;
      top: 20px;
      width: 20px;
      height: 20px;
      background: var(--accent);
      transform: rotate(45deg);
    }
    
    .timeline-item:nth-child(even) .timeline-content::after {
      right: -10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after {
      left: -10px;
    }
    
    .timeline-dot {
      position: absolute;
      top: 25px;
      left: 50%;
      width: 20px;
      height: 20px;
      background: var(--primary);
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    
    /* Values Section */
    .value-card {
      text-align: center;
      padding: 30px 20px;
      border-radius: 15px;
      transition: var(--transition);
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .value-icon {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 20px;
    }
    
    /* Stats */
    .stat-item {
      text-align: center;
      padding: 30px 20px;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 1.1rem;
      color: var(--secondary);
      font-weight: 500;
    }
    
    /* Footer */
    footer {
      background-color: var(--dark);
    }
    
    footer h5, footer h6 {
      color: white;
      margin-bottom: 20px;
    }
    
    footer a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
    }
    
    footer a:hover {
      color: var(--accent);
    }
    
    /* Section spacing */
    section {
      padding: 80px 0;
    }
    
    .bg-light-custom {
      background-color: #f9f9f9 !important;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate-fadein {
      animation: fadeIn 1s ease forwards;
    }
    
    /* Scroll Progress Bar */
    .progress-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: transparent;
      z-index: 9999;
    }
    
    .progress-bar {
      height: 4px;
      background: var(--accent);
      width: 0%;
      transition: width 0.3s ease;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .timeline::before {
        left: 20px;
      }
      
      .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
      }
      
      .timeline-dot {
        left: 20px;
      }
      
      .timeline-content::after {
        left: -10px !important;
        right: auto !important;
      }
      
      section {
        padding: 60px 0;
      }
      
      /* Adjust scrollbar for mobile */
      ::-webkit-scrollbar {
        width: 6px;
      }
    }