    :root {
      --primary-color: #701718;
      --secondary-color: #333;
      --accent-color: #f8f9fa;
      --text-color: #333;
      --light-text: #666;
    }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 700;
    }



    .project-section {
      padding: 30px 0px !important;
      background-color: rgb(253, 253, 253);
    }

    .project-card {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: transform 0.3s ease;
      height: 100%;
      background-color: white;
    }

    .project-card:hover {
      transform: translateY(-10px);
    }

    .project-image {
      height: 270px;
      background-size: cover;
      background-position: center;
    }

    .project-image img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .project-content {
      padding: 25px;
      background: white;
      font-size: 15px;
    }

    .project-tagline {
      color: var(--primary-color);
      font-weight: 400;
      margin-bottom: 15px;
      font-size: 15px;
      font-style: italic;
    }


    .project-card-title {
      position: relative;
      margin-bottom: 30px;
      font-size: 25px;
    }


    .project-card-title::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: -20px;
      width: 76px;
      height: 11px;
      background-image: url(../images/shape/shape-5.png);
      background-repeat: no-repeat;
    }

    .project-card-title {
      margin-bottom: 40px;
    }



    .project-objectives,
    .project-achievements {
      margin-top: 20px;
      font-size: 15px;
    }

    .project-objectives ul,
    .project-achievements ul {}

    .project-objectives li,
    .project-achievements li {
      margin-bottom: 8px;
    }

    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      padding: 5px 25px;
      font-weight: 600;
      font-size: 12px;
    }

    .btn-primary:hover {
      background-color: #5a1214;
      border-color: #5a1214;
    }

    .theme-btn {
      border: solid #701718 1.5px;
      border-radius: 5px;
      font-size: 14px;
      background-color: rgba(255, 255, 255, 0) !important;
      padding: 12px 20px;
      color: #701718;
    }

    .theme-btn.style-four {
      font-size: 14px;
      border-radius: 5px;
      background-color: #701718 !important;
    }

    .cta-section {
      background-color: var(--accent-color);
      padding: 80px 0;
      text-align: center;
    }

    .cta-section h3 {
      color: #333;
      margin-bottom: 15px;
    }

    .cta-section .lead {
      color: #333;
      font-size: 16px;
    }

    .cta-section::before {
      display: none;
    }

    .cta-buttons {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .cta-buttons .btn {
      margin: 0 10px 15px;
      font-size: 14px;

    }