@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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:'Poppins',sans-serif;
        font-size: 16px;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    color:#091413;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}
.hone {
	text-align: center;
	font-size: 25px;
	font-weight: 700;
}

/* =========================
   PRE HEADER
========================= */

.top-header{
    width:100%;
    background:#1e549f;
    color:#fff;
    font-size:14px;
}

.top-container{
    max-width:1300px;
    margin:auto;
    padding:12px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-header a,
.top-header span{
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.top-header a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-icons a{
    width:35px;
    height:35px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ff6600;
    border-color:#ff6600;
}

/* =========================
   HEADER
========================= */

header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.navbar{
    max-width:1300px;
    margin:auto;
    padding:18px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.logo {
	padding: 0;
}
.logo img {
	width: 380px;
}


/* =========================
   MENU
========================= */

.menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.menu li{
    position:relative;
}

.menu li a,
.drop-btn{
    padding:8px 14px;
    color:#091413;
    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;
}

.menu li a:hover,
.drop-btn:hover{
    color:#ff6600;
}

/* =========================
   DROPDOWN
========================= */

.drop-toggle{
    display:none;
}

.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;
}

.menu li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown li{
    list-style:none;
}
.submenu-parent input {
    display: none;
}
/* =========================
   SUBMENU
========================= */

.submenu-parent{
    position:relative;
}

.submenu-btn{
    width:100%;
    padding: 8px 14px;
}

.submenu{
    position:absolute;
    left:100%;
    top:0;
    width:240px;
    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;
     max-height: 400px; /* adjust as needed */
    overflow-y: auto;
}
.submenu li a {
    padding: 8px 14px;
    border-bottom: 1px solid #e5e4e4;
    border-radius: 0;
}
.submenu-parent:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

/* =========================
   CTA BUTTON
========================= */

.contact-btn{
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    color:#fff !important;
    padding:14px 24px !important;
    border-radius:14px;
    margin-left: 15px;
}

.contact-btn:hover{
    background:#111 !important;
    color:#fff !important;
}

/* =========================
   MOBILE MENU
========================= */

.menu-btn{
    display:none;
}

.hamburger{
    width:100px;
    height:40px;
    background:#ff6600;
    color:#fff;
    border-radius:8px;
    display:none;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
}







/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .hamburger{
        display:flex;
    }

    .menu{
        position:fixed;
        top:0;
        left:-100%;
        width:320px;
        height:100vh;
        background:#fff;
        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);
    }

    .menu li{
        width:100%;
    }

    .menu li a,
    .drop-btn{
        width:90%;
        padding:8px 14px;
    }

    .menu-btn:checked ~ .menu{
        left:0;
    }

    /* MOBILE DROPDOWN */

    .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;
    }

    .drop-toggle:checked ~ .dropdown{
        max-height:1000px;
        margin-top:10px;
    }

    /* MOBILE SUBMENU */

    .submenu{
        position:static;
        width:100%;
        box-shadow:none;
        border-radius:0;
        padding-left:15px;

        opacity:1;
        visibility:visible;
        transform:none;

        max-height:0;
        overflow:hidden;
        transition:0.4s;
        padding: 5px 0;
    }

    .submenu li a {
    padding: 10px 20px !important;
    border-bottom: 1px solid #e5e4e4;
    border-radius: 0;
}

    .submenu-parent:hover .submenu{
        transform:none;
    }

    .submenu-toggle{
        display:none;
    }

    .submenu-toggle:checked ~ .submenu{
        max-height:500px;
    }

}




/* ===== Banner Carousel ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  transition: all 0.7s ease;
}

.slide.active { left: 0; }

.slide img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Navigation Arrows ===== */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  user-select: none;
}

.nav.prev { left: 20px; }
.nav.next { right: 20px; }

/* ===== Dots ===== */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active { background-color: #fff; }

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav { font-size: 2.5rem; }
  .dot { height: 10px; width: 10px; margin: 0 4px; }
}






.enq_quick {
	padding: 40px 0 45px 0;
	margin: 0;
	background: #f2f4f1;
	color: #091413
}

.enq_quick p {
text-align: center;
    width: 700px;
    margin: 0 auto;
}

.enq_quick_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 20px 0 0
}

.enq_quick_area input,
.frm_drp {
	max-width: 180px;
	margin: 0 !important;
	color: #000 !important;
	height: 40px !important;
	border: none !important;
	border-radius: 4px;
	font-size: 14px;
	padding: 0 25px 0 15px;
	background-color: #ffffff
}

