@import url('https://fonts.googleapis.com/css2?family=Biryani:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Biryani", sans-serif;
        font-size: 16px;
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    color:#091413;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}
.top-bar {
    position: relative;
    padding: 10px 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        90deg,
        hsla(205, 84%, 36%, 1) 0%,
        hsla(205, 84%, 36%, 1) 100%
    );

    transform: skewX(345deg);
    transform-origin: top right;

    z-index: -1;
}
.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-left a, .top-right a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}







.header-style-five {
    width: 100%;
    padding: 20px 0;
    background: #fff;
}
.container-fluid {
    width: 95%;
    margin: 0 auto;
}
.header-main-menu {
    display: flex;	
justify-content: space-between;
align-items: center;
}
.site-logo img {
    width: 420px;
}
.header-style-five .header-cta-btn {
    height: 52px;
    width: 140px;
    font-weight: 700;
    line-height: 55px;
    margin-left: 20px;
    background-color: #0f69a9;
        font-size: 14px;
	    text-transform: uppercase;
        border-radius: 8px;
}
.header-style-five .header-cta-btn a {
    color: #fff;
    width: 100%;
    display: block;
    text-align: center
}
.main-header-menu-item {
    display: flex;
    align-items: center;
}





/* =========================
   NAVBAR
========================= */

.ye-nav-wrapper .navbar{
    max-width:100%;
    margin:auto;
    padding:0px 0px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.ye-nav-wrapper .logo img{
    max-height:60px;
    display:block;
}

/* =========================
   MENU
========================= */

.ye-nav-wrapper .menu{
    list-style:none;
    display:flex;
    gap:8px;
    margin:0;
    padding:0;
}

.ye-nav-wrapper .menu li{
    position:relative;
    list-style:none;
}

.ye-nav-wrapper .menu li a,
.ye-nav-wrapper .drop-btn{
    padding:8px 12px;
    color:#000;
    font-size:15px;
    font-weight:500;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    transition:0.3s;
    text-decoration:none;
}

.ye-nav-wrapper .menu li a:hover,
.ye-nav-wrapper .drop-btn:hover{
    color:#ff6600;
}

/* =========================
   DROPDOWN
========================= */

.ye-nav-wrapper .drop-toggle{
    display:none;
}

.ye-nav-wrapper .dropdown{
    position:absolute;
    top:110%;
    left:0;
    width:260px;
    background:#fff;
    border-radius:18px;
    padding:15px 0;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:0.35s;
    z-index:999;
}

.ye-nav-wrapper .menu li:hover > .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.ye-nav-wrapper .dropdown li{
    list-style:none;
}
.ye-nav-wrapper .menu li ul li.submenu-parent .submenu-btn span a {
  padding: 0;
}
.ye-nav-wrapper .dropdown li a{
    display:block;
    padding:10px 16px;
    border-radius:0;
}

/* =========================
   SUBMENU
========================= */

.ye-nav-wrapper .submenu-parent{
    position:relative;
}

.ye-nav-wrapper .submenu-parent input{
    display:none;
}

.ye-nav-wrapper .submenu-btn{
    width:100%;
    padding:8px 14px;
}

.ye-nav-wrapper .submenu{
    position:absolute;
    left:100%;
    top:0;
    width:260px;
    background: #fff;
    border-radius:18px;
    padding:15px 0;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:0.35s;
    z-index:999;
    max-height:400px;
    overflow-y:auto;
}

.ye-nav-wrapper .submenu li a{
    padding:10px 16px;
    border-bottom:1px solid #ececec;
    border-radius:0;
    color: #000;
}

.ye-nav-wrapper .submenu li:last-child a{
    border-bottom:none;
}

.ye-nav-wrapper .submenu-parent:hover > .submenu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
        margin: 0 0 0 5px;
}

/* Scrollbar */

.ye-nav-wrapper .submenu::-webkit-scrollbar{
    width:6px;
}

.ye-nav-wrapper .submenu::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.ye-nav-wrapper .menu-btn{
    display:none;
}

.ye-nav-wrapper .hamburger{
    width:35px;
    height:35px;
    color:#000000;
    border-radius:8px;
    display:none;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .ye-nav-wrapper .navbar{
        padding:10px;
    }

    .ye-nav-wrapper .hamburger{
        display:flex;
    }

    .ye-nav-wrapper .menu{
        position:fixed;
        top:0;
        left:-100%;
        width:320px;
        height:100vh;
        background:#f7f7f7;
        flex-direction:column;
        align-items:flex-start;
        padding:80px 15px;
        overflow-y:auto;
        transition:0.4s;
        box-shadow:0 0 50px rgba(0,0,0,0.1);
        z-index:99999;
    }

    .ye-nav-wrapper .menu li{
        width:100%;
    }

    .ye-nav-wrapper .menu li a,
    .ye-nav-wrapper .drop-btn{
        width:100%;
        padding:12px 14px;
    }

    .ye-nav-wrapper .menu-btn:checked ~ .menu{
        left:0;
    }

    /* MOBILE DROPDOWN */

    .ye-nav-wrapper .dropdown{
        position:static;
        width:100%;
        box-shadow:none;
        border-radius:0;
        padding:0;
        opacity:1;
        visibility:visible;
        transform:none;
        max-height:0;
        overflow:hidden;
        transition:0.4s;
        background:#fff;
    }

    .ye-nav-wrapper .drop-toggle:checked ~ .dropdown{
        max-height:2000px;
        margin-top:10px;
    }

    /* MOBILE SUBMENU */

    .ye-nav-wrapper .submenu{
        position:static;
        width:100%;
        box-shadow:none;
        border-radius:0;
        opacity:1;
        visibility:visible;
        transform:none;
        max-height:0;
        overflow:hidden;
        transition:0.4s;
        background:transparent;
        padding:0;
    }

    .ye-nav-wrapper .submenu-parent:hover .submenu{
        transform:none;
    }

    .ye-nav-wrapper .submenu-toggle{
        display:none;
    }

    .ye-nav-wrapper .submenu-toggle:checked ~ .submenu{
        max-height:1500px;
    }

    .ye-nav-wrapper .submenu li a{
        padding:10px 25px;
        border-bottom:1px solid #e5e4e4;
    }
}



