* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    color: #fff;
    background-color: #f8f7f3;
    overflow-x: hidden;
    cursor: default;
  }
  
  /* Prevent text cursor on all text elements - using !important to override any conflicting styles */
  p, h1, h2, h3, h4, h5, h6, span, div, address, blockquote, cite, code, em, i, strong, b, u, mark, small, sub, sup, time, var, textarea, input, label, .address, .typewriter-text, .bottom-text, .gallery-text-split, .service-description, .years-label, .partnership-section p, .footer-new p, .footer-new h3, .footer-new div {
    cursor: default !important;
  }
  
  /* Keep pointer cursor for clickable elements */
  a, button, [role="button"], .clickable, .gallery-img-link, .featured-logo-link, .footer-icon-new, .gallery-back, #modal-close, #modal-prev, #modal-next {
    cursor: pointer !important;
  }
  
  /* Ensure images don't show text cursor */
  img {
    cursor: default !important;
  }
  
  /* Gallery images should be clickable */
  .gallery-img, .gallery-card img, .gallery-img-link img, .featured-logo-link img {
    cursor: pointer !important;
  }
  
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px;
  }
  
  .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    height: 70px;
    min-height: 70px;
  }
  
  .top-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    opacity: 0.9;
    color: #fff;
    padding-left: 40px;
    line-height: 1;
  }
  
  .top-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    opacity: 0.9;
    color: #fff;
    padding-right: 40px;
    line-height: 1;
  }
  
  .top-right a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, text-decoration 0.2s;
    font-weight: bold;
  }
  
  .main-nav {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .main-nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, text-decoration 0.2s;
    font-weight: bold;
  }
  
  .main-nav a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  .lang-option {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.85;
    transition: opacity 0.2s;
  }
  
  .lang-option:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  .logo {
    width: 520px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
  }
  
  .bottom-text {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding-bottom: 30px;
  }
  
  .footer {
    width: 100vw;
    background: #111;
    color: #fff;
    padding: 60px 0 40px 0;
    position: static;
    z-index: 10;
    margin-top: 0;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px;
  }
  
  .footer-contact {
    flex: 1;
    max-width: 400px;
  }
  
  .footer-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }
  
  .footer-contact .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1rem;
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
  }
  
  .footer-contact .contact-info-list a {
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
  }
  
  .footer-contact .contact-info-list a:hover {
    color: #c7323a;
  }
  
  .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  
  .footer-icon {
    color: #fff;
    font-size: 1.7rem;
    transition: color 0.2s;
  }
  
  .footer-icon:hover {
    color: #c7323a;
  }
  
  .footer-text {
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 900px) {
    .main-nav {
      gap: 18px;
    }
    .top-left, .top-right {
      padding-left: 10px;
      padding-right: 10px;
    }
    .footer-content {
      gap: 10px;
    }
    .footer-socials {
      gap: 16px;
    }
  }
  
  @media (max-width: 600px) {
    .logo {
      width: 120px;
      height: 50px;
    }
    .top-bar {
      font-size: 13px;
      padding: 0 10px;
    }
    .main-nav {
      gap: 8px;
    }
    .top-left, .top-right {
      padding-left: 5px;
      padding-right: 5px;
    }
    .footer-text {
      font-size: 0.8rem;
    }
  }
  
  .contact-hero-bg {
    background: url('../Images/placeholder.jpg') center center/cover no-repeat;
    width: 100%;
    height: 400px;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-hero-bg .top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  
  .contact-info-overlay {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 32px 32px 24px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    z-index: 2;
  }
  
  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .contact-info-list a {
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
  }
  
  .contact-info-list a:hover {
    color: #c7323a;
  }
  
  .contact-socials {
    display: flex;
    gap: 18px;
    margin: 8px 0 0 0;
    justify-content: center;
  }
  
  .contact-info-overlay .footer-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s;
  }
  
  .contact-info-overlay .footer-icon:hover {
    color: #c7323a;
  }
  
  @media (max-width: 700px) {
    .contact-hero-bg {
      height: 200px;
      min-height: 120px;
    }
    .contact-info-overlay {
      padding: 14px 4vw 10px 4vw;
      min-width: 0;
      font-size: 1rem;
    }
  }
  
  /* --- Split Gallery Layout --- */
  .gallery-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    min-height: 480px;
    position: relative;
    background: rgba(201, 173, 143, 0.32);
    border-radius: 0;
    box-shadow: none;
  }
  .gallery-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .gallery-img-col, .gallery-text-col {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .gallery-img-link {
    width: 100%;
    max-width: 700px;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .gallery-img-link:hover .gallery-img {
    transform: scale(1.045);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    z-index: 2;
  }
  .gallery-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .gallery-text-col {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-text-split {
    text-align: left;
    max-width: 420px;
    margin: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .gallery-item:nth-child(even) .gallery-text-split {
    text-align: right;
    align-items: flex-end;
  }
  .gallery-text-split .address {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.1;
  }
  .gallery-text-split div:last-child {
    font-size: 1.25rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 0;
  }
  @media (max-width: 900px) {
    .gallery-item {
      flex-direction: column !important;
      min-height: 0;
      margin-bottom: 40px;
    }
    .gallery-img-col, .gallery-text-col {
      width: 100%;
      min-width: 0;
      max-width: 100vw;
    }
    .gallery-img-link, .gallery-img {
      width: 100vw;
      max-width: 100vw;
      height: 220px;
    }
    .gallery-text-col {
      min-height: 0;
      padding: 18px 0;
    }
    .gallery-text-split {
      margin: 0 10vw;
      max-width: 90vw;
      text-align: center !important;
      align-items: center !important;
    }
  }
  
  .section-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    width: 100vw;
    margin: 0 0 48px 0;
    height: 0;
    background: none;
    display: block;
  }
  
  .featured-logos-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 36px 0 32px 0;
  }
  .featured-logos-static a {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
  }
  .featured-logos-static img {
    height: 48px;
    width: auto;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .featured-logos-static a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .featured-logos-static a:hover img {
    transform: scale(1.15);
    filter: none;
    opacity: 1;
  }
  @media (max-width: 700px) {
    .featured-logos-static {
      gap: 24px;
      flex-wrap: wrap;
      padding: 18px 0 12px 0;
    }
    .featured-logos-static img {
      height: 32px;
    }
  }

  .gallery-section {
    position: relative;
    background: #f8f7f3;
    overflow: visible;
  }
  
  .gallery-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -120px;
    width: 600px;
    height: 800px;
    background: url('wood2.jpg') center center/cover no-repeat;
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
    filter: blur(0.5px) brightness(1.05);
    border-radius: 30px;
  }
  
  .gallery-item, .gallery-img-col, .gallery-text-col {
    position: relative;
    z-index: 1;
  }
  
  .typewriter-text.typing::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
  }
  @keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* =========================
     General Styles & Typography
     ========================= */
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', Arial, Helvetica, sans-serif; background: #f8f7f3; }
  .section { font-family: 'Montserrat', Arial, Helvetica, sans-serif; background: #f8f7f3; }

  /* ===== Featured In Section ===== */
  .featured-in-section { background: #111; color: #fff; padding: 24px 0 18px 0; position: relative; overflow: hidden; }
  .featured-in-title { font-size: 1.7rem; font-weight: 700; text-align: center; margin-bottom: 32px; letter-spacing: 2px; }
  .featured-logos-scroll {
    display: flex; align-items: center; gap: 60px; animation: scroll-logos 18s linear infinite;
    will-change: transform; user-select: none; padding: 0 0 0 10vw;
  }
  .featured-logos-scroll:hover { animation-play-state: paused; }
  .featured-logos-scroll a { display: inline-block; }
  .featured-logos-scroll img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity 0.2s; }
  .featured-logos-scroll img:hover { opacity: 1; }
  @keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===== About & Contact Section ===== */
  .about-section, .contact-section { background: #f8f7f3; color: #111; padding: 100px 0 80px 0; }
  .about-section h2, .contact-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; text-align: center; letter-spacing: 2px; }
  .about-section p { max-width: 700px; margin: 0 auto 40px auto; font-size: 1.2rem; text-align: center; font-weight: 400; }

  /* ===== Divider ===== */
  .divider { width: 100vw; height: 60px; overflow: visible; position: relative; margin: 0; z-index: 2; }
  .divider svg { display: block; width: 100vw; height: 60px; position: absolute; left: 0; top: -20px; z-index: 2; }

  /* ===== Projects Section ===== */
  .projects-section { background: #f8f7f3; color: #111; padding: 100px 0 80px 0; }
  .projects-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 32px; text-align: center; letter-spacing: 2px; }
  .swiper { width: 90vw; max-width: 900px; margin: 0 auto; }
  .swiper-slide { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .project-img-link { display: block; position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.13); transition: box-shadow 0.2s; }
  .project-img-link:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
  .project-img { width: 100%; max-width: 600px; height: 340px; object-fit: cover; display: block; }
  .project-info { color: #111; background: none; text-align: center; margin-top: 24px; font-size: 1.1rem; font-weight: 400; }
  .project-info .address { font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
  .swiper-button-next, .swiper-button-prev {
    color: #c7323a !important; border-radius: 50%; background: #fff; border: 1.5px solid #c7323a; width: 38px; height: 38px; top: 50%; transform: translateY(-50%); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  .swiper-button-next:after, .swiper-button-prev:after { font-size: 22px; font-weight: 700; }
  .swiper-pagination-bullet { background: #c7323a !important; }
  @media (max-width: 700px) { .project-img { height: 180px; } }

  /* ===== Gallery Section ===== */
  .gallery-section { background: #f8f7f3; padding: 100px 0 80px 0; position: relative; }
  .gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    min-height: 480px;
    position: relative;
  }
  .gallery-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .gallery-item .gallery-img-link {
    transition: margin 0.2s;
  }
  .gallery-item:nth-child(odd) .gallery-img-link {
    margin-left: -6vw;
  }
  .gallery-item:nth-child(even) .gallery-img-link {
    margin-right: -6vw;
  }
  .gallery-img-link {
    display: block;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    min-width: 420px;
    max-width: 820px;
    width: 58vw;
    position: relative;
    z-index: 1;
  }
  .gallery-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }
  .gallery-text { max-width: 400px; font-size: 1.1rem; font-weight: 400; color: #111; text-align: center; background: #fff; border-radius: 12px; padding: 32px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); position: relative; z-index: 1; }
  .gallery-text .address { font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
  @media (max-width: 900px) {
    .gallery-item {
      flex-direction: column !important;
      gap: 18px;
      min-height: 0;
    }
    .gallery-img-link, .gallery-img {
      width: 95vw;
      min-width: 0;
      max-width: 98vw;
      height: 220px;
    }
    .gallery-item:nth-child(odd) .gallery-img-link,
    .gallery-item:nth-child(even) .gallery-img-link {
      margin-left: 0;
      margin-right: 0;
    }
  }

  /* ===== Contact Section ===== */
  .contact-section { background: #f8f7f3; color: #111; padding: 100px 0 80px 0; }
  .contact-info-list { display: flex; flex-direction: column; gap: 16px; font-size: 1.1rem; align-items: center; font-weight: 400; }
  .contact-info-list a { color: #c7323a; text-decoration: underline; word-break: break-all; }
  .contact-info-list a:hover { color: #111; }
  .contact-socials { display: flex; gap: 18px; margin: 8px 0 0 0; justify-content: center; }
  .contact-section h2 { margin-bottom: 32px; }

  /* ===== Back to Top Button ===== */
  .back-to-top-btn { display: block; margin: 40px auto 0 auto; padding: 18px 60px; border: 2px solid #fff; border-radius: 40px; background: transparent; color: #fff; font-size: 1.2rem; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; letter-spacing: 6px; cursor: pointer; transition: box-shadow 0.2s, color 0.2s, border-color 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
  .back-to-top-btn:hover { color: #111; background: #fff; border-color: #fff; }

  /* ===== Footer Section ===== */
  .footer { width: 100vw; background: #111; color: #fff; padding: 32px 0 18px 0; position: static; z-index: 10; margin-top: 0; }
  .footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .footer-socials { display: flex; gap: 28px; margin-bottom: 10px; }
  .footer-icon { color: #fff; font-size: 1.7rem; transition: color 0.2s; }
  .footer-icon:hover { color: #c7323a; }
  .footer-text { font-size: 1rem; letter-spacing: 1.5px; text-align: center; color: #fff; }
  .footer-new {
    width: 100vw;
    background: #f8f7f3;
    color: #111;
    padding: 48px 0 18px 0;
    position: static;
    z-index: 10;
    margin-top: 0;
    border-top: 1.5px solid #eee;
  }
  .footer-new-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px;
  }
  .footer-col {
    flex: 1;
    min-width: 220px;
    margin-bottom: 18px;
  }
  .about-col h3, .contact-col h3, .social-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }
  .about-col p {
    font-size: 1rem;
    color: #333;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin: 0;
  }
  .contact-col div {
    font-size: 1rem;
    color: #111;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .contact-col a {
    color: #c7323a;
    text-decoration: underline;
    word-break: break-all;
  }
  .contact-col a:hover {
    color: #111;
  }
  .footer-socials-new {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
  }
  .footer-icon-new {
    color: #111;
    font-size: 1.7rem;
    transition: color 0.2s;
    text-decoration: none;
  }
  .footer-icon-new:hover {
    color: #c7323a;
  }
  .footer-new-bottom {
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-align: center;
    color: #888;
    margin-top: 18px;
  }
  @media (max-width: 900px) {
    .footer-new-content {
      flex-direction: column;
      gap: 18px;
      padding: 0 10px;
    }
    .footer-col {
      min-width: 0;
    }
  }

  /* ===== Back to Top Link ===== */
  .back-to-top-link {
    position: absolute;
    right: 3vw;
    bottom: 18px;
    color: #c7323a;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 20;
    background: rgba(255,255,255,0.95);
    padding: 8px 18px;
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: color 0.2s, background 0.2s;
  }
  .back-to-top-link:hover {
    color: #111;
    background: #ffeaea;
  }
  
  .featured-logo-link {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .featured-logo-link img {
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
  }
  
  .featured-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .featured-logo-link:hover img {
    transform: scale(1.15);
    filter: none;
    opacity: 1;
  }
  
  /* ===== Hero Animation Styles ===== */
  .logo, .bottom-text {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1);
  }

  .logo.fade-in {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
  }

  .bottom-text.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.8s cubic-bezier(0.4,0,0.2,1), transform 1.8s cubic-bezier(0.4,0,0.2,1);
  }

  .bottom-text {
    transform: translateY(40px);
    transition: opacity 1.8s cubic-bezier(0.4,0,0.2,1), transform 1.8s cubic-bezier(0.4,0,0.2,1);
  }
  
  /* ===== Services Section Styles ===== */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 80px auto;
    padding: 0 40px;
  }
  
  .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d1bfa4, #c9ad8f, #bda079);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d1bfa4, #c9ad8f, #bda079);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .service-icon i {
    font-size: 2rem;
    color: #fff;
  }
  
  .service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
  }
  
  .service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
  }
  
  .service-features {
    margin-bottom: 32px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
  }
  
  .feature-item i {
    color: #c7323a;
    font-size: 1rem;
  }
  
  .service-stats {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
  }
  
  .stat {
    text-align: center;
    flex: 1;
  }
  
  .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #c7323a;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
  }
  
  .partnership-section {
    background: linear-gradient(135deg, rgba(209, 191, 164, 0.1), rgba(201, 173, 143, 0.1), rgba(189, 160, 121, 0.1));
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .partnership-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
  }
  
  .partnership-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d1bfa4, #c9ad8f, #bda079);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    position: relative;
    z-index: 1;
  }
  
  .partnership-icon i {
    font-size: 2.5rem;
    color: #fff;
  }
  
  .partnership-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    z-index: 1;
  }
  
  .partnership-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  
  .partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    transition: transform 0.2s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-2px);
  }
  
  .benefit-item i {
    font-size: 1.2rem;
    color: #bda079;
    width: 24px;
  }
  
  .benefit-item span {
    font-weight: 600;
    color: #333;
  }

    /* Years Experience Highlight */
    .years-experience-highlight {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 40px 0 60px 0;
    }
    .years-gradient {
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(90deg, #d1bfa4, #c9ad8f, #bda079);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 8px;
      letter-spacing: 2px;
    }
    .years-label {
      font-size: 1.2rem;
      color: #bda079;
      font-weight: 700;
      letter-spacing: 1.5px;
    }
  
  /* Responsive Design for Services */
  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 0 20px;
      margin: 40px auto 60px auto;
    }
    
    .service-card {
      padding: 30px 24px;
    }
    
    .partnership-section {
      padding: 36px 24px;
      margin: 0 20px;
    }
    
    .partnership-benefits {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
  
  @media (max-width: 600px) {
    .service-card h3 {
      font-size: 1.5rem;
    }
    
    .service-stats {
      flex-direction: column;
      gap: 16px;
    }
    
    .partnership-section h3 {
      font-size: 1.4rem;
    }
  }
  
  .service-card,
  .partnership-section {
    border-radius: 0;
  }
  