.btn_style {
	color: #fff;
	background: linear-gradient(120deg, #1e549f 0, #184e95 100%) !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;
	white-space: nowrap;
	-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
}

.enq_quick_area button {
	max-width: 120px
}





/* =========================
   HERO SECTION
========================= */

.hero{
display: flex;
    align-items: center;
    padding: 0px 7% 80px 7%;
}

.hero-container{
    max-width:100%;
    margin:auto;
    width:100%;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
}

.hero-content h5{
    color:#ff6600;
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}

.hero-content .heroh1 {
    font-size:45px;
    line-height:1.2;
    font-weight: 700;
    margin-bottom:0px;
}

.logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 5px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}
.logo-wrapper img {
    width: 135px;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%);
    transition: 0.3s ease;
}

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btns a{
    padding:12px 20px;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
}

.btn1{
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    color:#fff;
}

.btn1:hover{
    background:#111;
}

.btn2{
    background:#fff;
    color:#111;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.btn2:hover{
    transform:translateY(-3px);
}

/* =========================
   HERO IMAGE
========================= */

.hero-image{
    position:relative;
}

.hero-image img{
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,0.1);
}


@media(max-width:991px){

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        margin:auto auto 30px;
    }

    .hero-btns{
        justify-content:center;
        flex-wrap: nowrap;
    }
    .hero-btns a {
    padding: 10px 16px;
}

    

}
@media(max-width:768px){

    .top-container{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .top-left,
    .top-right{
        width:100%;
        gap:12px;
    }

    .hero{
        padding: 0px 15px 50px 15px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:15px;
    }

}








/* ===== ABOUT SECTION ===== */

.story-section{
  position: relative;
  padding: 80px 7%;
  background: #fff;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND GLOW */

.story-section::before{
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgb(0 0 0 / 7%), transparent 70%);
  top: -250px;
  left: -250px;
}

.story-section::after{
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(0 0 0 / 0%), transparent 70%);
  bottom: -300px;
  right: -200px;
}

/* TOP */

.story-top{
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.mini-tag{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.story-top h2{
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  color: #091413;
}

.story-top h2 span{
  display: block;
  color: #1e549f;
}

/* LAYOUT */

.story-layout{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* CONTENT */

.glass-card{
  background: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 35px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgb(0 0 0 / 9%);
}
.glass-card {
  height: 400px;
  overflow-y: auto;
  box-sizing: border-box;

  border-radius: 16px;
  background: #fff; /* important for clean edges */

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #ff6600 #f1f1f1;
}

/* Chrome / Edge / Safari */
.glass-card::-webkit-scrollbar {
  width: 8px;
}

.glass-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 16px;
  margin: 10px 0; /* THIS makes it look inside rounded box */
}

.glass-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b6b, #ff1f1f);
  border-radius: 16px;
  border: 2px solid #f1f1f1;
}

.glass-card::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff3b3b, #d60000);
}
.glass-card p{
  font-size: 16px;
  line-height: 1.8;
  color: #091413;
  margin-bottom: 28px;
}

.glass-card p:last-child{
  margin-bottom: 0;
}

/* MARQUEE */

.about-marquee{
  margin-top: 60px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgb(0 0 0 / 5%);
  border-bottom: 1px solid rgb(0 0 0 / 5%);
  padding: 28px 0;
}

.marquee-track{
  display: flex;
  gap: 35px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-track span{
  font-size: 28px;
  font-weight: 700;
  color: #091413;
  white-space: nowrap;
}

.marquee-track span:nth-child(even){
  color: #ff6600;
}

@keyframes marquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}



/* RESPONSIVE */

@media(max-width:1100px){

  .story-layout{
    grid-template-columns: 1fr;
  }

  .story-top h2{
    font-size: 52px;
  }


}

@media(max-width:768px){

  .story-section{
    padding: 50px 15px;
  }

  .story-top h2{
    font-size: 40px;
  }

  .glass-card{
    padding: 20px;
  }

  .glass-card p{
    font-size: 15px;
        margin-bottom: 15px;
  }

  .marquee-track span{
    font-size: 18px;
  }

}

@media(max-width:500px){

  .story-top h2{
    font-size: 32px;
  }
}









/* ==========================
   PREMIUM CERTIFICATE SECTION
========================== */

.certificate-showcase{
    padding: 80px 7%;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    font-family: 'Poppins', sans-serif;
}

/* heading */
.certificate-heading{
    text-align: center;
    margin-bottom: 50px;
}

.certificate-heading span{
    color: #9c7b47;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
}

.certificate-heading h2{
    font-size: 45px;
    margin-top: 5px;
    font-weight: 700;
}

/* grid */
.certificate-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
}