/* =========================
   Banner CSS
========================= */

.s_hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;;
  color: #fff;
}
.s_hero_inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.s_hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000021;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero_content {
  position: relative;
  z-index: 2;
  max-width: max-content;
  padding: 10px 40px 40px 40px;
    background: #00000070;
      margin: 0 0 0 0px;
}
.typing_title {
  display: none;
}
.typed_title {
    text-transform: capitalize;
}
.s_hero .hero_content .text_anime_style_2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0px;
  text-transform: uppercase;
}
.letter_small {
font-size: 25px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #e87f28;
    font-weight: 600;
}
.hero_content .typed_title {
  color: #fffa0f;
  font-size: 50px;
  border-right: 2px solid #ff5723;
  padding-right: 5px;
    font-weight: 600;
}
.btn_default {
  display: inline-block;
  padding: 14px 36px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn_default:hover {
  background: #fff;
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .text_anime_style_2 {
    font-size: 30px;
  }

  .letter_small {
    font-size: 14px;
  }
}




/* =========================
   PREMIUM LOGO SECTION
========================= */

.lux_logo_section{
    position:relative;
    padding:30px 30px;
    overflow:hidden;
    background: #fff;
        width: 80%;
    margin: 0 auto;
    margin-top: -60px;
    z-index: 1;
border-radius: 10px;
}

/* Slider */

.lux_logo_slider{
    position:relative;
    overflow:hidden;
    z-index:2;
}

.lux_logo_slider::before,
.lux_logo_slider::after{
    content:'';
    position:absolute;
    top:0;
    width:180px;
    height:100%;
    z-index:3;
}

.lux_logo_track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:luxScroll 8s linear infinite;
}

.lux_logo_slider:hover .lux_logo_track{
    animation-play-state:paused;
}

@keyframes luxScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Logo Card */

.lux_logo_item{
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.8);
    border-radius:0px;
    transition:.45s ease;
    position:relative;
    overflow:hidden;
}

.lux_logo_item::before{
    content:'';
    position:absolute;
    top:0;
    left:-150%;
    width:70%;
    height:100%;
    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.8),
    transparent);
    transform:skewX(-25deg);
}

.lux_logo_item:hover::before{
    left:200%;
    transition:1s;
}


.lux_logo_item img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
    transition:.4s;
}

.lux_logo_item:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.08);
}

/* Mobile */

@media(max-width:768px){

    .lux_logo_section{
        padding:10px 0 10px 0;
    }

    .lux_logo_item{
        width:120px;
        min-width:120px;
        height:80px;
    }

    .lux_logo_item img{
        max-width: 100%;
    }

    .lux_logo_slider::before,
    .lux_logo_slider::after{
        width:60px;
    }
}








