<style>
      html,
      body {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
        background-color: #f4f4f4;
      }

      .hero {
        position: relative;
        height: 100vh;
        background: url("/images/landing_bg.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .navbar {
        background-color: rgba(0, 0, 0, 0.6);
      }

      .section-title {
        font-size: 1.785rem;
        font-weight: bold;
      }

      .section-subtitle {
        margin-bottom: 3rem;
      }

      .inner-border .col-md-4 {
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
      }

      /* Remove right border from every 3rd column (assuming 3 columns per row) */
        .inner-border .col-md-4:nth-child(3n) {
        border-right: none;
      }

      /* Remove bottom border from last row (automated for uneven items is complex in pure CSS, but this helps) */
        @media (min-width: 768px) {
        .inner-border .col-md-4:nth-last-child(-n+3) {
        border-bottom: none;
        }
      }

      .service-icon-wrapper {
        width: 60px;
        height: 60px;
        border: 1px solid #00a0df;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
      }

      .service-icon {
        width: 50px;
        height: 50px;
        background-color: #00a0df;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
      }

      .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: 0.3s ease-in-out;
      }

      .project-image {
        height: 220px;
        object-fit: contain;
        width: 100%;
      }

      .project-year-badge {
        position: absolute;
        top: 10px;
        left: -15px;
        background: #00a0df;
        color: #fff;
        padding: 5px 10px;
        font-size: 0.8rem;
        font-weight: bold;
        border-radius: 3px;
        z-index: 10;
      }
      .project-tags .badge {
        background-color: #ced4da;
        color: black;
        font-size: 0.75rem;
        font-weight: 200;
      }
     
      .project-desc {
	font-size: 0.95rem;
	font-weight: 200;
      }

      .list-group-item-light {
	background-color: #f4f4f4 !important;
        color: black !important;
      }

      .flip-card {
  	perspective: 1000px;
  	height: 100%;
      }

      .flip-card-inner {
  	position: relative;
  	width: 100%;
  	height: 100%;
  	transition: transform 0.6s ease-in-out;
  	transform-style: preserve-3d;
      }

      .flip-card:hover .flip-card-inner {
  	transform: rotateY(180deg);
      }

      .flip-card-front, .flip-card-back {
  	position: absolute;
	top: 0;
	left: 0;
  	width: 100%;
  	height: 100%;
  	backface-visibility: hidden;
  	border-radius: 0.5rem;
	display: felx;
	flex-direction: column;
      }

      .flip-card-front {
  	background: #fff;
  	z-index: 2;
      }

      .flip-card-back {
  	background: #f4f4f4;
	padding: 2px;
  	transform: rotateY(180deg);
	justify-content: center;
      }

      .client-logos {
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        background-color: #ffffff;
        padding: 2rem 2rem;
        margin-top: 1rem
      }

      .client-logos .logos-track {
        display: inline-block;
        animation: scroll-left 70s linear infinite;
      }

      .client-logos img {
        height: 100px; /* Increased from 60px to 100px */
        margin: 0 50px;
        vertical-align: middle;
        transition: filter 0.3s ease;
      }

      .client-logos img:hover {
        filter: grayscale(0%);
      }

      @keyframes scroll-left {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      footer {
        background-color: #17191d;
        color: #9ca3af;
        padding: 3rem 1rem 1rem;
      }

      footer a {
        color: #9ca3af;
        text-decoration: none;
      }

      footer a:hover {
        color: #ffffff;
      }

      .footer-bottom {
        border-top: 1px solid #374151;
        margin-top: 2rem;
        padding-top: 1rem;
        text-align: center;
      }
</style>