/* card */
.certificate-box{
    position: relative;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    padding: 5px;
    transition: .5s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* image */
.certificate-box img{
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    transition: .5s ease;
}

/* hover */
.certificate-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.certificate-box:hover img{
    transform: scale(1.03);
}

/* bottom title */
.certificate-info{
    text-align: center;
padding-top: 15px;
    padding-bottom: 10px;
}

.certificate-info h3{
    font-size: 20px;
    color: #111;
    font-weight: 600;
}

/* elegant border */
.certificate-box::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(156,123,71,.7),
        transparent,
        rgba(156,123,71,.4)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* responsive */
@media(max-width:768px){

    .certificate-showcase{
        padding: 50px 15px;
    }

    .certificate-heading h2{
        font-size: 32px;
    line-height: 1.2;
    margin-top: 10px;
    }

    .certificate-box img{
        height: auto;
    }

}







/* SECTION */

.fencing-products{
  position:relative;
  padding:80px 7%;
  overflow:hidden;
  background:radial-gradient(circle at top left, #1e3156 0%, transparent 30%), radial-gradient(circle at bottom right, #131b2a 0%, transparent 30%), linear-gradient(135deg, #1b1c1c, #042450);
}

.overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

.container{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:50px;
}

.tag{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  color:#8be9fd;
  font-size:14px;
  margin-bottom:15px;
}

.section-header h2{
  font-size:60px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:18px;
  color: #fff;
}

.section-header p{
  max-width:700px;
  margin:auto;
  color:#dcdcdd;
  font-size:18px;
  line-height:1.7;
}

/* GRID */

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:60px 30px;
}

/* CARD */

.product-card{
    padding: 0;
}
.product-card img{
  width:100%;
  height: auto;
  object-fit:cover;
  transition:0.6s ease;
}
.product-content{
  padding:0px;
}

.product-content h3{
    font-size: 1.5rem;
    margin: 15px 0 10px 0;
    font-weight: 700;
    color: #fff;
}
.product-content h3 a {
    color: #fff;
}
.product-content p{
  color:#091413;
  line-height:1.7;
  margin-bottom:26px;
}

/* FOOTER */

.product-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price{
  font-size:1.4rem;
  font-weight:800;
  color:#8be9fd;
}

.product-footer a.but_ton {
text-transform: capitalize;
    border-bottom: 1px solid #bfbfbf;
    padding: 0 0 2px 0;
    color: #ffffff;
}

button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(59,130,246,0.5);
}

/* FEATURED */

.featured{
    padding: 0;
}
/* RESPONSIVE */

@media(max-width:768px){

  .fencing-products{
    padding:50px 15px;
  }

  .section-header h2{
    font-size: 32px;
  }

  .product-card img{
    height: auto;
  }
}







/* ===== SECTION ===== */

.gy_steps_wrap{
    width:100%;
    padding:0px 7% 80px 7%;
    background:#fff;
}

.gy_steps_top{
    max-width:700px;
    margin-bottom:50px;
}

/* small tag */

.gy_steps_label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gy_steps_label::before{
    content:'';
    width:10px;
    height:10px;
    background:#fff;
    border-radius:50%;
}

/* heading */

.gy_steps_heading{
    font-size:45px;
    line-height:1.08;
    font-weight:700;
    margin-bottom:24px;
}

/* paragraph */

.gy_steps_text{
    font-size:16px;
    line-height:1.8;
    color:#5c5c5c;
    max-width:900px;
}

/* cards */

.gy_steps_grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

/* single card */

.gy_step_card{
    background:#f2f4f1;
    border:1px solid #e6dfd8;
    border-radius:28px;
    padding:28px 22px;
    transition:0.35s ease;
    min-height:290px;
    position:relative;
    overflow:hidden;
}

.gy_step_card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* number */

.gy_step_number{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#ff6600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    margin-bottom:28px;
}

/* title */

.gy_step_title{
    font-size:15px;
    line-height:1.35;
    font-weight:700;
    color:#000;
    margin-bottom:14px;
}

/* desc */

.gy_step_desc{
    font-size:16px;
    line-height:1.8;
    color:#2d2d2d;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1600px){

    .gy_steps_grid{
        grid-template-columns:repeat(5,1fr);
    }

    .gy_step_card{
        min-height:auto;
    }

}

@media(max-width:991px){

    .gy_steps_wrap{
        padding:0 15px 50px 15px;
    }

    .gy_steps_heading{
        font-size:46px;
    }

    .gy_steps_text{
        font-size:13px;
    }

    .gy_steps_grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gy_step_title{
        font-size:26px;
    }

    .gy_step_desc{
        font-size:18px;
    }

}

@media(max-width:600px){

    .gy_steps_heading{
        font-size:32px;
    }

    .gy_steps_grid{
gap: 15px;
        display: flex;
        flex-wrap: wrap;
    }

    .gy_step_card{
        padding:20px 15px;
        border-radius:22px;
        flex: 1 1 calc(54% - 20px);
    }

    .gy_step_title{
        font-size:16px;
    width: 90px;
    }

    .gy_step_desc{
        font-size:15px;
        line-height:1.5;
    }

}