/* =========================
   ACHIEVEMENT CSS
========================= */
.achievement-section{
    padding:0px;
    margin-top: 50px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.top-wrapper{
    display:grid;
    grid-template-columns:2fr 260px;
    gap:25px;
    margin-bottom:5px;
align-items: center;
}

.intro-box{
    background:#f9f9f9;
    padding:40px;
    border-radius:0px;
}

.intro-box span{
color: #005c98;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.intro-box h1{
    font-size:42px;
    line-height:1.15;
    margin:10px 0 15px;
    color:#000;
}

.intro-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.intro-box a{
    display:inline-block;
    padding:12px 28px;
    background:#005c98;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.review-box{
    background:linear-gradient(135deg,#005c98,#005c98);
    border-radius:25px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 30px 50px 30px;
        height: auto;
}

.review-box .star{
    font-size:36px;
    color:#ffd54f;
}

.review-box .h_3 {
    font-size:65px;
    margin:10px 0;
    line-height:1;
}

.review-box p{
    margin:0;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.counter-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top: 60px;
    border-top: 1px solid #cfcfcf;
    padding: 30px 0 0 0;
}

.counter-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.counter-box{
    position: relative;
}

.counter-box:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -10px; /* half of 20px gap */
    transform: translateY(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #cfcfcf 20%,
        #cfcfcf 80%,
        transparent 100%
    );
}

.counter-box:hover{
    transform:translateY(-5px);
}

.counter-box h3{
    position:relative;
    display:block;
    font-size:52px;
    font-weight:700;
    margin:0 0 8px;
    color:#000;
    z-index:1;
}

.counter-box h3::before{
    content:"";
    position:absolute;
    width:110px;
    height:70px;
    top:30%;
    left:30%;
    transform:translate(-50%,-50%);
    background-image:radial-gradient(#005c98 1.8px, transparent 1.8px);
    background-size:10px 10px;
    opacity:.5;
    z-index:-1;
}
.counter-box span{
    font-size:20px;
    color:#555;
    font-weight:500;
}

@media(max-width:991px){

    .top-wrapper{
        grid-template-columns:1fr;
    }

    .counter-row{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-box h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .counter-row{
        grid-template-columns:1fr 1fr;
        width: 90%;
    margin: 60px auto 0;
    }

    .intro-box{
        padding:50px 15px;
    }

    .intro-box h2{
        font-size:28px;
    }
}





/* =========================
   WHY US CSS
========================= */
.whyus-premium{
    background:#f9f9f9;
    padding:80px 30px;
    position:relative;
    overflow:hidden;
    margin-top: 40px;
}

.whyus-premium *{
    box-sizing:border-box;
}

.whyus-header{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:5;
}

.whyus-title h2{
    margin:0;
    font-size:50px;
    line-height:1.05;
    color:#222;
    font-weight:700;
}

.whyus-title span{
    display:block;
    color:#005c98;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:1px;
}


/* =====================================
   EXACT DIVIDER STYLE
===================================== */

.premium-divider{
    position:absolute;
    top:120px;
    left:60%;
    width:40%;
    height:1px;
    z-index:1;
}

.premium-divider:before{
    content:"";
    position:absolute;
    width:100%;
    height:2px;

    background:
    repeating-linear-gradient(
        to right,
        #bcbcbc 0px,
        #bcbcbc 8px,
        transparent 6px,
        transparent 13px
    );

    opacity:.85;
}

/* ===================================== */

.whyus-content{
    max-width:1200px;
    margin: 30px auto 0;
    display:grid;
    grid-template-columns:300px 1fr 300px;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:5;
}

.info-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.info-card.large h3{
    font-size:26px;
    margin:0 0 15px;
    padding-bottom:10px;
    border-bottom:2px solid #222;
}

.info-card.large p{
    color:#666;
    line-height:1.8;
    font-size:14px;
}

.card-number{
    margin-top:20px;
    color:#005c98;
    font-size:38px;
    font-weight:700;
}

.card-number span{
    display:block;
    font-size:14px;
    color:#666;
    font-weight:400;
}

.small-number{
    color:#d84747;
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.center-area{
    text-align:center;
}

/* CROSS IMAGE */

.cross-image{
    width:100%;
    height:480px;
    margin:auto;
    position:relative;
}

.cross-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.center-area p{
    max-width:70%;
    margin:25px auto;
    line-height:1.8;
    color:#fff;
}

.premium-btn{
    display:inline-block;
    background:#fffa0f;
    color:#000;
    text-decoration:none;
    padding:16px 35px;
    border-radius:8px;
    font-size:14px;
    letter-spacing:.5px;
}

@media(max-width:991px){

    .whyus-header{
        flex-direction:column;
        gap:20px;
    }

    .whyus-title h2{
        font-size:25px;
    line-height: 1.4;
    }

    .premium-divider{
        display:none;
    }

    .whyus-content{
        grid-template-columns:1fr;
            gap: 40px;
    }
}





/* =========================
   PROJECT CSS
========================= */
.project-slider-section{
    background: #fff;
    padding:0px 0 70px 0;
    overflow:hidden;
    position:relative;
}

.projectSwiper{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding-bottom:80px;
}

.projectSwiper .swiper-slide{
    height:auto;
}

.project-card{
    position:relative;
}

.project-image{
    height:420px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project-content{
    background:#fff;
    width:78%;
    margin:-60px auto 0;
    position:relative;
    z-index:2;
    padding:28px 22px 30px;
    box-sizing:border-box;
}

.project-category{
    display:block;
    color:#005c98;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.project-content h3{
    margin:0;
    font-size:24px;
    line-height:1.3;
    font-weight:700;
    text-transform:uppercase;
    color:#000;
}
.project-content a {
    color:#000;
}


/* Pagination */

.projectSwiper .swiper-pagination{
    bottom:0 !important;
}

.projectSwiper .swiper-pagination-bullet{
    width:15px;
    height:15px;
    background:#005c98;
    opacity:1;
    margin:5px 8px !important;
    padding: 10px;
}

.projectSwiper .swiper-pagination-bullet-active{
    width:30px;
    border-radius:30px;
}

/* Responsive */

@media(max-width:991px){

    .project-image{
        height:350px;
    }

    .project-content h3{
        font-size:32px;
    }

}

@media(max-width:767px){

    .project-content{
        width:88%;
    }

    .project-content h3{
        font-size:23px;
    }

    .project-image{
        height:280px;
    }

}




/* =========================
   PRODUCT CSS
========================= */
.product-card-banner{
    padding:50px 0 0 0;
}

.pcb-inner{
max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 35px;
    background: #005c98;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pcb-title{
    min-width:180px;
}

.pcb-title h2{
    margin:0;
    font-size:40px;
    line-height:1.3;
    font-weight:700;
    color:#fff;
}

.pcb-title span{
    display:block;
    margin-top:8px;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#e9e9e9;
}

.pcb-divider{
    width:1px;
    height:80px;
    background:#fff;
}

.pcb-content{
    flex:1;
    color:#e9e9e9;
    font-size:15px;
    line-height:1.7;
    max-width:500px;
}

.pcb-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    height:45px;
    padding:0 30px;
    background: linear-gradient(
  to bottom,
  #e8e8e8 0%,
  #c0c0c0 50%,
  #f5f5f5 100%
);
    color:#000;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:0px;
    transition:.3s;
}

.pcb-btn:hover{
    background:#fff;
    transform:translateY(-2px);
}

/* Responsive */
@media(max-width:991px){

    .pcb-inner{
        flex-direction:column;
        text-align:center;
    }

    .pcb-divider{
        width:100%;
        height:1px;
    }

    .pcb-content{
        max-width:100%;
    }

    .pcb-title h2{
        font-size:28px;
    }
}






/* =========================
   TESTIMONIAL CSS
========================= */
.testimonial-section{
    background: #0f69a9;
    padding: 120px 0 50px 0;
    overflow: hidden;
    position: relative;
    margin: -71px 0 0 0;
}

.testimonialSwiper{
    max-width:1200px;
    margin:auto;
    padding-bottom:70px;
}

.testimonial-card{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
}

.testimonial-content{
    flex:1;
    max-width:650px;
}

.quote-icon{
    color:#fff;
    font-size:70px;
    line-height:1;
    margin-bottom:10px;
}

.testimonial-content h2{
    margin:0 0 25px;
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    text-transform:uppercase;
    color:#fffa0f;
}

.testimonial-content p{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    margin-bottom:40px;
}

.testimonial-content span{
    display:block;
    margin-top:8px;
    font-size:18px;
    color:#fff;
}
.testimonial-content span a {
    color:#fff;
    border-bottom: 1px solid #fff;
    padding: 0 0 2px 0;
}

.testimonial-image{
    width:550px;
    flex-shrink:0;
}

.testimonial-image img{
    width:100%;
    height:auto;
    object-fit:inherit;
    display:block;
    border: 8px #fff;
    border-style: groove;
}

/* Pagination */

.testimonial-pagination{
    text-align:left;
    margin-top:30px;
}

.testimonial-pagination .swiper-pagination-bullet{
    width:15px;
    height:15px;
    background:#fff;
    opacity:1;
    margin:5px 8px !important;
    padding: 10px;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    width:30px;
    border-radius:30px;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-card{
        flex-direction:column-reverse;
        gap:40px;
    }

    .testimonial-image{
        width:100%;
        max-width:450px;
    }

    .testimonial-content h2{
        font-size:40px;
    }

    .testimonial-content h4{
        font-size:22px;
    }
}

@media(max-width:767px){

    .testimonial-section{
        padding:50px 15px 10px 15px;
    }

    .testimonial-content h2{
        font-size:30px;
    }

    .testimonial-content p{
        font-size:16px;
    }

    .testimonial-image img{
        height:auto;
    }
}







/* =========================
   BLOG CSS
========================= */
.adnews-section{
    padding:80px 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.adnews-wrapper{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
}

.adnews-feature{
    display:grid;
    grid-template-columns:330px 1fr;
    align-items:center;
}

.adnews-content-box{
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding:50px 40px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 30px rgb(0 0 0 / 10%);
}

.adnews-tag,
.adnews-post-cat{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    color:#777;
    margin-bottom:20px;
}

.adnews-tag::before,
.adnews-post-cat::before{
    content:"";
    width:18px;
    height:2px;
    background:#d81b4e;
}

.adnews-title{
    font-size:42px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}
.adnews-title a {
    color:#111;
}

.adnews-desc{
    font-size:15px;
    line-height:1.8;
    color:#777;
    margin-bottom:35px;
}

.adnews-read-btn{
    display:inline-block;
    text-decoration:none;
    color:#111;
    font-weight:600;
    margin-bottom:50px;
}


.adnews-image-box{
    margin-left:-70px;
}

.adnews-image-box img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
}

.adnews-sidebar-title{
    font-size:24px;
    font-weight:600;
    margin-bottom:35px;
    position:relative;
    padding-left:18px;
}

.adnews-sidebar-title::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:3px;
    height:28px;
    background:#d81b4e;
}

.adnews-post{
    padding:30px 0;
    border-bottom:1px solid #e5e5e5;
}

.adnews-post h4{
    font-size:22px;
    line-height:1.5;
    color:#111;
    font-weight:500;
}
.adnews-post h4 a {
    color:#111;
}

@media(max-width:991px){

    .adnews-wrapper{
        grid-template-columns:1fr;
    }

    .adnews-feature{
        grid-template-columns:1fr;
    }

    .adnews-image-box{
        margin-left:0;
    }

    .adnews-image-box img{
        height: auto;
    }

    .adnews-title{
        font-size:30px;
    }

    .adnews-post h4{
        font-size:18px;
    }
}






/* =========================
   CONTACT CSS
========================= */
.hero-bg{
    height:650px;
    background:url('../images/enq.webp') center center/cover no-repeat;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.50) 45%,
        rgba(0,0,0,.15) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    width:470px;
    padding-top:45px;
}

.eyebrow{
    color:#cdb28a;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.hero-content .h_1{
    margin-top:15px;
    color:#fff;
    font-size:44px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
}

.hero-content p{
    color:#fff;
    width:310px;
    margin-top:18px;
    font-size:14px;
    line-height:1.5;
}

/* =======================
   RED SECTION
======================= */

.red-section{
    background:#005c98;
    height:380px;
    position:relative;
}

/* =======================
   FLOATING FORM
======================= */

.quote-box{
    position:relative;
    margin-top:-82px;
    margin-left:0px;
        top: -80px;

    width:800px;
    background:#fff;

    display:flex;
    padding:60px 60px;
    z-index:10;
}

.quote-left{
    width:230px;
    color:#fff;
}

.quote-left h3{
    font-size:32px;
    line-height:1.05;
    font-weight:700;
    color: #000;
}

.arrow{
    display:block;
    margin:18px 0;
    color:#005c98;
    font-size:30px;
}

.quote-left small{
    display:block;
    margin-bottom:12px;
    font-size:13px;
    color: #000;
}

.quote-left h4{
    color:#005c98;
    font-size:15px;
    font-weight:800;
}
.quote-left h4 a {
    color:#005c98;
}

/* =======================
   FORM
======================= */

.quote-right{
    flex:1;
}

.quote-right form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.quote-right input,
.quote-right select{
    height:45px;
    background:transparent;
    border:1px solid #444;
    color:#000;
    padding:0 10px;
    font-size:12px;
    font-family: 'Biryani';
}
.quote-right input::placeholder {
    color: #000;
}
.quote-right textarea {
    height:45px;
    background:transparent;
    border:1px solid #444;
    color:#000;
    padding:10px 10px;
    font-size:12px;
    font-family: 'Biryani';
}
.quote-right textarea::placeholder {
    color: #000;
}
.full{
    grid-column:1/-1;
}

.full p{
    color:#000;
    font-size:10px;
    line-height:1.4;
}

button{
    background:#d7192d;
    color:#fff;
    border:none;
    height:40px;
    padding:0 24px;
    font-size:11px;
    font-weight:700;
    cursor:pointer;
    margin-top: 10px;
}

/* =======================
   OFFERS
======================= */

.offers{
    gap: 90px;
    color: #fff;
    position: relative;
    margin: 0 0 0 880px;
    top: -280px;
}





/* =========================
   REVIEWS CSS
========================= */
.crv-section{
    padding:50px 0 30px 0;
    background:#f5f5f5;
}

.crv-container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

.crv-heading{
    text-align:center;
    margin-bottom:30px;
}

.crv-title{
    font-size:42px;
    color:#222;
    margin:0;
    font-weight:700;
}

.crvSwiper{
    padding:40px 5px 70px;
}

.crv-card{
    position:relative;
    background:#005c98;
    border-radius:12px;
    padding:65px 25px 30px;
    text-align:center;
    transition:.4s ease;
}

.crv-card:hover{
    transform:translateY(-8px);
}

.crv-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    left:50%;
    top:-30px;
    transform:translateX(-50%);
    border:7px solid #fff;
        background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #d5d5d5;
        font-weight: 700;
}

.crv-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.crv-quote{
    width:40px;
    height:40px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    font-size:70px;
}

.crv-name{
    font-size:24px;
    margin-bottom:5px;
    color:#fff;
}

.crv-role{
    display:block;
    font-size:14px;
    color:#fff;
    margin-bottom:18px;
}

.crv-text{
    font-size:15px;
    line-height:1.8;
    color:#fff;
    margin-bottom:20px;
}

.crv-stars{
    color:#d89a1f;
    letter-spacing:3px;
    font-size:18px;
}

.crv-pagination{
    text-align:center;
    margin-top:30px;
}

.crv-pagination .swiper-pagination-bullet{
    width:15px;
    height:15px;
    margin:5px 8px;
    padding: 10px;
}

.crv-pagination .swiper-pagination-bullet-active{
    background:#005c98;
}

@media(max-width:767px){

    .crv-title{
        font-size:30px;
    }

}



/* =========================
   OTHER CSS
========================= */
.brochure-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    max-width: 100%;
    flex-direction: column;
}

