/* =====================================================
HT & LT ELECTRICAL HERO + CHALLENGES SECTION
===================================================== */

:root{
    --primary:#00AEEF;
    --dark:#071B2A;
    --light:#ffffff;
    --text:#d7dee5;
}

.htlt-service-intro{
    font-family:'Poppins',sans-serif;
    overflow:hidden;
}

/* ================= HERO ================= */

.htlt-hero{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
    radial-gradient(circle at top right, rgba(0,174,239,.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.04), transparent 25%),
    linear-gradient(135deg,#071B2A,#0a2940);
}

/* GLOW EFFECT */

.htlt-hero:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(0,174,239,.06);
    border-radius:50%;
    top:-180px;
    right:-150px;
    filter:blur(10px);
}

.htlt-hero:after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
}

.htlt-hero .container{
    position:relative;
    z-index:2;
    max-width:1280px;
}

/* ================= LEFT SIDE ================= */

.hero-badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:60px;
    background:rgba(0,174,239,.10);
    border:1px solid rgba(0,174,239,.25);
    color:#d7b856;
    font-size:14px;
    font-weight:600;
    margin-bottom:30px;
}

.hero-title{
    max-width:650px;
    font-size:40px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
    margin-bottom:30px;
}

.hero-text{
    max-width:650px;
    font-size:18px;
    line-height:2;
    color:#d3d3d3;
    margin-bottom:18px;
}

/* ================= BUTTON ================= */

.hero-btns{
    margin-top:45px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:20px 42px;
    border-radius:60px;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.4s;
}

.hero-btn-primary{
    background:#2561ad;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,174,239,.20);
}

.hero-btn-primary:hover{
    background:#fff;
    color:var(--dark);
    transform:translateY(-5px);
}

/* ================= RIGHT SIDE ================= */

.hero-stats{
    padding-left:35px;
}

.subhead1{
    font-size:25px;
    line-height:1.25;
    font-weight:800;
    color:#fff;
    margin-bottom:18px;
}

.challenge-desc{
    font-size:17px;
    line-height:1.9;
    color:#cfd8dc;
    margin-bottom:45px;
}

/* ================= GRID ================= */

.stats-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* ================= CARD ================= */

.stat-box{
    position:relative;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,174,239,.12);
    border-radius:28px;
    padding:20px 23px 31px 25px;
    min-height:240px;
    transition:.4s;
    overflow:hidden;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

/* HOVER */

.stat-box:hover{
    transform:translateY(-10px);
    border-color:rgba(0,174,239,.4);
    box-shadow:0 20px 50px rgba(0,174,239,.12);
}

/* TOP LINE EFFECT */

.stat-box:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d7b856,#2561ad);
    transform:scaleX(0);
    transition:.4s;
}

.stat-box:hover:after{
    transform:scaleX(1);
}

/* ================= ICON ================= */