/* SECTION */
.fence-industry-section{
    background:#f2f4f1;
    padding: 80px 7%;
}

.fence-industry-wrapper{
    max-width:1200px;
    margin:auto;
}

/* HEADING */
.fence-industry-heading{
    text-align:center;
    font-size:45px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:50px;
}

.fence-industry-heading span{
    display:block;
}

/* GRID */
.fence-industry-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    border-top: 1px solid rgb(153 152 152 / 25%);
    border-left: 1px solid rgb(153 152 152 / 25%);
}

/* ITEM */
.fence-industry-item{
    min-height:230px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:25px;
    text-align:center;
    border-right: 1px solid rgb(153 152 152 / 25%);
    border-bottom: 1px solid rgb(153 152 152 / 25%);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}
.fence-industry-item img {
        filter: invert(1);
}

/* HOVER EFFECT */
.fence-industry-item::before{
    content:"";
    position:absolute;
    width:0%;
    height:100%;
    background: rgb(0 0 0 / 5%);
    top:0;
    left:0;
    transition:0.5s;
}

.fence-industry-item:hover::before{
    width:100%;
}

.fence-industry-item:hover{
    transform:translateY(-8px);
}

/* ICON */
.fence-industry-icon{
    font-size:60px;
    color:#fff;
    position:relative;
    z-index:2;
}

/* TEXT */
.fence-industry-item h3{
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    position:relative;
    z-index:2;
}

/* RESPONSIVE */
@media(max-width:1100px){

    .fence-industry-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .fence-industry-heading{
        font-size:45px;
    }
}

@media(max-width:768px){

    .fence-industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .fence-industry-heading{
        font-size:34px;
    }

    .fence-industry-item{
        min-height:180px;
    }

    .fence-industry-icon{
        font-size:45px;
    }
}

@media(max-width:480px){

    .fence-industry-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .fence-industry-heading{
        font-size:25px;
        line-height: 1.3;
    }
}






/* ========== =============== */

.projects{
  padding:80px 7%;
}

.projects-header{
  margin-bottom:50px;
}

.projects-header p{
color: #9c7b47;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
        margin-bottom: 15px;
}

.projects-header .proh1{
  font-size: 45px;
  line-height:1.2;
  max-width:700px;
      font-weight: 700;
}

/* ========================= */
/* COLLAPSED COLLAGE GRID */
/* ========================= */

.projects-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

  grid-auto-rows:220px;

  gap:14px;

  grid-auto-flow:dense;
}

/* ========================= */

.project{
  position:relative;
  overflow:hidden;
  border-radius:5px;
  background:#111;

  cursor:pointer;

  isolation:isolate;
}

/* image */

.project img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:1s cubic-bezier(.19,1,.22,1);
}

/* dark overlay */

.project::after{
  content:"";
  position:absolute;
  inset:0;

  z-index:1;
}

/* ========================= */
/* DIFFERENT SIZES */
/* ========================= */

.project.large{
  grid-column:span 2;
  grid-row:span 2;
}

.project.wide{
  grid-column:span 2;
}

.project.tall{
  grid-row:span 2;
}

/* ========================= */
/* HOVER */
/* ========================= */

.project:hover img{
  transform:scale(1.08);
}

.project:hover{
  transform:translateY(-4px);
  transition:0.4s ease;
}


/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .projects-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .project.large,
  .project.wide,
  .project.tall{
    grid-column:span 1;
    grid-row:span 1;
  }

}




/* ========================= */
/* Footer */
/* ========================= */