.brochure-box h4 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #f8fafc;
    box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}
.swiper {
    padding: 40px 0 !important;
}
.mngd {
    max-width: 1300px;
    margin: auto;
    padding: 0 140px;
}
.mngd a {
    float: right;
    color: #fff;
}







.product_hero {
    padding: 50px 0 50px 0;
}
.product_container {
    display:grid;
    grid-template-columns:50% auto;
    gap:50px;
    width: 1200px;
    margin: 0 auto;
    align-items:center;
}
.product_img {
    border:1px solid #F6F5F4;
    padding:10px;
    border-radius:5px;
    background: #F6F5F4;
}
.product_img img {
    width: 100%;
}
.product_description {
    margin:0 0 0
}
.read-less-location {
    margin:30px 0 0
}
.product_description h2 {
    margin:0;
    font-size:30px
}
.product-rating {
    color:#ffac5f;
    margin:0 0 15px
}
.cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 1px;
    background: #111827;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 30px 15px 0 0;
    
    min-width: 160px;

    padding: 15px 0 10px 0px;
    border-radius: 8px;

    line-height: 1.2;
}

.proin_btn {
    background: linear-gradient(
        90deg,
        rgba(84, 109, 255, 1) 0%,
        rgba(84, 109, 255, 1) 100%
    );
}

