
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --nav-height: 72px;
      --accent: #6290FF;
      --text: #1a1a1a;
      --font: 'Source Sans 3', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
            font-family: 'Arial', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

    .page-wrapper {
    max-width: 1600px; /* Maximum width for content */
    margin: 0 auto;
    background-color: #fff;
}

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      z-index: 100;
      transition: background .35s ease;
    }

    header.scrolled {
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; margin-left: 20px; }
    .logo img { 
      height: 75px; 
      width: auto;
      margin-left: 175px; 
      margin-top: 30px;
    }
    .logo-fallback { width: 52px; height: 52px; }
    .logo2 { display: flex; align-items: center; gap: .5rem; text-decoration: none; margin-left: 20px; }
    .logo2 img { 
      height: 120px; 
      width: auto;
      margin-left: -50px; 
      margin-top: 30px;
    }
    .logo2-fallback { width: 52px; height: 52px; }

    nav { display: flex; align-items: center; gap: clamp(.75rem, 2.5vw, 2.5rem); margin-top: 20px; }

    nav a {
      text-decoration: none;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      padding: .25rem 0;
      position: relative;
      transition: color .2s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }

    nav a:hover { color: var(--accent); }
    nav a:hover::after { transform: scaleX(1); }
    header.scrolled nav a { color: var(--text); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
    header.scrolled .hamburger span { background: var(--text); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--nav-height); left: 0; right: 0;
      background: #fff;
      padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
      flex-direction: column; gap: 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,.06);
      z-index: 99;
      transform: translateY(-10px); opacity: 0;
      transition: opacity .3s, transform .3s;
    }
    .mobile-nav.open { opacity: 1; transform: translateY(0); }
    .mobile-nav a { text-decoration: none; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
    .mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); }

    /* ── VIDEO BANNER ── */
    .video-banner {
      position: relative;
      width: 100vw; height: 100vh;
      overflow: hidden;
      background: #b0b0b0;
    }

    .video-banner video {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center center;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .desktop-video { display: none; }
      .mobile-video  { display: block; }
    }
    @media (min-width: 769px) {
      .desktop-video { display: block; }
      .mobile-video  { display: none; }
    }

    .video-banner::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,.25); z-index: 2;
    }

    .scroll-cue {
      position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: #fff; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
      cursor: pointer; background: none; border: none; padding: 0; text-decoration: none;
      animation: cue-fade 2s ease infinite; margin-right: 200px; margin-bottom: 30px;
    }
    .scroll-cue svg { animation: cue-bounce .9s ease infinite alternate; }
    @keyframes cue-bounce { from { transform: translateY(0); } to { transform: translateY(6px); } }
    @keyframes cue-fade { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
/* logo hide function in white BG */
    .logo,
.logo2 {
  transition: opacity 0.3s ease;
}

header.scrolled .logo,
header.scrolled .logo2 {
  opacity: 0;
  pointer-events: none;
}

    /* ═══════════════════════     
       CONTENT SECTIONS
    ═══════════════════════ */

    /* Two-column base */
    .two-col {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 6vw, 6rem);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 7rem);
      align-items: center;
    }

    .col-image { display: flex; justify-content: center; align-items: center; }
    .col-image img { width: 100%; max-width: 380px; height: auto; object-fit: contain; margin-top: 45px; }
.col-image-2 img { width: 100%; max-width: 380px; height: auto; object-fit: contain; margin-top: 45px; }
    .col-copy h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: #222;
      margin-bottom: 1.4rem;
      line-height: 1.2;
    }

    .col-copy p {
      font-size: 18px;
      line-height: 1.5;
      color: #333;
      margin-bottom: 1.1rem;
      margin-left: 0px;
      padding-left: 0px;
    }
    .col-copy p:last-child { margin-bottom: 0; }
    .col-copy p strong { font-weight: 700; }

    .col-three{
      display: flex; justify-content: center; align-items: center;
      margin-left: 100px;
      margin-right: 0px;
      padding-left: 0px;
      padding-right: 0px;
    }
    .col-three-content{
      max-width: 1350px;
      /* margin: 0 auto; */
      /* padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 6vw, 6rem); */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 7rem);
      align-items: center;
    }
    .col-three img{
       width: 600px; 
       /* max-width: 100px;  */
       height: auto; object-fit: contain;
       margin-top: 80px;
    }

    /* image-right variant (About us) */
    .img-right .col-image { order: 2; }
    .img-right .col-copy  { order: 1; width: 100%; max-width: 66650px; }
    /* .img-right .col-copy-2  { order: 1; width: 100%; max-width: 66650px; } */

    /* Thin divider */
    .divider {
      width: calc(100% - clamp(4rem, 12vw, 12rem));
      height: 1px;
      background: #e0e0e0;
      margin: 0 auto;
    }

    /* ── CORE SERVICES ── */
    .services-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
    }

    .services-wrap > h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: #222;
      margin-bottom: 2.8rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem 2rem;
    }

    .svc-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }

    .svc-icon {
      flex-shrink: 0;
      width: 200px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 60px;
    }

    .svc-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .svc-label {
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .055em;
      text-transform: uppercase;
      color: #1a1a1a;
      line-height: 1.35;
    }

    .services-note {
      margin-top: 2.5rem;
      font-size: 18px;
      color: #333;
      text-align: center;
    }

    /* ── CONTACT ── */
    .contact-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 7vw, 6rem);
    }

    .contact-wrap h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      color: #222;
      margin-bottom: 1rem;
    }

    .contact-wrap p {
      font-size: 18px;
      line-height: 1.5;
      color: #333;
      margin-bottom: .5rem;
    }

    .contact-wrap a {
      color: #63AC6A;
      font-weight: 600;
      text-decoration: none;
    }
    .contact-wrap a:hover { text-decoration: underline; }

    /* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 100px 30px;
}

.footer-logo {
    margin-bottom: 10px;
    margin-left: 70px;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h3 {
    /* font-size: 14px; */
    margin-bottom: 20px;
    color: #fff;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    letter-spacing: 1px;
}
.footer-works {
    margin-top: 165px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul a {
    text-decoration: none;
    color:#ffffff;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: #6290FF;
}

.footer-column a,
.footer-column p {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #666;
    font-size: 12px;
}

/* Inner container to control width */
.footer-bottom-inner {
    /* max-width: 1200px;       */
    margin: 0 auto;
    padding: 30px 0px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left & Right text */
.footer-left,
.footer-right {
    margin: 0;
    white-space: nowrap;
}
.footer-icons{
  display: flex;
  justify-content: left;
  font-size: 0px;
  margin-top: 15px;
  gap: 10px;   /* space between icons */
}

/* Footer links */
.footer-right a {
    color: #666;
    text-decoration: none;
}

.footer-right a:hover {
    color: #6290FF;
}
.footer-column h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
    margin-top: -50px;
}

.footer-column h3 a:hover {
    color: #6290FF;
}

/* ============================================================
   MOBILE & RESPONSIVE STYLES — mobile.css
   Import AFTER index.css:  <link rel="stylesheet" href="mobile.css">
   Desktop layout is untouched — all rules here are max-width guards.
   ============================================================ */

/* ── TABLET  (≤ 1024px) ── */
@media (max-width: 1024px) {

  /* Logo positions */
  .logo img  { margin-left: 0; }
  .logo2 img { margin-left: 0; }

  /* Two-col → stacked */
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .img-right .col-image { order: 1; }
  .img-right .col-copy  { order: 2; }

  /* Why-us col-three */
  .col-three-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .col-three {
    margin-left: 0;
    justify-content: center;
  }

  .col-three img {
    width: 100%;
    max-width: 420px;
    margin-top: 2rem;
  }

  /* Services 3-col → 2-col */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .svc-icon {
    width: 140px;
    margin-left: 0;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  footer {
    padding: 50px 40px 30px;
  }
}


/* ── MOBILE  (≤ 768px) ── */
@media (max-width: 768px) {

  /* ── Header ── */
  header {
    padding: 0 ;
    height: 60px;
    margin-left: -15px;
    --nav-height: 60px;
  }

  /* Hide desktop nav links, show hamburger */
  header nav { display: none; }
  .hamburger { display: flex; padding: 15px;}

  /* Logos — only show one compact logo on mobile */
  .logo { display: none; }          /* hide icon-only logo */
  .logo2 img {
    height: 52px;
    margin-left: 0;
    margin-top: 0;
  }

  /* Mobile nav panel */
  .mobile-nav {
    display: flex;
    top: 60px;
  }

  /* ── Hero / Video banner ── */
  .video-banner { height: 100svh; }

  .scroll-cue {
    margin-right: 1rem;
    margin-bottom: 1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* ── Two-column sections ── */
  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1.25rem;
  }

  /* Always image on top, text below */
  .col-image { order: 1 !important; }
  .col-copy  { order: 2 !important; }
  

  .col-image img {
    max-width: 260px;
    margin-top: 0;
  }
 

  .col-copy h2  { font-size: clamp(1.4rem, 5vw, 1.75rem); margin-bottom: 1rem; }
  .col-copy p   { font-size: 16px; }

  /* ── Why Us (col-three) ── */
  .col-three-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0rem 1.25rem;
  }

  .col-three {
    margin-left: 0;
    justify-content: center;
  }

  .col-three img {
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
  }

  /* ── Core Services ── */
  .services-wrap {
    padding: 2.5rem 1.25rem;
  }

  .services-wrap > h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .svc-item {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }

  .svc-icon {
    width: 110px;
    margin-left: 0;
  }

  .svc-label { text-align: center; }

  .services-note {
    font-size: 15px;
    margin-top: 2rem;
  }

  /* ── Contact ── */
  .contact-wrap {
    padding: 0 1.25rem 3rem;
  }

  .contact-wrap h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .contact-wrap p  { font-size: 15px; }

  /* ── Divider ── */
  .divider {
    width: calc(100% - 2.5rem);
  }

  /* ── Footer ── */
  footer {
    padding: 40px 1.25rem 24px;
  }

  .footer-logo {
    margin-left: 0;
    margin-bottom: 24px;
  }

  .footer-logo img { height: 72px; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-works { margin-top: 0; }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 20px 0;
  }

  .footer-left,
  .footer-right { white-space: normal; font-size: 11px; }

  .footer-icons { margin-top: 10px; }
  .col-image-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.col-image-2 img {
  margin: 0 auto;
  display: block;
  max-width: 260px;
  margin-top: 0;
}
  
}


/* ── SMALL MOBILE  (≤ 400px) ── */
@media (max-width: 400px) {

  .logo2 img { height: 70px; }

  .col-image img   { max-width: 270px; margin-top: -30px; }
  .col-three img   { max-width: 400px; margin-top: 0px; margin-bottom: 20px;}
.col-image-2 img {
  max-width: 300px;
  margin: 0 auto;
  display: block;
  margin-top: -100px;
  margin-bottom: -80px;

  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem .75rem;
  }

  .svc-icon { width: 120px; }
  
}