.fw-footer-section{
      position:relative;
      background: radial-gradient(circle at top left, #1e3156 0%, transparent 30%), radial-gradient(circle at bottom right, #131b2a 0%, transparent 30%), linear-gradient(135deg, #1b1c1c, #042450);
      color:#fff;
      padding:80px 7% 0px 7%;
      overflow:hidden;
    }

    /* Background Glow */

    .fw-footer-section::before{
      content:"";
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(245,158,11,0.15);
      border-radius:50%;
      top:-180px;
      left:-120px;
      filter:blur(80px);
    }

    .fw-footer-section::after{
      content:"";
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(59,130,246,0.12);
      border-radius:50%;
      bottom:-180px;
      right:-100px;
      filter:blur(80px);
    }

    .fw-footer-wrapper{
      width:100%;
      margin:auto;

      display:grid;
      grid-template-columns:2fr 1fr 1fr 1.5fr;
      gap:40px;

      position:relative;
      z-index:2;
    }

    /* =========================
       Common Footer Style
    ========================== */

    .fw-footer-box h2,
    .fw-footer-box h3{
      position:relative;
      margin-bottom:28px;
      font-weight:600;
      letter-spacing:0.5px;
    }
    .fw-footer-box h2 a {
        color: #fff;
    }

    .fw-footer-box h2::after,
    .fw-footer-box h3::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-10px;
      width:65px;
      height:4px;
      border-radius:20px;
      background:linear-gradient(to right,#f59e0b,#ff6600);
    }

    .fw-footer-logo{
      font-size:35px;
      color:#fff;
      font-weight:700;
    }

    .fw-footer-desc{
      color:#cbd5e1;
      line-height:1.9;
      font-size:15px;
      margin-bottom:25px;
    }

    /* =========================
       Contact Info
    ========================== */

    .fw-contact-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .fw-contact-item{
      display:flex;
      align-items: center;
      gap:12px;
      color:#dbe4f0;
      font-size:15px;
    }

    .fw-contact-item i{
      width:38px;
      height:38px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,0.08);
      color:#ff6600;
      font-size:15px;
      flex-shrink:0;
    }

    /* =========================
       Social Icons
    ========================== */

    .fw-social-icons{
      display:flex;
      gap:12px;
      margin-top:30px;
    }

    .fw-social-icons a{
      width:45px;
      height:45px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;

      color:#fff;
      text-decoration:none;

      background:rgba(255,255,255,0.08);
      backdrop-filter:blur(10px);

      transition:0.4s ease;
    }

    .fw-social-icons a:hover{
      background:#ff6600;
      transform:translateY(-6px) rotate(360deg);
      box-shadow:0 10px 20px rgba(245,158,11,0.35);
    }

    /* =========================
       Footer Links
    ========================== */

    .fw-footer-links{
      list-style:none;
    }

    .fw-footer-links li{
      margin-bottom:16px;
    }

    .fw-footer-links a{
      color:#dbe4f0;
      text-decoration:none;
      transition:0.3s ease;
      position:relative;
      padding-left:25px;
      font-size:15px;
    }

    .fw-footer-links a::before{
      content:"➜";
      position:absolute;
      left:0;
      color:#fbbf24;
      transition:0.3s ease;
    }

    .fw-footer-links a:hover{
      color:#fbbf24;
      padding-left:24px;
    }

    /* =========================
       Blog Cards
    ========================== */

    .fw-blog-card{
      display:flex;
      gap:14px;
      margin-bottom:18px;

      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);

      padding:12px;
      border-radius:16px;

      backdrop-filter:blur(12px);

      transition:0.4s ease;
    }

    .fw-blog-card:hover{
      transform:translateY(-6px);
      border-color:rgba(245,158,11,0.5);
      box-shadow:0 15px 30px rgba(0,0,0,0.25);
    }

    .fw-blog-card img{
      width:90px;
      height:90px;
      object-fit:cover;
      border-radius:12px;
      flex-shrink:0;
    }

    .fw-blog-content h4{
      font-size:15px;
      line-height:1.5;
      margin-bottom:8px;
      color:#fff;
    }
    .fw-blog-content h4 a {
      color:#fff;
    }

    .fw-blog-content p{
      font-size:13px;
      line-height:1.7;
      color:#cbd5e1;
    }

    /* =========================
       Footer Bottom
    ========================== */

    .fw-footer-bottom{
      margin-top:70px;
      border-top:1px solid rgba(255,255,255,0.08);
      padding:22px 0;
      text-align:center;
      position:relative;
      z-index:2;
    }

    .fw-footer-bottom p{
      color:#94a3b8;
      font-size:14px;
      letter-spacing:0.5px;
      display: flex;
    justify-content: space-between;
    }
    .fw-footer-bottom p a {
      color:#fff;
    }

    /* =========================
       Responsive
    ========================== */

    @media(max-width:1100px){

      .fw-footer-wrapper{
        grid-template-columns:repeat(2,1fr);
      }

    }

    @media(max-width:700px){

      .fw-footer-wrapper{
        grid-template-columns:1fr;
        gap: 20px;
      }

      .fw-footer-section{
        padding: 50px 15px 0 15px;
      }

    }




.sprt {
border-top: 1px solid #505050;
    margin: 40px 0;
}
.dsktp_img {
    display: block;
}
.mbl_img {
    display: none;
}
.last_btn {
font-size: 16px;
    color: #091413;
    text-align: center;
    margin: 0 auto;
    display: block;
    border-bottom: 1px solid #b7b5b5;
    width: fit-content;
    margin-top: 25px;
    padding: 0 0 3px 0;
}
.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;
}