.product_description button:hover {
    border:1px solid #101f38;
    background:#414242;
}
.product-box figcaption a, .product_description button a {
    color:#fff;
    margin: 5px 5px;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product_description button a i {
    color:#4ec95e;
    font-size:18px;
    vertical-align:middle
}
.pro_tag {
    display: flex;
    margin-bottom: 35px;
}
.pro_tag .spn_1 {
    background: #111827;
    padding: 3px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.pro_tag .spn_2 {
    background: linear-gradient(90deg, rgb(15 105 169) 0%, rgb(15 105 169) 100%);
    padding: 3px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.head_h1 {
    font-size: 40px;
    line-height: 1.4;
}
.head_h1 span {
    color: #ff5723;
    text-transform: uppercase;
}








.wiregauge-pro-section{
    padding:80px 20px;
    background:#f5f7fa;
}

.wiregauge-pro-wrap{
    max-width:1100px;
    margin:0 auto;
}

.wiregauge-pro-head{
    text-align:center;
    margin-bottom:40px;
}

.wiregauge-pro-tag{
    display:inline-block;
    background:#d72638;
    color:#fff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    padding:8px 18px;
    border-radius:30px;
}

.wiregauge-pro-head h2{
    margin:15px 0 0 !important;
    font-size:42px !important;
    font-weight:700 !important;
    color:#1f2937 !important;
}

.wiregauge-pro-table-holder{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
        width: 70%;
        margin: 0 auto;
}

.wiregauge-pro-table{
    width:100%;
    border-collapse:collapse;
    text-align: center;
}

.wiregauge-pro-table thead{
    background:linear-gradient(135deg,#1c2431,#2f3c50);
}

.wiregauge-pro-table thead th{
    padding:22px 25px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-align:left;
    letter-spacing:.5px;
}

.wiregauge-pro-table tbody tr{
    border-bottom:1px solid #edf1f5;
    transition:.35s ease;
}

.wiregauge-pro-table tbody tr:nth-child(even){
    background:#fafbfc;
}

.wiregauge-pro-table tbody tr:hover{
    background:#f1f8ff;
}

.wiregauge-pro-table tbody td{
    padding:18px 25px;
    color:#374151;
    font-size:15px;
}

.wiregauge-pro-table tbody td:first-child{
    width:120px;
    font-weight:700;
    color:#d72638;
    position:relative;
}

.wiregauge-pro-table tbody td:nth-child(2){
    font-weight:600;
}

.wiregauge-pro-table tbody td:last-child{
    font-weight:700;
    color:#111827;
}

@media (max-width:768px){

    .wiregauge-pro-head h2{
        font-size:30px;
    }

    .wiregauge-pro-table-holder{
        overflow-x:auto;
    }

    .wiregauge-pro-table{
        min-width:100%;
    }
}








.enq_quick {
    padding: 0;
    margin: 0 auto;
    background: #F6F5F4;
    width: 1000px;
}
.enq_quick_area {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:40px 0 40px 0;
}
.enq_quick_area input, .frm_drp {
    max-width:180px;
    margin:0!important;
    color:#000!important;
    height:40px!important;
    border:1px solid #999!important;
    border-radius:4px;
    font-size:14px;
    padding:0 0 0 15px;
    font-family: 'Biryani';
}
.enq_quick_area input::placeholder {
    color:#000;
}
.btn_style {
    color:#fff;
    background: #111827 !important;
    width:100%;
    box-shadow:none;
    margin:0 5px;
    display:inline-block;
    padding:10px 12px;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    border:1px solid transparent;
    border-radius:4px;
    font-family: 'Biryani';
}
.frm_drp {
    padding-top:2px
}
.qck_contact {
    font-size:20px;
    letter-spacing:1px;
    font-weight:600;
    padding:7px 10px;
    border-radius:0;
    color:#000
}
.enq_quick_area button {
    max-width: 120px;
}









/* ================================
   Chain Link Fence Product Description
   Namespace: clf-prod-desc
================================ */

.clf-prod-desc-wrap{
    padding:50px 25px 0 25px;
    background:#fff;
}

.clf-prod-desc-container{
    max-width:1200px;
    margin:0 auto;
    color:#4a4a4a;
}

.clf-prod-desc-container h2{
    font-size:35px;
    font-weight:700;
    color:#163b63;
    margin:0px;
    line-height:1.3;
}

.clf-prod-desc-container h3{
    font-size:25px;
    font-weight:700;
    color:#2d8a3d;
    margin:30px 0 18px;
    position:relative;
    line-height:1.4;
}

.clf-prod-desc-container h3::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#f4a300;
    border-radius:50px;
    margin-top:10px;
}

.clf-prod-desc-container h4{
    font-size:22px;
    font-weight:600;
    color:#163b63;
    margin:30px 0 15px;
}

.clf-prod-desc-container p{
    font-size:15px;
    line-height:1.9;
    color:#5d5d5d;
    margin:0 0 22px;
}

.clf-prod-desc-container ul,
.clf-prod-desc-container ol{
    margin:25px 0;
    padding:25px 30px;
    border-radius:10px;
}

.clf-prod-desc-container ul{
    background:#f7faf8;
    border-left:5px solid #2d8a3d;
}

.clf-prod-desc-container ol{
    background:#fffdf7;
    border-left:5px solid #f4a300;
}

.clf-prod-desc-container li{
    margin-bottom:12px;
    font-size:16px;
    line-height:1.8;
}

.clf-prod-desc-container ul li::marker{
    color:#2d8a3d;
}

.clf-prod-desc-container ol li::marker{
    color:#f4a300;
    font-weight:700;
}

.clf-prod-desc-container strong{
    color:#163b63;
}

.clf-prod-desc-container a{
    color:#2d8a3d;
    text-decoration:none;
    font-weight:600;
}

.clf-prod-desc-container a:hover{
    color:#163b63;
    text-decoration:underline;
}

/* Responsive */

@media (max-width:768px){

    .clf-prod-desc-wrap{
        padding:45px 15px 0 15px;
    }

    .clf-prod-desc-container h2{
        font-size:28px !important;
    }

    .clf-prod-desc-container h3{
        font-size:18px;
    margin: 20px 0 18px;
    }

    .clf-prod-desc-container h4{
        font-size:20px;
    }

    .clf-prod-desc-container p,
    .clf-prod-desc-container li{
        font-size:15px;
    }

    .clf-prod-desc-container ul,
    .clf-prod-desc-container ol{
        padding:20px;
    }

}








.in_line {
    border-bottom: 1px solid #F6F5F4;
    padding: 10px 0;
    width: 1260px;
    margin: 0 auto;
}






.footer{
    background:#000;
    color:#fff;
    padding:60px 75px 20px;
font-size: 15px;
}

.footer-container{
    display:grid;
grid-template-columns: 400px auto 250px;
    gap: 30px;
    justify-content: space-between;
}

/* Headings */

.footer-box h2 {
    margin-bottom:20px;
    color:#fff;
    font-size:25px;
    text-transform: uppercase;
}

.footer-box h3 {
    margin-bottom:20px;
    color:#fff;
font-size: 15px;
    text-transform: uppercase;
margin-top: 30px;
}

.footer-box p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:25px;
}

/* Social */

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid #555;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#f4b400;
    border-color:#f4b400;
    color:#000;
}

/* Contact */

.contact-flex{
    display:flex;
    justify-content:space-between;
    gap:25px;
}

.contact-left,
.contact-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#cfcfcf;
}

