    .home-photo .hp-inner {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 400px;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    }

    .home-buttons {
      margin-top: 30px;
    }

    .home-buttons .btn {
      margin-right: 15px;
    }

    .info-block-w-icon {
      margin-bottom: 30px;
      background-color: #222;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease;
    }

    .info-block-w-icon:hover {
      transform: translateY(-5px);
    }

    .ci-icon {
      font-size: 2.5em;
      color: #04b4e0;
      margin-bottom: 15px;
    }

    .ci-icon img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
    }

    .project-links {
      margin-top: 15px;
    }

    .project-links .btn {
      margin: 5px;
      font-size: 0.9em;
    }

    .footer-social-links a {
      font-size: 1.5em;
      margin: 0 10px;
      color: #fff;
      transition: color 0.3s ease;
    }

    .footer-social-links a:hover {
      color: #04b4e0;
    }



    .projects-carousel {
      padding: 20px 0;
    }


    .project-card {
      margin: 0 2px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .project-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .project-link-icon {
      opacity: 0;
      color: white;
      font-size: 1.2em;
      transition: opacity 0.3s ease;
    }

    .project-card:hover .project-link-icon {
      opacity: 1;
    }

    .project-image {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-title {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 15px;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.8) 0%,
          rgba(0, 0, 0, 0.6) 50%,
          rgba(0, 0, 0, 0) 100%);
      z-index: 2;
    }

    .project-title h4 {
      color: #fff;
      margin: 0;
      font-size: 1.1em;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .owl-carousel.projects-carousel .owl-stage {
      transition-timing-function: linear !important;
      will-change: transform;
    }

    .owl-carousel .owl-item {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0) scale(1.0, 1.0);
      transform: translateZ(0);
    }

    .project-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(4, 180, 224, 0.1);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-card:hover::after {
      opacity: 1;
    }

    .owl-carousel.projects-carousel {
      overflow: hidden;
    }

    .owl-carousel.projects-carousel .owl-stage {
      display: flex;
      align-items: stretch;
      transition-timing-function: linear !important;
      will-change: transform;
    }

    .owl-carousel.projects-carousel .owl-stage-outer {
      overflow: hidden;
    }

    .owl-carousel.projects-carousel .owl-item {
      backface-visibility: hidden;
      transform: translateZ(0);
      transition: opacity 0.3s ease;
    }

    .projects-carousel .item {
      height: 30vh;
      width: 21vw;
      padding: 10px;
    }

    .project-card {
      position: relative;
      width: 100%;
      height: 100%;
      background: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transform: translateZ(0);
    }

    @keyframes slide {
      0% {
        transform: translate3d(0, 0, 0);
      }

      100% {
        transform: translate3d(-50%, 0, 0);
      }
    }

    .owl-stage {
      will-change: transform;
    }



    /* Container adjustments */
    .home-content {
      padding: 0;
      /* Remove padding */
    }

    .home-content .row {
      margin: 0;
      display: flex;
      flex-direction: column;
    }

    /* Photo container */
    .home-photo {
      margin: 0;
      padding: 0;
      width: 100%;
    }

    .home-photo .hp-inner {
      height: 240px;
      /* Further reduced height */
      margin: 0;
      /* Remove margins */
      border-radius: 0;
      /* Remove border radius on mobile */
      box-shadow: none;
      /* Remove shadow on mobile */
    }

    /* Text content */
    .home-text {
      padding: 20px 15px;
      margin: 0;
      text-align: center;
    }

    /* Adjust column spacing */
    .col-xs-12,
    .col-sm-12 {
      padding: 0;
      /* Remove padding from columns */
    }

    /* Button adjustments */
    .home-buttons {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      /* Use gap instead of margins */
    }

    .home-buttons .btn {
      margin: 0;
      /* Remove default margins */
      flex: 1 1 calc(50% - 10px);
      /* Flexible width with gap consideration */
      min-width: 130px;
    }



    /* Mobile menu styles */
    @media (max-width: 768px) {
      .site-nav {
        position: fixed;
        height: 100vh;
        width: 250px;
        background: rgba(34, 34, 34, 0.98);
        top: 0;
        right: 0;
        bottom: 0;
        text-align: left;
        padding-top: 80px;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: all 0.3s ease-in-out;
        z-index: 999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      }

      .site-nav.mobile-menu-hide {
        transform: translateX(100%);
      }

      .site-nav ul.leven-classic-menu {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
      }

      .site-nav ul.leven-classic-menu li {
        display: block;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .site-nav ul.leven-classic-menu li a {
        display: block;
        padding: 5px 0;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .site-nav ul.leven-classic-menu li a:hover {
        color: #04b4e0;
      }

      .menu-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
        background: rgba(4, 180, 224, 0.1);
        border-radius: 50%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .menu-toggle i {
        color: #04b4e0;
        font-size: 20px;
      }

      .menu-toggle:hover {
        background: rgba(4, 180, 224, 0.2);
      }

      /* Add overlay when menu is open */
      body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
      }
    
      .home-photo .hp-inner {
        height: 240px;
        margin: 0;
        background-position: center top;
        background-size: contain;
        background-color: #222;
      }

      .home-content .row {
        margin: 0;
      }

      .home-text {
        padding: 20px;
        margin-top: 0;
      }

      .home-buttons .btn {
        margin: 5px;
        width: calc(50% - 10px);
        min-width: 140px;
      }

      .col-xs-12 {
        padding: 0 15px;
      }

      .home-text.hp-left {
        text-align: center;
      }
    
      .projects-carousel .item {
        height: 200px;
        /* Slightly smaller for very small screens */
        width: 90%;
        /* Slightly wider to maintain proportions */
      }

      .project-title h4 {
        font-size: 0.8em;
      }

      .home-photo .hp-inner {
        height: 200px;
        background-size: contain;
        background-position: center;
      }

      .home-buttons .btn {
        width: 100%;
        margin: 5px 0;
      }

      .projects-carousel .item {
        height: 200px;
        /* Slightly smaller for very small screens */
        width: 90%;
        /* Slightly wider to maintain proportions */
      }

      .project-title h4 {
        font-size: 0.8em;
      }

      .home-photo .hp-inner {
        height: 200px;
        background-size: contain;
        background-position: center;
      }

      .home-buttons .btn {
        width: 100%;
        margin: 5px 0;
      }
    

      /* Prevent horizontal scrolling */
      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
      }

      /* Fix header/footer width */
      .header,
      .site-footer {
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0 15px;
        box-sizing: border-box;
      }

      /* Fix content width */
      .page-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
      }

      /* Ensure all content stays within viewport */
      .container,
      .row {
        max-width: 100%;
        margin: 0;
        padding: 0 15px;
      }
    
      .projects-carousel .item {
        height: 200px;
        /* Fixed height */
        width: 200px;
        /* Fixed width */
        padding: 4px;
        /* Even spacing */
      }

      .project-card {
        margin: 0;
        border-radius: 8px;
        width: 100%;
        height: 100%;
        background: #2a2a2a;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      .project-image {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        /* Ensure image stays within bounds */
      }

      .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .project-title {
        padding: 6px;
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0) 100%);
      }

      .project-title h4 {
        font-size: 0.8em;
        line-height: 1.2;
        margin: 0;
        padding: 2px;
      }

      .owl-carousel.projects-carousel {
        margin: 0;
        padding: 10px 0;
        width: 100%;
      }

      /* Ensure proper spacing between slides */
      .owl-carousel.projects-carousel .owl-stage {
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        /* Consistent gap between items */
      }

      .home-photo .hp-inner {
        height: 240px;
        margin: 0;
        background-position: center top;
        background-size: contain;
        background-color: #222;
      }

      .home-content .row {
        margin: 0;
      }

      .home-text {
        padding: 20px;
        margin-top: 0;
      }

      .home-buttons .btn {
        margin: 5px;
        width: calc(50% - 10px);
        min-width: 140px;
      }

      .col-xs-12 {
        padding: 0 15px;
      }

      .home-text.hp-left {
        text-align: center;
      }
    
      .projects-carousel .item {
        height: 200px;
        /* Fixed height */
        width: 200px;
        /* Fixed width */
        padding: 4px;
        /* Even spacing */
      }

      .project-card {
        margin: 0;
        border-radius: 8px;
        width: 100%;
        height: 100%;
        background: #2a2a2a;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      .project-image {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        /* Ensure image stays within bounds */
      }

      .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .project-title {
        padding: 6px;
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0) 100%);
      }

      .project-title h4 {
        font-size: 0.8em;
        line-height: 1.2;
        margin: 0;
        padding: 2px;
      }

      .owl-carousel.projects-carousel {
        margin: 0;
        padding: 10px 0;
        width: 100%;
      }

      /* Ensure proper spacing between slides */
      .owl-carousel.projects-carousel .owl-stage {
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        /* Consistent gap between items */
      }

      .site-nav {
        position: fixed;
        height: 100vh;
        width: 250px;
        background: rgba(34, 34, 34, 0.98);
        top: 0;
        right: 0;
        bottom: 0;
        text-align: left;
        padding-top: 80px;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: all 0.3s ease-in-out;
        z-index: 999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      }

      .site-nav.mobile-menu-hide {
        transform: translateX(100%);
      }

      .site-nav ul.leven-classic-menu {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
      }

      .site-nav ul.leven-classic-menu li {
        display: block;
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .site-nav ul.leven-classic-menu li a {
        display: block;
        padding: 5px 0;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .site-nav ul.leven-classic-menu li a:hover {
        color: #04b4e0;
      }

      .menu-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
        background: rgba(4, 180, 224, 0.1);
        border-radius: 50%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .menu-toggle i {
        color: #04b4e0;
        font-size: 20px;
      }

      .menu-toggle:hover {
        background: rgba(4, 180, 224, 0.2);
      }

      /* Add overlay when menu is open */
      body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
      }


      /* Prevent horizontal scrolling */
      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
      }

      /* Fix header/footer width */
      .header,
      .site-footer {
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0 15px;
        box-sizing: border-box;
      }

      /* Fix content width */
      .page-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
      }

      /* Ensure all content stays within viewport */
      .container,
      .row {
        max-width: 100%;
        margin: 0;
        padding: 0 15px;
      }

    }

    @media (min-width: 769px) {
      /* Main container */
      .home-content {
        padding: 40px;
      }

      /* Create side-by-side layout */
      .home-content .row.flex-v-align {
        display: flex;
        flex-direction: row;  /* Force horizontal layout */
        align-items: flex-start;  /* Align items to top */
        gap: 60px;  /* Increase gap between photo and content */
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Photo container */
      .col-sm-12.col-md-5.col-lg-5 {
        flex: 0 0 350px;  /* Reduced from 400px */
        margin: 0;
      }

      .home-photo {
        margin: 0;
      }

      .home-photo .hp-inner {
        height: 450px;  /* Reduced from 500px */
        border-radius: 15px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
      }

      /* Text content container */
      .col-sm-12.col-md-7.col-lg-7 {
        flex: 1;  /* Take up remaining space */
        padding: 40px 0;  /* Add vertical padding */
      }

      .home-text {
        text-align: left;
        padding: 0;
      }

      /* Text styles */
      .text-rotation h4 {
        font-size: 18px;
        color: #aaa;
        margin-bottom: 10px;
      }

      .home-text h1 {
        font-size: 48px;
        margin: 15px 0;
        line-height: 1.2;
      }

      .home-text p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
      }

      /* Buttons */
      .home-buttons {
        margin-top: 30px;
        display: flex;
        gap: 15px;
      }

      .home-buttons .btn {
        padding: 12px 30px;
        border-radius: 30px;
      }
    }