/* SECTION */
.yeCoi-section {
max-width: 100%;
    margin: auto;
    padding: 80px 2%;
}
/* GRID */
.yeCoi-grid {
    display:grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap:25px;
}
/* LEFT */
.yeCoi-leftBox {
    background:#f2f4f1;
    border-radius:35px;
    padding:60px;
    position:relative;
    overflow:hidden;
    min-height:520px;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.06);
}
.yeCoi-leftPattern {
    position:absolute;
    left:0;
    top:0;
    width:180px;
    height:100%;
    opacity:.25;
    background-image: radial-gradient(#f3cfd0 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}
.yeCoi-tagBadge {
    display:inline-flex;
    align-items:center;
    gap:10px;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:500;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}
.yeCoi-tagBadge i {
    color:#fff;
}
.yeCoi-titleMain {
    font-size:70px;
    line-height:0.95;
    font-weight:700;
    letter-spacing:-3px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}
.yeCoi-titleMain span {
    color:#1e549f;
}
.yeCoi-descText {
    font-size:16px;
    line-height:1.6;
    max-width:650px;
    margin-bottom:55px;
    position:relative;
    z-index:2;
}
.yeCoi-bottomBar {
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}
.yeCoi-btnPrimary {
    display:inline-flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    color:#000;
    background:#fff;
    border:2px solid #111;
    padding: 10px 18px;
    border-radius:60px;
    font-weight:600;
    transition:0.4s;
}
.yeCoi-btnPrimary:hover {
    background:#111;
    color:#fff;
}
.yeCoi-btnPrimary span {
    width:42px;
    height:42px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}
.yeCoi-contactLink {
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}
.yeCoi-contactLink i {
    width:42px;
    height:42px;
    border-radius:50%;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
}
/* RIGHT */
.yeCoi-rightBox {
    display:flex;
    flex-direction:column;
    gap:25px;
}
.yeCoi-imageCard {
    background:#f3d5d7;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    min-height:350px;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.06);
}
.yeCoi-imageCard img {
    width:100%;
        height: 420px;
    object-fit:cover;
}
/* INFO */
.yeCoi-infoGrid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.yeCoi-infoCard {
    background:#fff;
    border-radius:30px;
    padding:30px;
    min-height:170px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0, 0, 0, 0.05);
}
.yeCoi-infoCard--pink {
    background:#f3d5d7;
    padding: 20px;
    margin-bottom: 0px;
}
.yeCoi-infoCard h4 {
    font-size:34px;
    line-height:1.1;
    margin-bottom:20px;
}
.yeCoi-infoCard p {
    color:#444;
    line-height:1.7;
}
.yeCoi-arrowBtn {
position: absolute;
    right: 20px;
    bottom: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.yeCoi-reviewBig {
    font-size:58px;
    font-weight:700;
    margin-bottom:10px;
}
.yeCoi-reviewText {
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:991px) {
 .yeCoi-grid {
 grid-template-columns:1fr;
}
 .yeCoi-titleMain {
 font-size:55px;
}
 .yeCoi-leftBox {
 padding:20px 15px;
}
}
 @media(max-width:600px) {
 .yeCoi-titleMain {
 font-size:35px;
 line-height: 1.1;
}
 .yeCoi-infoGrid {
 grid-template-columns:1fr;
}
 .yeCoi-bottomBar {
 flex-direction:column;
 align-items:flex-start;
}
}



.xp-product-section{
    width: 100%;
    padding: 60px 20px;
  }

  .xp-product-title{
    text-align: center;
    font-size: 34px;
    color: #111827;
    margin-bottom: 40px;
    font-weight: 700;
  }

  .xp-product-grid{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .xp-product-card{
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
  }

  .xp-product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }

  .xp-product-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }

  .xp-product-name{
    padding: 12px;
    font-size: 18px;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
  }

  /* Tablet */
  @media screen and (max-width: 991px){
    .xp-product-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media screen and (max-width: 576px){
    .xp-product-grid{
      grid-template-columns: 1fr;
    }

    .xp-product-title{
      font-size: 28px;
    }
  }




.he_ro_client {
    padding: 80px 7% 80px 7%;
}



.ms-blog-inner-sec {
  padding: 80px 20px;
  background: #fff;
}

.ms-blog-inner-container {
  max-width: 1000px;
  margin: auto;
}

/* Main Image */
.ms-blog-inner-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 35px;
}

.ms-blog-inner-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Content */
.ms-blog-inner-content {
  color: #333;
}

.ms-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ms-blog-inner-title {
  font-size: 46px;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #111;
  font-weight: 700;
}

.ms-blog-inner-content p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: #555;
}

/* Headings */
.ms-blog-inner-content h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  color: #111;
}

/* Quote Box */
.ms-blog-quote {
  background: #f7f7f7;
  border-left: 5px solid #c89b63;
  padding: 30px;
  margin: 40px 0;
  border-radius: 12px;
}