.contact-item i{
    color:#f4b400;
    font-size:18px;
    margin-top:4px;
}
.contact-item span a {
    color: #fff;
}
/* Quick Links */

.quick-links{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.quick-links ul{
    list-style:none;
}

.quick-links li{
    margin-bottom:14px;
}

.quick-links a{
    text-decoration:none;
    color:#cfcfcf;
    transition:.3s;
}

.quick-links a:hover{
    color:#f4b400;
    padding-left:5px;
}

/* Copyright */

.copyright{
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#aaa;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .contact-flex{
        flex-direction:column;
    }

    .quick-links{
        flex-direction:column;
        gap:0;
    }

}









.clf-faq-section{
    background:#f5f5f5;
    padding:80px;
    position:relative;
    overflow:hidden;
}

.clf-faq-topline{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #1f1f1f;
    padding-top:18px;
    margin-bottom:40px;
}

.clf-faq-topline span{
    font-size:14px;
    color:#111;
    letter-spacing:1px;
}

.clf-page-no{
    border:1px solid #222;
    border-radius:30px;
    padding:5px 14px;
    font-weight:600;
}

.clf-faq-header{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:70px;
}

.clf-faq-icon{
    font-size:90px;
    font-weight:700;
    line-height:1;
    text-align:center;
}

.clf-faq-content h2{
    font-size:82px;
    line-height:0.9;
    font-weight:900;
    margin:0 0 25px;
    color:#000;
    letter-spacing:-3px;
}

.clf-faq-content p{
    max-width:700px;
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin:0;
}

.clf-faq-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.clf-faq-card{
    background:#ececec;
    padding:35px;
    min-height:360px;
    transition:all .35s ease;
    position:relative;
}

.clf-faq-card:hover{
    transform:translateY(-8px);
    background:#e4e4e4;
}

.clf-number{
    display:block;
    font-size:70px;
    line-height:1;
    font-weight:900;
    color:#000;
    margin-bottom:25px;
}

.clf-faq-card h3{
    font-size:22px;
    line-height:1.3;
    margin:0 0 20px;
    color:#111;
    font-weight:700;
}

