
    body {
      padding-top: 70px; /* spacing for fixed header */
      font-family: 'Battambang', sans-serif;
      font-size: 16px;
      color: #696969;
      font-weight:600;
      line-height:30px;
      letter-spacing: 0.2px;
      width: 100%; 
      overflow-x: hidden
    }
    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
      line-height: 1.2; 
      font-weight: 800; 
      font-family: 'Battambang', sans-serif; 
      color: #404854;
    }
    h2{
      font-size: 32px
    }
    .section-title .title{
      text-align: center;
    }

    ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .badge {
    background: green;
    color: #fff!important;

}
/* Background Gradient */
.gradient-bg1 {
  background: linear-gradient(135deg, #007bff, #9b1fe9);
  color: #fff;
  /*overflow: hidden;*/
}
img {
    max-width: 100%;
    height: auto;
}
/* Layout Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-banner{
  height: 100%;
  padding: 80px 0;
}
/* Flex Banner Layout */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Image */
.banner-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.banner-left img {
  max-width: 100%;
  height: auto;
  animation: moveX 3s ease-in-out infinite alternate;
}

/* Right Text */
.banner-right {
  flex: 1;
  min-width: 300px;
  color: #fff;
  padding: 20px;
  text-align: left;
      background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.banner-right h2 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.banner-right p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}
.btn-primary {
  display: inline-block;
  background: #00b4ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #0092d1;
}

/* Simple Motion */
@keyframes moveX {
  from { transform: translateX(0); }
  to { transform: translateX(50px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .banner-right {
    text-align: center;
    margin-top: 40px;
  }
  .banner-right h2 {
    font-size: 36px;
  }
  .banner-right p {
    font-size: 16px;
  }
}

/* About */
#why-choose-us h2{
  color: #fff
}

#why-choose-us p{
  color: #fff
}
.hero{
display:flex;
gap:var(--gap);
align-items:center;
background:linear-gradient(90deg, rgba(0,119,182,0.06), rgba(0,119,182,0.02));
padding:1rem;
border-radius:var(--radius);
margin-bottom:1rem;
}


.hero .text{
flex:1 1 320px;
}
.kicker{
display:inline-block;
font-size:0.85rem;
padding:0.25rem 0.5rem;
background:rgba(0,119,182,0.12);
color:var(--accent);
border-radius:999px;
margin-bottom:0.5rem;
font-weight:600;
}
.hero .art{
width:120px;flex:0 0 120px;display:flex;align-items:center;justify-content:center
}
.card-grid{
margin-top:1rem;
display:grid;
grid-template-columns:1fr;
gap:var(--gap);
}


#why-choose-us .card{
background:var(--card);
border-radius:12px;
padding:1rem;
box-shadow:0 6px 18px rgba(12,23,36,0.06);
display:flex;gap:0.75rem;align-items:flex-start;
}


.lead-text {
text-align: center;
max-width: 700px;
margin: 0 auto 2rem;
color: var(--muted);
font-size: 1.05rem;
}


#why-choose-us .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}


#why-choose-us .card {
background: #fff;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
padding: 1.5rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}


#why-choose-us .card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


#why-choose-us .card h3 {
color: #f023b6;
margin-bottom: 0.5rem;
font-size: 1.2rem;
}


#why-choose-us .card p {
color: var(--muted);
font-size: 0.95rem;
}

.services-section {

}
/** SERVICE */
/* Container */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;          /* spacing between cards */
  margin-top: 3%;
  /*justify-content: space-between;*/
}

