:root {
      --primary-color: #2c3e50;
      --secondary-color: #e67e22;
      --accent-color: #3498db;
      --light-color: #f8f9fa;
      --dark-color: #2c3e50;
      --text-color: #333;
      --light-gray: #e9ecef;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      padding-top: 76px;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    /* Navbar - FIXED */
    .navbar {
      background-color: var(--primary-color) !important;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 1rem 0;
    }
    
    .navbar.scrolled {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.4rem;
    }
    
    .navbar-brand img {
      border-radius: 4px;
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 5px;
      border-radius: 4px;
      transition: all 0.3s;
      position: relative;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--secondary-color) !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: var(--secondary-color);
      transition: all 0.3s ease;
    }
    
    .nav-link:hover::after, .nav-link.active::after {
      width: 80%;
      left: 10%;
    }
    
    /* Mobile Navbar Fixes */
    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    @media (max-width: 768px) {
      .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        margin-top: 10px;
      }
      
      .nav-link {
        margin: 5px 0;
        padding: 8px 15px !important;
      }
      
      .nav-link::after {
        display: none;
      }
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    
    /* Section Styling */
    section {
      padding: 80px 0;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background-color: var(--secondary-color);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* About Section */
    .about {
      background-color: var(--light-color);
    }
    
    .about img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.5s;
    }
    
    .about img:hover {
      transform: scale(1.02);
    }
    
    .about h2 {
      color: var(--primary-color);
      margin-bottom: 1.5rem;
    }
    
    .about p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    
    /* Mission & Vision Section */
    .mission-vision {
      background-color: white;
    }
    
    .box {
      background: var(--light-color);
      border-radius: 10px;
      padding: 40px 30px;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }
    
    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .box h3 {
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
    }
    
    .box p {
      font-size: 1.1rem;
    }
    
    /* Clients Section */
    .clients {
      background-color: var(--light-color);
    }
    
    .clients h2 {
      color: var(--primary-color);
    }
    
    .clients img {
      max-width: 100%;
      height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: all 0.3s;
      padding: 10px;
    }
    
    .clients img:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
    }
    
    /* Footer */
    footer {
      background-color: var(--dark-color);
      color: white;
      text-align: center;
      padding: 30px 0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 768px) {
      body {
        padding-top: 66px;
      }
      
      .hero {
        padding: 80px 0;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .box {
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }