@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*{margin:0;padding:0;box-sizing:border-box;}

:root{
  --green:#38d430;
  --green2:#20b82f;
  --blue:#1e6fff;
  --dark:#031633;
  --text:#20334d;
  --muted:#5d6b82;
  --line:#e7edf5;
  --bg:#f7f9fc;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}

.ce-wrap{
  width:min(1720px,96%);
  margin:auto;
}

/* HEADER - CONTACTUS STANDARD */

.ce-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #e8edf4;
}

.ce-nav{
  height:95px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.ce-logo img{
  height:72px;
  width:auto;
  object-fit:contain;
}

.ce-nav nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.ce-nav nav a{
  font-size:14px;
  font-weight:800;
  color:#061b38;
  padding:36px 0;
  position:relative;
}

.ce-nav nav a.active,
.ce-nav nav a:hover{
  color:var(--green2);
}

.ce-nav nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:var(--green2);
}

.ce-quote{
  min-width:220px;
  height:58px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#16bf31,#5eff49);
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 10px 28px rgba(56,212,48,.25);
  white-space:nowrap;
}

.mobile-menu-btn{
  display:none;
  width:58px;
  height:58px;
  border-radius:16px;
  border:1px solid #dbe6f1;
  background:#fff;
  font-size:28px;
  color:#062041;
  cursor:pointer;
  margin-left:auto;
}

/* HERO */

.industries-hero{
  background:#fff;
  padding:72px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns:.95fr 1.15fr;
  gap:64px;
  align-items:center;
}

.hero-copy span,
.section-head span,
.value-title span,
.capabilities-list span{
  color:var(--green2);
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}

.hero-copy h1{
  margin-top:18px;
  font-size:76px;
  line-height:1;
  letter-spacing:-3px;
  font-weight:900;
  color:#041935;
}

.hero-copy h1 em{
  color:var(--green2);
  font-style:normal;
}

.hero-copy p{
  margin-top:30px;
  max-width:650px;
  color:#30455f;
  font-size:21px;
  line-height:1.8;
}

.hero-points{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.hero-points div{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.hero-points i{
  width:48px;
  height:48px;
  min-width:48px;
  border-radius:14px;
  background:#effbef;
  color:var(--green2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  font-size:23px;
}

.hero-points strong{
  display:block;
  font-size:15px;
  font-weight:900;
}

.hero-points small{
  display:block;
  margin-top:6px;
  color:#5d6b82;
  font-size:13px;
  line-height:1.5;
}

.hero-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center;
  border-radius:0;
}

/* MAIN */

.industry-main{
  padding:70px 0 40px;
  background:#fff;
}

.section-head{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
  align-items:start;
  margin-bottom:46px;
}

.section-head h2,
.value-title h2,
.capabilities-list h2{
  margin-top:16px;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-1.8px;
  font-weight:900;
}

.section-head h2 em,
.value-title h2 em,
.capabilities-list h2 em{
  color:var(--green2);
  font-style:normal;
}

.section-head p{
  color:#53627b;
  font-size:18px;
  line-height:1.85;
}

.industry-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.industry-card{
  padding:26px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 34px rgba(7,26,51,.045);
  transition:.3s;
}

.industry-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(7,26,51,.08);
}

.card-title{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:72px;
}

.card-title i{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:15px;
  background:#effbef;
  color:var(--green2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-style:normal;
}

.card-title h3{
  font-size:25px;
  line-height:1.15;
  font-weight:900;
}

.industry-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  margin-top:22px;
}

.industry-card p{
  margin-top:20px;
  color:#52627a;
  font-size:16px;
  line-height:1.75;
}

.industry-card ul{
  margin-top:18px;
  padding-left:0;
  list-style:none;
}

.industry-card li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
  color:#20334d;
  font-size:15px;
}

.industry-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green2);
}