/* Each card takes 25% on large screens */
.service-card {
  width: 31.33%;       /* 4 cards per row (100% - gaps) */
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 10px 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* ================================ */
/*  TABLET Responsive (2 cards)     */
/* ================================ */
@media (max-width: 992px) {
  .service-card {
    width: 48%;     /* 2 per row */
  }
}

/* ================================ */
/*  MOBILE Responsive (1 card)      */
/* ================================ */
@media (max-width: 600px) {
  .service-card {
    width: 100%;    /* 1 per row */
  }
}



/* Card */
/*.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}*/
.service-card {
  border:2px solid rgba(255, 255, 255, 0.3);
  /*background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 4%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;*/
}

.service-card:hover {

  border:2px solid;
  transition: all 0.3s ease;
  transform: translateY(-3%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
/*Dark Mode start */
@media (prefers-color-scheme: dark) {
  .service-grid {
    background: #0f0f0f;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #eee;
  }

  .service-card h3 {
    color: #fff;
  }

  .service-card p {
    color: #d0d0d0;
  }

  .service-card img {
    filter: brightness(0.9);
  }
}
/* Dark Mode End */

/* Logo */
.service-card img {
  width: 120px;
  height: auto;
  margin: 0 auto 15px;
  object-fit: contain;
}

.service-card img {
  width: 40%;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.15) translateY(-5%);
  filter: brightness(1.1);
}

/* Title */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  min-height: 60px;
}

/* Button */
.service-card a.btn {
  display: inline-block;
  margin-top: 15px;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .service-card img {
    width: 110px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .service-card {
    padding: 20px 15px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 14px;
  }
  .service-grid {
    gap: 20px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .service-card img {
    width: 90px;
  }
  .service-card h3 {
    font-size: 16px;
  }
}


.btn-modern {
  /*padding: 12px 28px;*/
  /*background: linear-gradient(135deg, #ff4d8d, #5f6bff);*/
  color: #f023b6;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-modern:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  /*box-shadow: 0 10px 25px rgba(0,0,0,0.15);*/
  color: #03A9F5;
}

.btn-outline {
  padding: 10px 26px;
  border: 2px solid #ff4d8d;
  border-radius: 50px;
  background: transparent;
  color: #ff4d8d;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #ff4d8d;
  color: #fff;
  transform: translateY(-2px);
}

.btn-glow {
  padding: 12px 30px;
  background: #ff4d8d;
  color: white;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 15px #ff4d8d, 0 0 30px #ff4d8d;
  transform: translateY(-3px);
}

.btn-corporate {
  padding: 12px 28px;
  background: #007bff;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-corporate:hover {
  background: #0056c7;
  transform: translateY(-2px);
}

/* SERVICE */
.counts-section {
  text-align: center;
  border-radius: 0;
}

.counts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
}

.count-box {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  /* Responsive width */
  flex: 1 1 23.4%;   /* approx 4 per row on desktop */
  max-width: 23.4%;
  min-width: 200px;
}

.count-box h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.count-box p {
  color: var(--muted);
  font-weight: 500;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablet (3 per row) */
@media (max-width: 992px) {
  .count-box {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

/* Large Mobile (2 per row) */
@media (max-width: 768px) {
  .count-box {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Small Mobile (1 per row) */
@media (max-width: 480px) {
  .count-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Count section End */
.applications-section {
  
  
}

.app-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.app-card .icon {
  font-size: 38px;
  color: #0077b6;
  margin-bottom: 12px;
}

.app-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.app-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.app-card ul li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 18px;
}

.app-card ul li::before {
  content: "\f00c";    
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .app-card {
    text-align: center;
  }
  .app-card ul li {
    padding-left: 0;
  }
  .app-card ul li::before {
    display: none;
  }
}
/* Service detail */
.inner-services-section .service-card {
    padding: 10px;
}

.inner-services-section .service-card h3 {
    margin: 15px 0;
    text-align: center;
}

.inner-services-section .service-card p {
    text-align: justify;
}

   .specs-card {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

      overflow: hidden;
      transition: all 0.3s ease;
    }

    .specs-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .specs-header {
      background: linear-gradient(90deg, #00b09b, #96c93d);
      color: #fff;
      padding: 20px 30px;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }

    .specs-table tr {
      border-bottom: 1px solid #eee;
    }

    .specs-table td {
      padding: 18px 25px;
      font-size: 16px;
      color: #333;
    }

    .specs-table td:first-child {
      background: #f3f9ed;
      font-weight: 600;
      color: #2d572c;
      width: 35%;
      border-right: 3px solid #96c93d;
    }

    .highlight {
      background: #eaffea;
      color: #2d572c;
    }

    @media (max-width: 768px) {
      .specs-table td {
        display: block;
        width: 100%;
        border: none;
        padding: 12px 20px;
      }
      .specs-table tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 10px;
        background: #f9f9f9;
      }
      .specs-table td:first-child {
        background: #96c93d;
        color: #fff;
        border: none;
        border-radius: 10px 10px 0 0;
      }
    }

.sec-title .title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.sec-title .subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}


    .cri-flat-cable-sizes {
  /*background: linear-gradient(135deg, #f8f9fa, #e9f5ec);*/
  padding: 50px 20px;
  text-align: center;
  
}

.cri-flat-cable-sizes h2{
  color: #fff
}

.cri-flat-cable-sizes p{
  color: #fff
}
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.size-box {
  background: #fff;
  color: #f033b5;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.size-box:hover {
/*  background: #f033b5;
  transform: scale(1.05);*/
}

#clients img{
  width: 100%;
  height: 100px;
  object-fit: contain;
}

#clients .service-card h3{
  margin: 15px 0 0 0;
}

.fade-3d-gallery .swiper-slide {
    background:#237afe;
  padding:0 20px;
  border-radius: 10px;
}