
    :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 */
    .navbar {
      background-color: var(--primary-color) !important;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .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%;
    }
    
    /* 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: 120px 0;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
    
    .hero p {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    
    .btn-warning {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 6px;
      transition: all 0.3s;
    }
    
    .btn-warning:hover {
      background-color: #d35400;
      border-color: #d35400;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    }
    
    /* 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-preview {
      background-color: var(--light-color);
    }
    
    .about-image {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      transition: transform 0.5s;
    }
    
    .about-image:hover img {
      transform: scale(1.03);
    }
    
    /* Stats Section */
    .stats-section {
      background-color: var(--primary-color);
      color: white;
    }
    
    .stat-item {
      padding: 20px;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 1.1rem;
      font-weight: 500;
    }
    
    /* Services Section */
    .services-section {
      background-color: white;
    }
    
    .card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    
    .card-img-top {
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .card:hover .card-img-top {
      transform: scale(1.05);
    }
    
    .card-body {
      padding: 25px;
    }
    
    .card-title {
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
      background-color: var(--light-color);
    }
    
    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 25px;
      position: relative;
    }
    
    .testimonial-text::before {
      content: "";
      font-size: 4rem;
      color: var(--light-gray);
      position: absolute;
      top: -20px;
      left: -10px;
      font-family: Georgia, serif;
    }
    
    .client-info {
      display: flex;
      align-items: center;
    }
    
    .client-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }
    
    .client-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Contact Section */
    .contact-section {
      background-color: white;
    }
    
    .contact-box {
      background: var(--light-color);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .contact-info p {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    
    .contact-info i {
      color: var(--secondary-color);
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      transition: all 0.3s;
    }
    
    .social-icons a:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    .form-control {
      padding: 12px 15px;
      border: 1px solid var(--light-gray);
      border-radius: 6px;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
    }
    
    /* 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;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .stat-item {
        margin-bottom: 20px;
      }
    }
 