.clf-faq-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin:0;
}

@media(max-width:1200px){

    .clf-faq-content h2{
        font-size:60px;
    }

    .clf-faq-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .clf-faq-section{
        padding:50px 20px;
    }

    .clf-faq-header{
        grid-template-columns:1fr;
        gap:20px;
    }

    .clf-faq-icon{
        display:none;
    }

    .clf-faq-content h2{
        font-size:42px;
    }

    .clf-faq-content p{
        font-size:16px;
    }

    .clf-faq-grid{
        grid-template-columns:1fr;
    }

    .clf-faq-card{
        min-height:auto;
        padding:35px 25px;
    }

    .clf-number{
        font-size:70px;
        margin-bottom:35px;
    }

    .clf-faq-card h3{
        font-size:24px;
    }
}







.top-left {
    margin: 0 20px 0 0px;
}
.txtblack {
    color: #000 !important;
}
.btnblck {
    background: #000 !important;
    color: #fff !important;
}
.fixed-phone {
    right: 30px;
    bottom: 180px;
    position: fixed;
    z-index: 999999;
}
.fixed-phone:before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}
.fixed-phone i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    left: 13px;
    top: 13px;
}
.fixed-whatsapp {
    right: 30px;
    bottom: 120px;
    position: fixed;
    z-index: 999999;
}
.fixed-whatsapp:before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}
.fixed-whatsapp i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 1.9rem;
    left: 13px;
    top: 10px;
}
.read-less-location {
    margin: 20px 0 0 0;
}
.lochead {
    font-size: 18px;
    color: #f4b400;
}
.footer_text {
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    float: left;
    text-decoration: none;
    margin: 0 0px 0 0px;
    padding: 0 2px 0 2px;
}
.read-less-location a.loc-read {
    font-size: 14px;
    color: #f4b400;
    line-height: 40px;
    padding: 0 0 0 6px;
    margin: 0 5px 0 0;
    font-weight: 600;
    text-decoration: none;
    text-align: justify;
    float: left;
}
.cl {
    clear: both;
}








.clfx-fence-content{
    padding:40px 20px 0 20px;
    background:#ffffff;
}

.clfx-fence-container{
    max-width:1200px;
    margin:auto;
}

.clfx-fence-container h2{
    color:#166534;
    font-size:34px;
    margin-bottom:15px;
}

.clfx-fence-container h3{
    color:#166534;
    font-size:26px;
    margin-top:30px;
}

.clfx-fence-container p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}


.clfx-fence-steps{
    padding:0;
    margin-top:25px;
    list-style:none;
}


.clfx-fence-steps li{
    background:#f5fdf6;
    padding:12px 18px;
    margin-bottom:10px;
    border-left:4px solid #166534;
    border-radius:5px;
    color:#333;
}
.clfx-fence-steps li:hover{
    background:#e8f5ea;
}





.clientbrand_logo_section {
    padding: 50px 0 10px 0;
    background: #ffffff;
}

.clientbrand_logo_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.clientbrand_logo_box {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    overflow: hidden;
}