.ms-blog-quote p {
  margin: 0;
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  color: #222;
}

/* Small Image */
.small-img {
  margin: 40px 0;
}
.ms-blog-inner-content ul {
    margin: 0 0 10px 30px;
}
/* Responsive */
@media (max-width: 991px) {
  .ms-blog-inner-title {
    font-size: 38px;
  }

  .ms-blog-inner-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .ms-blog-inner-sec {
    padding: 50px 15px;
  }

  .ms-blog-inner-title {
    font-size: 30px;
  }

  .ms-blog-inner-content p {
    font-size: 16px;
  }

  .ms-blog-quote {
    padding: 22px;
  }

  .ms-blog-quote p {
    font-size: 18px;
  }

  .ms-blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}






.ye-contact-area {
  padding: 80px 0;
}

.ye-contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */

.ye-contact-content {
  flex: 1;
  min-width: 320px;
}

.ye-contact-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #ff6b00;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.ye-contact-title {
  font-size: 42px;
  color: #1e293b;
  margin-bottom: 35px;
  font-weight: 700;
}

.ye-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Contact Cards */

.ye-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.ye-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.ye-contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ye-contact-icon i {
  color: #fff;
  font-size: 20px;
}

.ye-contact-details h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0f172a;
}

.ye-contact-details p,
.ye-contact-details a {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  text-decoration: none;
}

.ye-contact-details a:hover {
  color: #ff6b00;
}

/* Social Icons */

.ye-social-links {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.ye-social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.ye-social-links a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-4px);
}

/* Map */

.ye-contact-map {
  flex: 1;
  min-width: 320px;
}

.ye-contact-map iframe {
  width: 100%;
  height: 620px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Responsive */

@media (max-width: 768px) {

  .ye-contact-container {
    flex-direction: column;
  }

  .ye-contact-title {
    font-size: 32px;
  }

  .ye-contact-map iframe {
    height: 400px;
  }

}





.ye-newsletter-wrap {
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    width: 750px;
    margin: 0 auto;
        margin-bottom: 80px;
}

.ye-newsletter-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.ye-newsletter-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}

.ye-newsletter-title {
  text-align: center;
  margin-bottom: 40px;
}

.ye-newsletter-title span {
  display: inline-block;
  color: #ff6b00;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.ye-newsletter-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.ye-newsletter-form .form-group {
  margin-bottom: 25px;
}

.ye-newsletter-form .form-control {
  width: 100%;
  height: 58px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 15px;
  color: #334155;
  background: #f8fafc;
  transition: all 0.3s ease;
  box-shadow: none;
}

.ye-newsletter-form textarea.form-control {
  height: 160px;
  padding-top: 18px;
  resize: none;
}

.ye-newsletter-form .form-control:focus {
  border-color: #ff6b00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
  outline: none;
}

.ye-newsletter-form .form-control::placeholder {
  color: #94a3b8;
}

/* Captcha */

.ye-captcha-box {
  background: #f8fafc;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  padding: 20px;
}

.ye-captcha-box img {
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}

.ye-captcha-box label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #334155;
  font-weight: 500;
}

/* Submit Button */

.ye-submit-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b00, #ff9800);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
}

.ye-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(255, 107, 0, 0.35);
}

/* Responsive */

@media (max-width: 768px) {

  .ye-newsletter-box {
    padding: 30px 20px;
  }

  .ye-newsletter-title h2 {
    font-size: 30px;
  }

}






/* =========================
   Ultra Modern Glassmorphism FAQ
========================= */

.faqs_container{
    position: relative;
    padding: 50px 0;
    margin-top: 0px;
    overflow: hidden;
    background: #fafafa;
}