.industry-card a{
  margin-top:24px;
  display:inline-flex;
  color:var(--green2);
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

/* STATS */

.industry-stats{
  padding:50px 0 70px;
  background:#fff;
}

.stats-panel{
  padding:34px 44px;
  border-radius:24px;
  background:#021833;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  color:#fff;
}

.stats-panel div{
  display:flex;
  align-items:center;
  gap:22px;
  border-right:1px solid rgba(255,255,255,.15);
}

.stats-panel div:last-child{border-right:0;}

.stats-panel i{
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(56,212,48,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-size:32px;
  font-style:normal;
}

.stats-panel strong{
  display:block;
  font-size:46px;
  line-height:1;
  color:#fff;
  font-weight:900;
}

.stats-panel span{
  display:block;
  margin-top:6px;
  color:#d9e7ff;
  font-size:16px;
  line-height:1.35;
}

/* VALUE */

.value-section{
  padding:70px 0;
  background:linear-gradient(180deg,#f1fff2 0%,#f9fff9 100%);
}

.value-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(5,1fr);
  gap:24px;
  align-items:start;
}

.value-item{
  text-align:center;
  padding:18px;
  border-left:1px solid #d4ead6;
}

.value-item i{
  display:block;
  color:var(--green2);
  font-size:42px;
  font-style:normal;
  margin-bottom:18px;
}

.value-item h3{
  font-size:18px;
  font-weight:900;
}

.value-item p{
  margin-top:12px;
  color:#5d6b82;
  font-size:14px;
  line-height:1.65;
}

/* CAPABILITIES */

.capabilities-section{
  padding:75px 0;
  background:#fff;
}

.capabilities-grid{
  display:grid;
  grid-template-columns:360px 1fr 420px;
  gap:50px;
  align-items:center;
}

.capabilities-list a{
  height:58px;
  margin-top:14px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:15px;
  font-weight:900;
  box-shadow:0 8px 24px rgba(7,26,51,.035);
}

.capabilities-list a i{
  color:var(--green2);
  margin-right:10px;
  font-style:normal;
}

.capabilities-list a b{
  color:#061b38;
}

.capabilities-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:22px;
}

.capabilities-copy p{
  color:#30455f;
  font-size:18px;
  line-height:1.8;
}

.capabilities-copy ul{
  margin-top:24px;
  list-style:none;
}

.capabilities-copy li{
  position:relative;
  padding-left:30px;
  margin-bottom:14px;
  color:#20334d;
  font-size:16px;
}

.capabilities-copy li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--green2);
  font-weight:900;
}