.clientbrand_logo_box img {
    width: 100%;
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.clientbrand_logo_box:hover {
    transform: translateY(-10px);
    border-color: #b88a2a;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.clientbrand_logo_box:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}


/* Responsive Tablet */
@media (max-width: 992px) {
    .clientbrand_logo_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Responsive Mobile */
@media (max-width: 576px) {
    .clientbrand_logo_wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .clientbrand_logo_box {
        height: 100px;
        padding: 15px;
    }

    .clientbrand_logo_box img {
        max-height: 60px;
    }
}





.clf-contact-section {
    padding:60px 20px;
}

.clf-contact-container {
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:stretch;
}

.clf-contact-info {
    flex:1;
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.clf-contact-info h2 {
    font-size:34px;
    color:#1c4d2b;
    margin:0 0 15px;
}

.clf-intro {
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
}


.clf-contact-item {
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:22px;
}


.clf-icon {
    width:45px;
    height:45px;
    background:#1c4d2b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
    flex-shrink:0;
}


.clf-contact-item h4 {
    margin:0 0 6px;
    font-size:18px;
    color:#333;
}


.clf-contact-item p {
    margin:0;
    color:#666;
    line-height:1.6;
}


.clf-contact-item a {
    color:#1c4d2b;
    text-decoration:none;
}


.clf-contact-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#1c4d2b;
    color:#fff;
    padding:13px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-top:10px;
}


.clf-contact-btn:hover {
    background:#14391f;
}


.clf-map-box {
    flex:1;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}


@media(max-width:768px){

    .clf-contact-container {
        flex-direction:column;
    }

    .clf-contact-info {
        padding:25px;
    }

    .clf-contact-info h2 {
        font-size:28px;
    }

}





.clf-blog-card-section {
    padding:70px 20px;
}


.clf-blog-card-container {
    max-width:1200px;
    margin:auto;
}


.clf-blog-card-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


.clf-blog-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all .3s ease;
}


.clf-blog-card:hover {
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}


.clf-blog-card-image {
    overflow:hidden;
}


.clf-blog-card-image img {
    width:100%;
    object-fit:cover;
    transition:.4s;
}


.clf-blog-card:hover .clf-blog-card-image img {
    transform:scale(1.05);
}


.clf-blog-card-body {
    padding:25px;
}


.clf-blog-card-meta {
    display:flex;
    gap:18px;
    color:#777;
    font-size:13px;
    margin-bottom:15px;
}


.clf-blog-card-meta i {
    color:#1c4d2b;
    margin-right:5px;
}


.clf-blog-card h3 {
    font-size:20px;
    line-height:1.4;
    color:#222;
    margin:0 0 15px;
}


.clf-blog-card p {
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}


.clf-blog-card a {
    color:#1c4d2b;
    text-decoration:none;
    font-weight:bold;
}


.clf-blog-card a i {
    margin-left:5px;
}


@media(max-width:992px){

    .clf-blog-card-grid {
        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:600px){

    .clf-blog-card-grid {
        grid-template-columns:1fr;
    }

}






.clf-blog-detail-section {
    padding:70px 20px;
    background:#ffffff;
}


.clf-blog-detail-container {
    max-width:1200px;
    margin:auto;
}


.clf-blog-detail-image {
    width:100%;
    margin-bottom:35px;
}


.clf-blog-detail-image img {
    width:100%;
    object-fit:cover;
    border-radius:15px;
}


.clf-blog-detail-content {
    max-width:1200px;
    margin:auto;
}


.clf-blog-detail-meta {
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    color:#777;
    font-size:14px;
    margin-bottom:20px;
}


.clf-blog-detail-meta i {
    color:#1c4d2b;
    margin-right:6px;
}


.clf-blog-detail-content h1 {
    font-size:40px;
    line-height:1.3;
    color:#222;
    margin-bottom:25px;
}


.clf-blog-detail-content h2 {
    font-size:30px;
    color:#1c4d2b;
    margin-top:40px;
}


.clf-blog-detail-content h3 {
    font-size:24px;
    color:#333;
    margin-top:30px;
}


.clf-blog-detail-content p {
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}


.clf-blog-detail-content blockquote {
    margin:35px 0;
    padding:25px 30px;
    background:#f2f6f3;
    border-left:5px solid #1c4d2b;
    color:#333;
    font-size:20px;
    font-style:italic;
}


@media(max-width:768px){

    .clf-blog-detail-image img {
        height:300px;
    }


    .clf-blog-detail-content h1 {
        font-size:30px;
    }


    .clf-blog-detail-content h2 {
        font-size:25px;
    }

}





/* ===== FAQ SECTION ===== */
.faqs_container {
  padding: 60px 15px;
  margin-top: 0px;
}

.faqs_container .container {
  max-width: 1200px;
  margin: auto;
}
.faqs_head {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #4b2e1e;
}
.faqs_area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.faqs_col details {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faqs_col summary {
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  list-style: none;
  position: relative;
}
.faqs_col summary::-webkit-details-marker {
  display: none;
}
.faqs_col summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #0f69a9;
  transition: transform 0.3s ease;
}
.faqs_col details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}
.faq__content {
  padding: 0 18px 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  animation: fadeIn 0.4s ease-in-out;
}
.faq__content p {
  color: #555;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faqs_col details:hover {
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .faqs_area {
    grid-template-columns: 1fr;
  }

  .faqs_head {
    font-size: 24px;
  }
}






@media only screen and (max-width: 767px) {

.top-bar::before {
    right: 0;
    width: 100%;
        transform: none;
}
.top-bar {
    padding: 10px 15px;
    justify-content: center;
    flex-direction: column;
}
.top-left {
    gap: 5px;
    flex-direction: column;
}
.top-right {
    margin-top: 10px;
}
.header-style-five .header-cta-btn {
    display: none;
}
.hero_content {
    padding: 10px 20px 20px 20px;
}
.s_hero .hero_content .text_anime_style_2 {
    font-size: 25px;
}
.hero_content .typed_title {
    font-size: 25px;
}
.s_hero {
    height: 450px;
}
.btn_default {
    padding: 5px 25px;
    margin-top: 10px;
}
.center-area p {
    max-width: 100%;
}
.testimonial-section {
    margin: -40px 0 0 0;
}
.intro-box h1 {
    font-size: 28px;
}
.review-box {
    padding: 20px 20px 30px 20px;
            margin: 0 15px;
}
.review-box .h_3 {
    font-size: 50px;
}
.counter-box h3 {
        font-size: 35px;
 
}
.counter-box span {
    font-size: 16px;
}
.whyus-premium {
    padding: 50px 15px;
}
.info-card.large h3 {
    line-height: 1.4;
}
.hero-content {
    width: 100%;
}
.hero-content .h_1 {
    font-size: 28px;
}
.container {
    max-width: 100%;
    padding: 0 15px;
}
.hero-bg {
    height: 500px;
}
.hero-content p {
    width: 100%;
}
.quote-box {
    width: 100%;
    padding: 50px 15px;
    flex-direction: column;
}
.quote-left {
    width: 100%;
    margin-bottom: 30px;
}
.quote-right form {
    grid-template-columns: auto;
}
.red-section {
    height: 850px;
}
.arrow {
    margin: 10px 0;
}
.adnews-section {
    padding: 50px 0;
}
.adnews-content-box {
    padding: 40px 20px;
}
.adnews-read-btn {
    margin-bottom: 0;
}
.adnews-sidebar-title {
    margin-bottom: 0;
}
.footer {
    padding: 50px 15px 20px 15px;
}
.footer-box h2 {
    margin-bottom: 10px;
}
.copyright {
    margin-top: 30px;
}
.in_line {
    width: 95%;
}
.product_hero {
    padding: 40px 0 40px 0;
}
.product_container {
    grid-template-columns: auto;
    gap: 50px;
    width: 100%;
    padding: 0 15px;
}
.head_h1 {
    font-size: 28px;
}
.cta_btn {
    font-size: 12px;
    font-weight: 700;
    min-width: 130px;
}
.enq_quick {
    width: 80%;
}
.enq_quick_area {
    flex-direction: column;
}
.enq_quick_area input, .frm_drp {
    max-width: 220px;
}
.wiregauge-pro-section {
    padding: 50px 15px;
}
.wiregauge-pro-wrap {
    max-width: 100%;
}
.wiregauge-pro-head {
    margin-bottom: 20px;
}
.wiregauge-pro-table-holder {
    width: 100%;
}
.wiregauge-pro-table thead th {
    padding: 15px 15px;
    font-size: 12px;
}
.pcb-inner {
    padding: 45px 45px;
}
.offers {
    margin: 0 0 0 0;
    top: -50px;
}
.clfx-fence-container h2 {
    font-size: 28px;
    line-height: 1.3;
}
.clfx-fence-container p {
    font-size: 15px;
}
.clfx-fence-container h3 {
    font-size: 18px;
    line-height: 1.4;
margin: 20px 0 18px;
}
}