.challenge-icon{
    width:58px;
    height:58px;
    border-radius:22px;
    background:rgba(0,174,239,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.challenge-icon i{
    font-size:34px;
    color:#d7b856;
}

/* ================= CARD TEXT ================= */

.stat-box h3{
    font-size:22px;
    line-height:1.5;
    font-weight:700;
    color:#fff;
    margin:0;
}

/* ================= MOBILE ================= */

@media(max-width:1199px){

.hero-title{
    font-size:48px;
}

.subhead1{
    font-size:40px;
}

.stat-box h3{
    font-size:24px;
}

}

@media(max-width:991px){

.htlt-hero{
    padding:90px 0;
}

.hero-stats{
    padding-left:0;
    margin-top:70px;
}

.hero-title{
    font-size:40px;
}

.subhead1{
    font-size:34px;
}

.stats-row{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:767px){

.hero-title{
    font-size:32px;
}

.hero-text{
    font-size:16px;
}

.subhead1{
    font-size:28px;
}

.challenge-desc{
    font-size:16px;
}

.stats-row{
    grid-template-columns:1fr;
}

.stat-box{
    min-height:auto;
    padding:32px 25px;
}

.challenge-icon{
    width:65px;
    height:65px;
}

.challenge-icon i{
    font-size:28px;
}

.stat-box h3{
    font-size:22px;
}

.hero-btn{
    width:100%;
    justify-content:center;
}

}
.bg6{
    background-color: #ecf0f0 !important;
}
.bg7{
    background-color: #ecf0f0 !important;
}
.bg8{
    background-color: #2561ad08;
}
.pt1{
    padding-top: 0px !important;
}
.ptb5{
    padding-top: 100px;
    padding-bottom: 100px;
}
.bg9{
    background-color: #2561ad21;
}


/* =====================================================
HT & LT ELECTRICAL SOLUTIONS SECTION
===================================================== */

.htlt-solutions{
    padding:100px 0;
    /* background:#f4f7fb; */
    font-family:'Poppins',sans-serif;
}

.htlt-solutions .container{
    max-width:1280px;
}

/* ================= HEADER ================= */

.solution-header{
    text-align:center;
    margin-bottom:70px;
}

.solution-title{
    font-size:38px;
    font-weight:800;
    color:#071b2a;
    line-height:1.2;
    margin:0;
}

/* ================= EQUAL HEIGHT ================= */

.equal-row{
    display:flex;
    flex-wrap:wrap;
}

.equal-row > div{
    display:flex;
    margin-bottom:30px;
}

/* ================= CARD ================= */

.solution-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:35px 32px;
    width:100%;
    height:100%;
    min-height:360px;
    transition:.4s;
    overflow:hidden;
    border:1px solid transparent;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.solution-card:hover{
    transform:translateY(-10px);
    border-color:#2561ad;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* TOP BORDER EFFECT */

.solution-card:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#2561ad;
    transform:scaleX(0);
    transition:.4s;
}

.solution-card:hover:after{
    transform:scaleX(1);
}

/* ================= HEADING WITH ICON ================= */

.solution-heading{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.solution-icon{
    min-width: 50px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(0,174,239,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon i{
    font-size:36px;
    color:#2561ad;
}

/* ================= TITLE ================= */

.solution-card h3{
    font-size:20px;
    line-height:1.4;
    font-weight:700;
    color:#071b2a;
    margin:0;
}

/* ================= LIST ================= */

.solution-list{
    margin:0;
    padding:0;
    list-style:none;
}

.solution-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:16px;
    font-size:17px;
    line-height:1.8;
    color:#455a64;
}

.solution-list li:before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:#2561ad;
    position:absolute;
    left:0;
    top:1px;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

.solution-title{
    font-size:38px;
}

.solution-card{
    min-height:auto;
}

}

@media(max-width:767px){

.htlt-solutions{
    padding:70px 0;
}

.solution-title{
    font-size:30px;
}

.solution-card{
    padding:30px 24px;
}

.solution-heading{
    gap:15px;
}

.solution-icon{
    min-width:65px;
    width:65px;
    height:65px;
}

.solution-icon i{
    font-size:28px;
}

.solution-card h3{
    font-size:24px;
}

.solution-list li{
    font-size:16px;
}

}


/* =====================================================
COMPACT INDUSTRIES WE SERVE SECTION
===================================================== */

:root{
    --primary:#00AEEF;
    --dark:#071B2A;
    --text:#5f6b76;
    --bg:#f4f7fb;
}

.compact-industries{
    padding:70px 0;
    background:var(--bg);
    font-family:'Poppins',sans-serif;
}

.compact-industries .container{
    max-width:1250px;
}

/* ================= HEADER ================= */

.compact-header{
    text-align:center;
    margin-bottom:45px;
}

.compact-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--dark);
    margin:0;
}

/* ================= GRID ================= */

.compact-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

/* ================= CARD ================= */

.compact-card{
    background:#fff;
    border-radius:24px;
    padding:30px 22px;
    text-align:center;
    transition:.4s;
    border:1px solid transparent;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.compact-card:hover{
    transform:translateY(-8px);
    border-color:#2561ad;
    box-shadow:0 20px 45px rgba(0,174,239,.10);
}

/* ICON */

.compact-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:rgba(0,174,239,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
}

.compact-icon i{
    font-size:32px;
    color:#2561ad;
}

/* TEXT */

.compact-card h3{
    font-size:20px;
    line-height:1.5;
    font-weight:700;
    color:var(--dark);
    margin:0;
}

/* ================= MOBILE ================= */

@media(max-width:1199px){

.compact-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.compact-header h2{
    font-size:34px;
}

.compact-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.compact-industries{
    padding:60px 0;
}

.compact-header{
    margin-bottom:35px;
}

.compact-header h2{
    font-size:28px;
}

.compact-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.compact-card{
    padding:26px 22px;
}

.compact-icon{
    width:65px;
    height:65px;
}

.compact-icon i{
    font-size:28px;
}

.compact-card h3{
    font-size:18px;
}

}


/* =====================================================
THREE COLUMN INDUSTRIAL INFO SECTION
===================================================== */

:root{
    --primary:#00AEEF;
    --dark:#071B2A;
    --text:#5f6b76;
    --bg:#f4f7fb;
}

.industrial-info-section{
    padding:80px 0;
    background:var(--bg);
    font-family:'Poppins',sans-serif;
}

.industrial-info-section .container{
    max-width:1280px;
}

/* ================= ROW ================= */

.info-row{
    display:flex;
    flex-wrap:wrap;
}

.info-row > div{
    display:flex;
    margin-bottom:30px;
}

/* ================= CARD ================= */

.main-info-card{
    position:relative;
    width:100%;
    height:100%;
    min-height:520px;

    background:#fff;
    border-radius:30px;

    padding:40px 35px;

    overflow:hidden;

    border:1px solid transparent;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

/* HOVER */

.main-info-card:hover{
    transform:translateY(-10px);
    border-color:#2561ad9e;
    box-shadow:0 25px 60px rgba(0,174,239,.10);
}

/* TOP BORDER */

.main-info-card:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;

    background:linear-gradient(90deg,#d7b856,#2561ad);

    transform:scaleX(0);
    transition:.4s;
}

.main-info-card:hover:after{
    transform:scaleX(1);
}

/* ================= ICON ================= */

.card-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    background:rgba(0,174,239,.10);

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

    margin-bottom:28px;
}

.card-icon i{
    font-size:38px;
    color:#2561ad;
}

/* ================= TITLE ================= */

.main-info-card h2{
    font-size:27px;
    line-height:1.3;
    font-weight:800;
    color:var(--dark);

    margin-bottom:35px;
}

/* ================= LIST ================= */

.info-list{
    margin:0;
    padding:0;
    list-style:none;
}

.info-list li{
    position:relative;

    padding-left:38px;
    margin-bottom:24px;

    font-size:18px;
    line-height:1.8;

    color:var(--text);
}

/* ICON BULLETS */

.info-list li:before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;
    left:0;
    top:2px;

    color:#2561ad;
}

/* PROCESS NUMBER */

.process-list li{
    padding-left:55px;
}

.process-number{
    position:absolute;
    left:0;
    top:0;

    width:36px;
    height:36px;

    border-radius:50%;

    background:#2561ad;
    color:#fff;

    font-size:16px;
    font-weight:700;

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

/* ================= MOBILE ================= */

@media(max-width:1199px){

.main-info-card h2{
    font-size:25px;
}

.info-list li{
    font-size:17px;
}

}

@media(max-width:991px){

.main-info-card{
    min-height:auto;
}

}

@media(max-width:767px){

.industrial-info-section{
    padding:60px 0;
}

.main-info-card{
    padding:32px 24px;
}

.card-icon{
    width:72px;
    height:72px;
}

.card-icon i{
    font-size:32px;
}

.main-info-card h2{
    font-size:26px;
    margin-bottom:28px;
}

.info-list li{
    font-size:16px;
    margin-bottom:20px;
}

}

.cta-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    }
    
    .cta-content{
    max-width:820px;
    }
    
    .cta-content .title{
    font-size:36px;
    font-weight:600;
    color:#fff;
    margin-bottom:12px;
    }
    
    .cta-desc{
    color:#cfd6df;
    font-size:16px;
    line-height:1.6;
    }
    
    .cta-action{
    flex-shrink:0;
    }
    
    .tj-cta-section{
    background:linear-gradient(135deg,#0b3b44,#0a5c63);
    border-radius:14px;
    padding:60px 40px;
    position:relative;
    overflow:hidden;
    }
    
    .tj-primary-btn-lg{
    padding:18px 32px;
    font-size:16px;
    border-radius:50px;
    }
    .cta-wrapper{
    border-top:1px solid rgba(255,255,255,0.15);
    padding-top:20px;
    }

    .stat-box .nh3 {
        font-size: 22px;
        line-height: 1.5;
        font-weight: 700;
        color: #fff;
        margin: 0;
        transition: all 0.3s ease-in-out 0s;font-family: var(--tj-ff-heading);letter-spacing: -0.03em;
      }

      .solution-card .nh3 {
        font-size: 20px;
        line-height: 1.4;
        font-weight: 700;
        color: #071b2a;
        margin: 0;
        transition: all 0.3s ease-in-out 0s;font-family: var(--tj-ff-heading);letter-spacing: -0.03em;
      }

      .compact-card .nh3 {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 700;
        color: var(--dark);
        margin: 0;
        transition: all 0.3s ease-in-out 0s;font-family: var(--tj-ff-heading);letter-spacing: -0.03em;
      }