.capabilities-copy a{
  margin-top:22px;
  min-width:230px;
  height:56px;
  border-radius:14px;
  background:linear-gradient(135deg,#16bf31,#5eff49);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  text-transform:uppercase;
}

/* CTA */

.industries-cta{
  padding:0 0 70px;
  background:#fff;
}

.cta-inner{
  padding:34px 44px;
  border-radius:22px;
  background:#021833;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta-inner div{
  display:flex;
  align-items:center;
  gap:24px;
}

.cta-inner i{
  width:68px;
  height:68px;
  min-width:68px;
  border-radius:50%;
  background:rgba(56,212,48,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  color:var(--green);
  font-size:32px;
}

.cta-inner h2{
  font-size:30px;
  font-weight:900;
}

.cta-inner p{
  margin-top:8px;
  color:#d9e7ff;
  font-size:16px;
}

.cta-inner a{
  min-width:220px;
  height:56px;
  border-radius:14px;
  background:linear-gradient(135deg,#16bf31,#5eff49);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:1300px){
  .ce-nav nav{gap:20px;}
  .ce-nav nav a{font-size:13px;}
  .industry-card-grid{grid-template-columns:repeat(2,1fr);}
  .value-grid{grid-template-columns:repeat(3,1fr);}
  .capabilities-grid{grid-template-columns:1fr;}
}

@media(max-width:900px){

  .ce-wrap{width:94%;}

  .ce-nav{
    height:92px;
    gap:14px;
  }

  .ce-logo img{
    height:84px;
  }

  .ce-quote{
    min-width:150px;
    height:52px;
    font-size:12px;
    padding:0 16px;
  }

  .mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    font-size:24px;
    order:3;
  }

  .ce-nav nav{
    position:absolute;
    top:96px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    gap:0;
    border-bottom:1px solid #e8edf4;
    display:none;
  }

  .ce-nav nav.open{
    display:flex;
  }

  .ce-nav nav a{
    width:100%;
    padding:18px 0;
  }

  .hero-grid,
  .section-head,
  .capabilities-grid{
    grid-template-columns:1fr;
  }

  .industries-hero{
    padding:50px 0;
  }

  .hero-copy h1{
    font-size:50px;
    letter-spacing:-2px;
  }

  .hero-copy p{
    font-size:18px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-image img{
    height:360px;
  }

  .section-head h2,
  .value-title h2,
  .capabilities-list h2{
    font-size:42px;
  }

  .industry-card-grid,
  .stats-panel,
  .value-grid{
    grid-template-columns:1fr;
  }

  .stats-panel div,
  .value-item{
    border-right:0;
    border-left:0;
  }

  .cta-inner,
  .cta-inner div{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-inner a{
    width:100%;
  }
}

/* ========================================
   INDUSTRIES FULL HERO
======================================== */

.industries-hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  display:flex;
  align-items:center;

  background:
  linear-gradient(
    90deg,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.88) 28%,
    rgba(255,255,255,.35) 58%,
    rgba(255,255,255,.05) 100%
  ),
  url('../images/13.webp') center center/cover no-repeat;
}

.industries-hero .ce-wrap{
  position:relative;
  z-index:2;
  width:min(1700px,94%);
}

.hero-grid{
  width:100%;
  min-height:760px;

  display:flex;
  align-items:center;
}

.hero-copy{
  width:760px;
  padding:90px 0;
}

/* MINI TITLE */

.hero-mini{
  color:var(--green2);
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}

/* MAIN TITLE */

.hero-copy h1{
  margin-top:18px;
  font-size:88px;
  line-height:.95;
  font-weight:900;
  letter-spacing:-4px;
  color:#041935;
}

.hero-copy h1 span{
  display:block;
  color:var(--green2);
}

/* DESCRIPTION */

.hero-copy p{
  margin-top:34px;
  max-width:760px;

  color:#31465f;
  font-size:24px;
  line-height:1.75;
  font-weight:500;
}

/* 3 FEATURE BOXES */

.hero-points{
  margin-top:48px;

  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.hero-points .point-box{
  width:220px;

  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,.7);

  border-radius:24px;

  padding:24px 22px;

  box-shadow:
  0 12px 40px rgba(6,24,45,.08);
}

.point-icon{
  width:54px;
  height:54px;
  border-radius:16px;

  background:#effbef;
  color:var(--green2);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
}

.point-box strong{
  display:block;

  margin-top:18px;

  color:#071b38;

  font-size:20px;
  line-height:1.3;
  font-weight:900;
}

.point-box small{
  display:block;

  margin-top:12px;

  color:#5e6f84;

  font-size:15px;
  line-height:1.8;
  font-weight:500;
}

/* IMAGE KAPAT */

.hero-image{
  display:none !important;
}

/* MOBILE */

@media(max-width:900px){

  .industries-hero{
    min-height:auto;

    background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.82) 45%,
      rgba(255,255,255,.35) 100%
    ),
    url('../images/13.webp') center center/cover no-repeat;
  }

  .hero-grid{
    min-height:auto;
  }

  .hero-copy{
    width:100%;
    padding:70px 0;
  }

  .hero-copy h1{
    font-size:56px;
    line-height:1;
    letter-spacing:-2px;
  }

  .hero-copy p{
    font-size:18px;
    line-height:1.8;
  }

  .hero-points{
    flex-direction:column;
  }

  .hero-points .point-box{
    width:100%;
  }
}

/* INDUSTRIES TITLE CENTER FIX */

.industries-heading{
  width:100% !important;
  text-align:center !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  margin:0 auto 70px !important;
}

.industries-heading .section-mini{
  text-align:center !important;
  margin-bottom:14px !important;
}

.industries-heading h2{
  text-align:center !important;
  margin:0 auto !important;
}

.industries-heading h2 span{
  display:block !important;
}