.faqs_container .container{
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Heading */

.faqs_head{
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 50px;
    position: relative;
}

.faqs_head span{
    background: linear-gradient(90deg,#06b6d4,#8b5cf6,#ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */

.faqs_area{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* FAQ Card */

.faqs_col details{
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: all .45s ease;
    box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 23%), 0 10px 40px rgb(0 0 0 / 9%);
}

/* Neon Border Glow */

.faqs_col details::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(135deg, #4a4a4a, #272728, #000000);
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: .4s;
}

.faqs_col details:hover::before,
.faqs_col details[open]::before{
    opacity: 1;
}

.faqs_col details:hover{
    transform: translateY(-6px) scale(1.01);
}

/* Question */

.faqs_col summary{
    list-style: none;
    padding: 18px 75px 18px 20px;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: .3s;
}

.faqs_col summary::-webkit-details-marker{
    display: none;
}

.faqs_col summary:hover{
    color: #ff5723;
}

/* Animated Icon */

.faqs_col summary::after{
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0c213d, #0c213d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    transition: all .4s ease;
}

.faqs_col details[open] summary::after{
    content: "-";
    transform: translateY(-50%) rotate(180deg);
    background: linear-gradient(135deg, #4a4a4a, #272728, #000000);
}

/* Open State */

.faqs_col details[open]{
    background: rgba(255,255,255,0.08);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(139,92,246,0.15);
}

/* Answer */

.faq__content{
    position: relative;
    padding: 0 30px 30px;
    animation: smoothReveal .5s ease;
}

.faq__content::before{
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: calc(100% - 10px);
    background: #6d6d6d;
    border-radius: 50px;
}

.faq__content p{
    padding-left: 22px;
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
    text-align: left;
}

/* Smooth Reveal */

@keyframes smoothReveal{
    from{
        opacity: 0;
        transform: translateY(-12px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Shine */

.faqs_col details:hover{
    background:
    linear-gradient(
        120deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
}

/* Responsive */

@media(max-width: 992px){

    .faqs_area{
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .faqs_head{
        font-size: 44px;
    }
}

@media(max-width: 600px){

    .faqs_container{
        padding: 40px 15px;
    }

    .faqs_head{
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .faqs_col summary{
        font-size: 16px;
        padding: 18px 75px 18px 20px;
    }

    .faqs_col summary::after{
        width: 42px;
        height: 42px;
        font-size: 22px;
        right: 18px;
    }

    .faq__content{
        padding: 0 22px 24px;
    }

    .faq__content p{
        font-size: 14px;
        line-height: 1.7;
    }
}


@media (max-width: 767px) {
body {
    font-size: 15px;
}
.top-container {
    max-width: 100%;
    padding: 12px 15px;
}
.top-left, .top-right {
    flex-direction: column;
}
.contact-btn {
    margin-top: 20px;
}
.navbar {
    max-width: 100%;
    padding: 15px 15px;
}
.logo img {
    width: 95%;
}
.hone {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 6px;
}
.enq_quick {
    padding: 40px 15px 45px 15px;
}
.enq_quick p {
    width: 100%;
}
.enq_quick_area {
    flex-direction: column;
}
.enq_quick_area input, .frm_drp {
    max-width: 80%;
    width: 100%;
}
.about-marquee {
    margin-top: 40px;
    padding: 18px 0;
}
.marquee-track {
    gap: 15px;
}
.hero-content .heroh1 {
    font-size: 25px;
}
.hero-content h5 {
    font-size: 15px;
}
.tag {
    font-size: 13px;
}
.section-header p {
    font-size: 16px;
    line-height: 1.5;
}
.product-grid {
    grid-template-columns: auto;
    gap: 40px;
}
.product-content h3 {
    font-size: 22px;
}
.certificate-heading {
    margin-bottom: 50px;
}
.gy_steps_top {
    max-width: 100%;
}
.gy_steps_label {
    font-size: 13px;
}
.gy_step_number {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.fence-industry-section {
    padding: 50px 15px;
}
.projects {
    padding: 50px 15px;
}
.projects-header .proh1 {
    font-size: 32px;
}
.fw-footer-logo {
    font-size: 28px;
    line-height: 1.7;
}
.fw-footer-bottom {
    margin-top: 40px;
}
.fw-footer-bottom p {
    flex-direction: column;
}
.dsktp_img {
    display: none !important;
}
.mbl_img {
    display: block !important;
}
.top-right span {
	display: none;
}
.yeCoi-section {
    padding: 50px 15px;
}
.yeCoi-descText {
    font-size: 15px;
}
.yeCoi-descText {
    margin-bottom: 40px;
}
.yeCoi-btnPrimary span {
    width: 35px;
    height: 35px;
}
.yeCoi-btnPrimary {
    padding: 8px 18px;
}
.yeCoi-imageCard {
    min-height: auto;
}
.yeCoi-imageCard img {
    height: auto;
}
.yeCoi-infoCard h4 {
    font-size: 30px;
}
.yeCoi-arrowBtn {
    bottom: 10px;
    width: 35px;
    height: 35px;
}
.yeCoi-reviewBig {
    font-size: 40px;
}
.yeCoi-infoCard {
    padding: 20px;
}
.xp-product-section {
    padding: 50px 15px;
}
.he_ro_client {
    padding: 50px 15px 0 15px;
}
.gallery-section {
    padding: 50px 15px !important;
}
.gallery-heading {
    margin-bottom: 30px !important;
}
.ms-project-gallery-sec {
    padding: 50px 15px;
}
.ms-blog-sec {
    padding: 50px 15px !important;
}
.ye-contact-map {
    min-width: 100%;
}
.ye-contact-area {
    padding: 50px 0;
}
.ye-newsletter-wrap {
    width: 100%;
    margin-bottom: 50px;
}
}