/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #003A8F;
    --light: #fff;
    --dark: #000;
	--secondary: #2E7D32;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
/* 	font-family: 'Merriweather', serif; */
	font-family: "Montserrat", sans-serif;
}
body {
/*     font-family: 'Titillium Web', sans-serif; */
    margin: 0;
    padding: 0;
	background: #f6f4ee;
	font-family: "Montserrat", sans-serif;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #ffffff00 !important;
    padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
    list-style: none;
    margin-left: -40px;
    padding: 0;
    gap: 0px !important;
}
.site-header .nav > li {
  position: relative;
}

.logo-box {
    position: relative;
    top: 0px;
    margin: 0px 0 0 -50px;
}
.logo-box img {
    width: 290px;
    height: 80px;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.6))
            drop-shadow(0 0 12px rgba(255,255,255,0.4));
}
.logo-box p {
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    width: 67%;
    margin: -9px 0px 0 35px;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
    text-decoration: none;
    padding: 5px 14px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    display: inline-block;
    color: #ffffff !important;
    font-size: 14px;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 50%;
    z-index: 2;
}
section.breadcrumb-section {
    background: url(https://alphastrongfibc.com/wp-content/uploads/2026/05/abtch1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
    z-index: 1;
}

section.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 71%);
    z-index: -1;
}
.breadcrumb-item.active {
    color: #fff;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-title h2 {
    color: var(--light);
}
li.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--yellow);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://alphastrongfibc.com/wp-content/uploads/2026/04/footer-bg-scaled.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
    padding-top: 60px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0d6efd4f, #1f8b3959);
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 299px;
    display: block;
    margin-left: -11%;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: linear-gradient(45deg, #2e7d32, #003a8f);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}

a.btn-primary {
    position: relative;
    padding: 12px 32px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    background: linear-gradient(45deg, #24992a, #003a8f);
    overflow: hidden;
    transition: 0.4s;
}
/* Glow layer */
a.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
}

/* Hover */
a.btn-primary:hover::after {
    transform: translateX(100%);
    transition: 0.6s;
}
.btn-primary:hover {
    background: #000;
}


/* -------------------
 * Hero Slider
 * --------------------  */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.bg-video {
    position: absolute;
    width: 100%;
    z-index: 1;
    object-position: center;
    object-fit: cover;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),   /* top = light */
        rgba(0, 0, 0, 0.7)    /* bottom = dark */
    );
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 77% !important;
    top: 50%;
    transform: translateY(-35%);
    text-align: center;
}
.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
}
.bg-clr {
    background: linear-gradient(90deg, #2e83ff, #01e30d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.client-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center; /* remove if left align needed */
}

.client-images {
    display: flex;
}

.client-images img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;

    margin-left: -15px; 
    transition: transform 0.3s ease;
}

.client-images img:first-child {
    margin-left: 0;
}

.tagline-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 16px;
}

/* Each word */
.tagline-text span {
    position: relative;
    opacity: 1;
}

.tagline-text span:not(:last-child)::after {
    content: "•";
    margin-left: 9px;
    color: #2d9f0a;
    font-size: 16px;
}
.hero-content p {
    margin-bottom: 0;
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.animate-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px);
    will-change: transform, opacity;
}
.counter-box {
    text-align: end;
    color: #fff;
}
.counter-box h3 {
    font-size: 93px;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 0;
    letter-spacing: -5px;
    background-image: url(https://alphastrongfibc.com/wp-content/uploads/2026/04/bg-counter.jpg);
    background-size: cover;
    background-position: left;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.counter-box h3 span {

}
.counter-box h3 span::after {
    content: attr(data-text);
    position: absolute;
    left: 6px;
    top: 6px;
    z-index: -1;
    color: rgba(0,0,0,0.1);
}
.counter-box p {
    font-size: 17px;
    opacity: 0.8;
    text-align: end;
    align-items: end;
    justify-content: end;
    display: flex;
    color: #fff;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
}



.heading {
    font-size: 34px;
    /* text-align: justify; */
    color: #000;
    line-height: 1.4;
    font-weight: 600;
}
.heading span {
    color:var(--primary);
    transition: color 0.3s ease;
}
/* ------------------
 * About Us
 * ------------------- */
.about-section {
    padding: 80px 0px 40px;
    background: #f8f9fb;
}
.container {
    max-width: 1250px;
    margin: auto;
}

.about-header {
    text-align: center;
    margin-bottom: 26px;
}


.tag {
    position: relative;
    display: inline-block;
    /* background: #fff; */
    padding: 6px 14px 6px 67px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.tag::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 37%;
    transform: translateY(-72%);
    width: 70px;
    height: 70px;
    background: url('https://alphastrongfibc.com/wp-content/uploads/2026/05/tagimage-e1778219032762.png') no-repeat center;
    background-size: contain;
}
.about-header h2 {
    font-size: 32px;
/*     font-weight: 600; */
    line-height: 1.4;
    width: 74%;
    margin: 0 auto;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.about-content ul {
    margin: 20px 0;
    padding: 0;
}

.about-content ul li {
    list-style: none !important;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

/* Green bullet */
.about-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #22c55e;
    font-size: 24px;
    line-height: 1;
}
/* EXPERIENCE */
.experience {
    margin-top: 16px;
}

.experience p {
    font-size: 14px;
    color: #777;
}

.about-center {
    height: 449px;
    position: relative;
}
.about-center img {
    width: 100%;
    height: 442px;
    border-radius: 15px;
    object-fit: cover;
    object-position: left;
}
.about-center .counter-box {
    text-align: end;
    color: #fff;
    position: absolute;
    background: #003a8f;
    padding: 20px;
    right: 0;
    top: -55px;
    border: 6px solid;
    border-radius: 16px 0 0 16px;
}
section .about-section .heading {
    font-size: 32px;
    text-align: left !important;
    color: #000;
    line-height: 1.4;
    font-weight: 600;
}

/* RIGHT */
.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-img {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    padding: 6px;
    border-radius: 5px;
    border: 2px solid var(--secondary);
    perspective: 600px; /* needed for 3D */
}

/* IMAGE */
.icon-img img {
    width: 50px;
    height: 50px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    padding: 3px;
}

/* HOVER EFFECT */
.feature:hover .icon-img img {
    transform: rotateY(180deg);
}
.feature h4 {
    margin: 0;
    font-size: 16px;
}

.feature p {
    font-size: 14px;
    color: #666;
}
p.about-highlight {
    font-size: 14px;
    font-family: cursive;
    color: var(--secondary);
    font-weight: 600;
}


.experience .counter-box {
    text-align: center;
    color: #fff;
}

section.cerification .counter-box {
    text-align: start;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature {
        justify-content: center;
    }
}

/* Industries we serve */
.services-section {
    position: relative;
    padding: 40px 0;
    background: url('https://alphastrongfibc.com/wp-content/uploads/2026/04/warehouse-interior-with-rows-stacked-bags-showcasing-organized-storage-industrial-logistics_409674-15619.jpg') center/cover no-repeat;
    background-attachment: fixed; 
    color: #fff;
    overflow: visible;
    height: 80vh;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.services-top {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.services-top h2 {
    font-size: 42px;
}

.scroll-wrapper {
    margin-top: 80px;
    overflow: hidden;
    cursor: grab;
    position: relative;
}

.scroll-wrapper:active {
    cursor: grabbing;
}

.scroll-track {
    display: flex;
    gap: 20px;
    padding: 40px;
    width: max-content;
    will-change: transform;
}

/* .service-item {
    min-width: 260px;
    background: #fff;
    color: #222;
    border-radius: 20px;
    padding: 25px;
    flex-shrink: 0;
    transition: 0.3s;
}
 */
.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 64px;
    margin-bottom: 15px;
}
.scroll-wrapper {
  overflow: hidden;
  cursor: grab;
}

.scroll-wrapper:active {
  cursor: grabbing;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ffcc00;
  opacity: 1;
}
.scroll-track {
  display: flex;
  gap: 20px;
  padding: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* hide scrollbar */
  scrollbar-width: none;
}
.servicesSwiper {
    width: 86%;
    background: var(--primary);
    border-radius: 18px;
    position: absolute;
    transform: translateX(9%);
    bottom: -8%;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

.service-item {
  min-width: 260px;
	height:200px !important;
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 25px;
  flex-shrink: 0;
  transition: 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
}

.swiper-slide {
  width: auto;
}
.services-top .tag {
    color: #fff !important;
    font-size: 18px;
}
.col-lg-6.services-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
/*     text-align: center; */
}
.col-lg-6.services-top p {
	margin-bottom:0px !important;
}
.services-section .services-top .tag::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-72%);
    width: 29px;
    height: 32px;
    background: url('https://alphastrongfibc.com/wp-content/uploads/2026/05/tagimage-e1778219032762.png') no-repeat center;
    background-size: contain;
}

/* Sustainability */

.why-section {
    padding: 60px 0 40px;
    background: #f4f4f4;
}
.why-left h2 {
    font-size: 32px;
    text-align: left;
}
.why-left p {
    color: #666;
    margin-bottom: 30px;
}

/* CARDS */
.why-left .why-cards {
    display: flex;
    gap: 20px;
}

.why-left .why-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    transition: 0.3s;
    display: block;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-left .why-card .icon {
    width: 76px;
    height: 76px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid var(--secondary);
}

.why-left .why-card .icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.why-left .why-card h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

.card-link {
    display: block;
    margin-top: 15px;
    color: #999;
    font-size: 13px;
}

/* RIGHT IMAGES */
.why-images {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    height: 520px;
    object-fit: cover;
}

.small-img {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60%;
    border-radius: 15px;
    border: 5px solid #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .why-cards {
        flex-direction: column;
    }

    .small-img {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }
}

/* Home blog section */
.home-blog-section {
    padding: 40px 0px;
    background: #f8f9fb;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    margin-bottom: 40px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 14px;
    color: var(--secondary);
}

.blog-title {
    font-size: 20px;
    margin: 10px 0;
}

.blog-title a {
    color: var(--primary);
    text-decoration: none;
}

.blog-content p {
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.blog-btn {
    display: inline-block;
    margin-top: 10px;
     color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}


.blog-btn:hover {
    text-decoration: underline;
}

/* Product section */
.product-section {
    padding: 40px 0 40px;
    background: #e4e8ef;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* TABS */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
}

/* CONTENT */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    opacity: 0;
    transform: translateY(100%);
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE */
@media(max-width:1024px){
    .product-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:768px){
    .product-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:480px){
    .product-grid{grid-template-columns:1fr;}
}



/* CARD */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

/* IMPORTANT: don't use gap in swiper */
.myProductSlider .swiper-wrapper {
  align-items: stretch;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
}

.product-overlay h4 {
  margin: 5px 0;
  font-size: 18px;
}

.product-overlay p {
  font-size: 14px;
}


/* ✅ TYPE BADGE TOP RIGHT */
.product-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    font-weight: 500;
}

/* OPTIONAL: glass effect */
.product-type {
  backdrop-filter: blur(6px);
}

/* SWIPER */
.myProductSlider {
  position: relative;
}

/* ARROWS */
.myProductSlider .swiper-button-next, .myProductSlider .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: linear-gradient(45deg, black, var(--secondary));
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.myProductSlider .swiper-button-next:hover,
.myProductSlider .swiper-button-prev:hover {
  background: #000;
}

.myProductSlider .swiper-button-next::after,
.myProductSlider .swiper-button-prev::after {
  font-size: 14px;
}

/* PAGINATION */
.myProductSlider .swiper-pagination-bullet-active {
  background: #ff6600;
}


/* About Page */

/* Counter Section  */
.counter-section {
  background: #111;
}

.counter-icon {
  margin-bottom: 15px;
}

.counter-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white icon */
}

/* NUMBER */
.counter-number {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* TEXT */
.counter-text {
  font-size: 15px;
  color: #ccc;
}

/* HOVER EFFECT */
.counter-box:hover .counter-text {
  color: #fff;
}

/* Certification */
section.cerification {
    position: relative;
    background: url("https://alphastrongfibc.com/wp-content/uploads/2026/04/counter-bg.avif") center/cover no-repeat fixed;
    padding: 80px 0;
    /* min-height: 424px; */
    display: flex;
    align-items: center;
    z-index: 1;
}

/* DARK OVERLAY */
section.cerification::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #003a8fbd, #000000cc);
    z-index: -1;
}

/* keep content above overlay */
section.cerification .container {
    position: relative;
    z-index: 2;
}
section.cerification .heading span {
    color: #ffffff;
    transition: color 0.3s ease;
}
.cerification span.tag {
    color: #fff;
}
.cerification .tag::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-72%);
    width: 29px;
    height: 32px;
    background: url('https://alphastrongfibc.com/wp-content/uploads/2026/04/power-plantwhite.png') no-repeat center;
    background-size: contain;
}
.cerification .counter-box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(45deg, #003a8f, #000000);
    padding: 50px 20px;
    transition: 0.3s;
    height: 100%;
    gap: 30px;
    border: 1px solid;
}

/* ICON LEFT */
.counter-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

/* RIGHT CONTENT */
.counter-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.counter-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.counter-line {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* HOVER */
.cerification .counter-box:hover {
    background: linear-gradient(45deg, black, #47a259);
}
.counter-box:hover .counter-text {
  color: #fff;
}

/* Vision Mission  */
.vmv-section {
  background: #f9f9f9;
}

/* BOX */
.vmv-box {
    background: #ebeaea;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 4px var(--primary);
}

.vmv-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vmv-icon {
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid;
    box-shadow: 0 4px 6px #000000b0;
}

.vmv-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TITLE */
.vmv-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* DESC */
.vmv-desc {
  font-size: 14px;
  color: #666;
}

/* Sustainability Page */

section.Commitment-sec {
    padding: 40px 0px;
}
section.Commitment-sec p {
    max-width: 1037px;
    margin: 0 auto 10px;
    text-align: center;
}

section.goals-sec {
    padding: 40px 0px;
    background: #c0d1c9cf;
}
.goal-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 1px solid var(--secondary);
}
.goal-card:hover {
    transform: translateY(-10px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #000, var(--primary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
    border: 1px dashed #ffffff;
}
.goal-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.goal-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.goal-card p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
}


/* Conatct Page */
.contact-inner-section,
.contact-form {
    padding: 40px 0;
    background: #f8fafc;
}

.contact-form {
    padding-top: 0;
}
.inner-contact-form {
    width: 900px;
    margin: 0 auto;
    padding: 40px 40px 30px;
    background: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 18px;
}


.conatct-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 160px !important;
}
.col-lg-4.info-card.h-100 {
    height: 180px !important;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

.info-card i {
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #000, var(--primary));
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
}

.info-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.info-card span {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Form */
.inner-contact-form .wpcf7-form {
    margin-top: 20px;
}

.inner-contact-form input, .inner-contact-form textarea {
    width: 815px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.3s ease;
}

.inner-contact-form input:focus,
.inner-contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    outline: none;
}

.inner-contact-form textarea {
    min-height: 160px;
    resize: none;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    height: 200px;
}
.inner-contact-form input[type="submit"] {
    background: linear-gradient(45deg, #000, var(--primary));
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.inner-contact-form input[type="submit"]:hover {
    transform: translateY(-4px);
}

/* Map */
.map-section {
    padding: 0;
}

.map iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 0;
    filter: grayscale(20%);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-page-box {
        padding: 35px;
    }

    .main-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-page-box {
        padding: 25px;
    }
}


/* career Page  */
.career-hero {
    background: #fff;
    /* color: #fff; */
    padding: 40px 0px;
}


.career-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto;
}

.career-hero .btn {
    padding: 12px 30px;
    border-radius: 30px;
}

.benefits-section {
    background: #f8fafc;
}
.benefit-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 200px;
    border: 1px solid var(--secondary);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.benefit-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.apply-section {
    background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

.apply-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CF7 styling */
.apply-form-box input,
.apply-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.apply-form-box input[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
}
.apply-form-box p {
    margin-bottom: 0;
}

.apply-form-box input[type="submit"]:hover {
    transform: translateY(-3px);
}
.apply-form-box .form-control {
    width: 100%;
    padding: 18px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 15px;
    appearance: none;
    background-color: #fff;
}

/* Custom arrow */
.apply-form-box select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg fill='%236b7280' height='20' viewBox='0 0 20 20' width='20'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* Focus effect */
.apply-form-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    outline: none;
}
img.career-img {
    height: 480px;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: left;
}
.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.category-line {
    width: 70px;
    height: 3px;
    background: var(--primary);
    border: none;
    margin: 10px 0 30px;
}
.product-section .product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 20px;

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

    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* Show on hover */
.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Text */
.product-overlay h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-overlay p {
    font-size: 14px;
    line-height: 1.6;
}

/*  */


.industries-section{
    background:#f8f9fa;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:10px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.section-desc{
    max-width:650px;
    margin:auto;
    color:#666;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:0.4s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    border:1px solid #eee;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-bottom: 5px solid var(--primary);
}

.industry-icon{
    font-size:45px;
    margin-bottom:20px;
}

.industry-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.industry-card p{
    color:#666;
    margin:0;
    font-size:15px;
}

/* Translator */
.floating-translator {
    position: fixed;
    right: 34px;
    bottom: 18%;
    z-index: 9999;
}

/* Globe Button */
.translator-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, black, #198754);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
    border: 1px solid #003a8f;
}

.translator-toggle:hover{
    background: #084298;
}

.gt_options.gt-open {
    /* width: 229px !important; */
    max-width: 200px !important;
}
/* Language Box */
.translator-dropdown{
    position: absolute;
    right: 70px;
    bottom: 0;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: none;
    min-width: 180px;
}

/* Show on active */
.floating-translator.active .translator-dropdown{
    display: block;
}

/* Why Us */
.why-us-section {
    padding: 60px 20px;
    background: #8c8e9100;
    overflow: hidden;
}
.why-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.why-column{
  display:flex;
  flex-direction:column;
  gap:25px;
  flex:1;
  min-width:280px;
}

.center-image{
  flex:1;
  text-align:center;
  position:relative;
}

.center-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 380px;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(45deg, black, #003a8f);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}
.why-wrapper  .why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff !important;
}

.why-card:hover{
  transform:translateY(-8px);
  border-color:#00d084;
  box-shadow:0 15px 35px rgba(0,208,132,0.25);
}

.why-wrapper .why-card .icon {
    width: 95px;
    height: 60px;
    background: linear-gradient(45deg, #136b42, #000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid #ffffff;
    font-size: 26px;
    color: #fff;
}

.why-card p{
  color:#bbb;
  line-height:1.6;
}

/* Responsive */

@media(max-width:991px){

  .why-wrapper{
    flex-direction:column;
  }

  .section-heading h2{
    font-size:36px;
  }

  .center-image{
    order:-1;
    margin-bottom:20px;
  }

}


/* Testimonial  */
.testimonial-section {
    background: #5a7fad59;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-slider{
  position:relative;
  min-height:220px;
}

.testimonial {
    display: none;
    padding: 40px;
    background: #003a8f;
    border: 1px solid rgb(0 0 0);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.5s ease;
}

.testimonial.active{
  display:block;
  animation:fade 0.6s ease;
}

.testimonial p{
  font-size:18px;
  line-height:1.8;
  color:#cfd6dd;
  margin-bottom:20px;
}

.testimonial h4{
  font-size:20px;
  margin-bottom:5px;
}

.testimonial span{
  color:#00d084;
  font-size:14px;
}

.controls{
  margin-top:25px;
}

.controls button{
  background:#00d084;
  border:none;
  color:#000;
  font-size:18px;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  margin:0 8px;
  transition:0.3s;
}

.controls button:hover{
  transform:scale(1.1);
}

@keyframes fade{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

@media(max-width:768px){
  .section-head h2{
    font-size:30px;
  }

  .testimonial{
    padding:25px;
  }
}

/* Quality and  Hygiene */
.quality-section {
    background: #f6fbff;
    padding: 60px 20px;
    color: #0b1b2b;
}

.quality-section .container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT SIDE */
.quality-content{
  flex:1;
}

.sub{
  color:#00a86b;
  font-weight:600;
  letter-spacing:2px;
  font-size:13px;
}

.quality-content h2 {
    font-size: 40px;
    margin: 0px 0 15px;
    line-height: 1.3;
}

.quality-content p{
  color:#4a5a6a;
  line-height:1.8;
  margin-bottom:20px;
}

.quality-points{
  margin-top:30px;
}

.point{
  background:#ffffff;
  border-left:4px solid #00a86b;
  padding:18px 20px;
  margin-bottom:15px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.point:hover{
  transform:translateX(5px);
}

.point h4{
  font-size:16px;
  margin-bottom:5px;
}

.point p{
  font-size:14px;
  color:#5b6b7a;
}

/* RIGHT SIDE */
.quality-visual{
  flex:1;
}

.image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    height: 335px;
}

.image-box img {
    width: 100%;
    display: block;
    height: inherit;
    object-fit: cover;
}

.quality-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
}

.q-card{
  background:#ffffff;
  padding:18px;
  border-radius:12px;
  border:1px solid #e6eef5;
  transition:0.3s ease;
}

.q-card:hover{
  border-color:#00a86b;
  box-shadow:0 10px 25px rgba(0,168,107,0.15);
  transform:translateY(-5px);
}

.q-card h3{
  font-size:16px;
  margin-bottom:6px;
}

.q-card p{
  font-size:13px;
  color:#5b6b7a;
  line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:900px){
  .container{
    flex-direction:column;
  }

  .quality-content h2{
    font-size:30px;
  }
}

section.global-sec {
    padding: 50px 0;
    background: #ffff;
}
.bg-img {
    margin-top: -30px !important;
}
img.map-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    display: flex;
	margin-top:20px;
}

/* GTranslate Wrapper */
.gtranslate-wrapper {
    display: flex;
    align-items: center;
    position: absolute !important;
    right: 9px !important;
    top: 52px !important;
}

.gt_float_switcher .gt_options.gt-open {
    opacity: 1;
    transform: translateX(0px);
    background: #fff !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
    display: inline-block;
    height: 9px !important;
    width: 6px !important;
    background-size: 8px !important;
    background-repeat: no-repeat;
    transition: all .3s;
    transform: rotate(-180deg);
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    position: relative;
    top: -1px !important;
    font-size: 11px !important;
}
.gt_float_switcher img {
    vertical-align: middle;
    width: 20px !important;
}
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 8px 15px !important;
}
.gt_float_switcher .gt_options a {
    font-size: 12px !important;
}


/* -------------------------
 * Responsive 
 * ------------------------- */
@media(max-width:991px){
.site-header .nav {
    display: none !important;
}
	.logo-box {
    margin: 0px 0 0 -25px !important;
}
	button#mobileMenuBtn {
    display: block !important;
    background: var(--secondary) !important;
    color: #fff !important;
}
	.hero-content h1 {
    font-size: 40px !important;
}
	#menu-primary-1 li {
    padding: 8px !important;
    border-bottom: 1px solid #fff;
}
	#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
}
	.container {
    max-width: 900px !important;
}
	section.about-section .row {
    row-gap: 45px;
}
	.about-center img {
    object-position: top !important;
}
	.center-image img {
    width: 100%;
    max-width: 100% !important;
}
	.why-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
	.center-image {
    order: 0 !important;
}
	footer p {
    width: 341px;
}
	.copyright p {
    margin: 0 auto !important;
    width: 100%;
}
	.quality-section .container {
    gap: 60px;
    align-items: center;
	display:block;
}
	.quality-content h2 {
    font-size: 34px;
}
	.why-left .why-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
}
	.small-img {
    position: absolute;
    right: 0 !important;
    bottom: 0;
    margin-top: 20px;
    width: 36%;
}
	.blog-page .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.blog-page .row .col-md-4.col-sm-6.mb-4.d-flex {
    width: 100% !important;
}
	.conatct-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
	.info-card:last-child {
    grid-column: 1 / -1;  
    justify-content: center;
}
	.inner-contact-form {
    width: 800px;
}
	.inner-contact-form input, .inner-contact-form textarea {
    width: 700px;
}
}

@media(max-width:767px){
.container {
    max-width: 740px !important;
	 flex-direction: row !important;
}
	.inner-contact-form {
    width: 674px;
}
	.inner-contact-form input, .inner-contact-form textarea {
    width: 580px;
}
	.footer_menu {
    padding: 0;
}
	footer a.footer-logo img {
    margin-left: -5%;
}
	.footer_menu .row {
    row-gap: 20px;
}
	.product-category.mb-5 .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	section.cerification .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	section.vmv-section.py-5 .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.vmv-section.py-5 .row > div:last-child {
    grid-column: 1 / -1;
}
	.hero-content h1 {
    font-size: 34px !important;
}
	.hero-content {
    transform: translateY(-27%);
}
	.why-wrapper  .why-card h3 {
    font-size: 18px;
}
}
@media(max-width:667px){
.container {
    max-width: 630px !important;
    flex-direction: row !important;
}
	.top-bar a {
    font-size: 14px;
}
	.top-bar-icon .social-icons a i {
    height: 24px;
    width: 24px;
}
	.top-bar i {
    color: #fff;
    font-size: 14px;
}
	.heading {
    font-size: 25px;
}
	.why-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
	.why-wrapper .why-card .icon {
    width: 82px;
    height: 82px;
}
	.quality-content h2 {
    font-size: 25px;
}
	.about-header h2 {
    line-height: 30px;
    font-size: 25px;
}
	img.map-img {
    margin-top: 64px;
}
	.why-left h2 {
    font-size: 25px !important;
}
	.inner-contact-form {
    width: 560px;
}
	.inner-contact-form input, .inner-contact-form textarea {
    width: 464px;
}
}
@media(max-width:667px){
.container {
    max-width: 545px !important;
    flex-direction: row !important;
}
}	
@media(max-width:568px){
	.top-bar {
    display: none !important;
}
	.gtranslate-wrapper {
    top: 9px !important;
}
	.hero-content h1 {
    font-size: 28px !important;
}
	.counter-box h3 {
    font-size: 45px;
}
	.product-card {
    height: 400px;
}
	section.cerification .row {
    display: grid;
    grid-template-columns: 1fr;
}
	.cerification .counter-box {
    width: 76%;
    margin: 0 auto;
    justify-content: center;
}
	section.vmv-section.py-5 .row {
    display: grid;
    grid-template-columns: 1fr;
}
	.product-category.mb-5 .row {
    display: grid;
    grid-template-columns: 1fr;
}
	.why-left .why-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}
	.blog-page .row {
    display: grid;
    grid-template-columns: 1fr;
}
	.blog-img img {
    width: 100%;
    height: 305px;
    object-fit: cover;
}
	.conatct-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
	.inner-contact-form {
    width: 472px;
}
	.inner-contact-form input, .inner-contact-form textarea {
    width: 390px;
}
}
@media(max-width:479px){
.client-images {
    display: none;
}
	.site-header .main-header {
    padding: 0px 0 0px;
}
	button#mobileMenuBtn {
    margin-top: 35px;
}
	a.btn-primary {
    padding: 8px 19px;
}
	.video-hero {
    height: 92vh;
}
	.bg-video {
    height: 92vh;
}
	.container {
    max-width: 457px !important;
    flex-direction: row !important;
}
	section.about-section .row {
    row-gap: 72px;
}
	.inner-contact-form {
    width: 100%;
}
	.inner-contact-form input, .inner-contact-form textarea {
    width: 100%;
}
}
@media(max-width:414px){
	
	.client-tagline {
    display: none !important;
}
}
@media(max-width:379px){

	.logo-box img {
    width: 240px;
    height: 71px;
}
/* 	.video-hero {
    height: 62vh;
} */
	.client-tagline {
    margin-bottom: 7px;
}
/* 	.hero-content p {
    display: none;
} */
	.counter-box p {
    display: block !important;
}
	.container.hero-content a.btn-primary {
    padding: 8px 19px;
/*     display: none; */
}
	.counter-box {
    margin-top: 30px;
}
	.about-section {
    padding: 50px 0px 40px;
    background: #f8f9fb;
}
	.heading {
    font-size: 20px;
}
	.tag::before {
    left: -4px;
    width: 57px;
    height: 41px;
}
	.tag {
    padding: 6px 14px 6px 55px;
}
	.about-left p {
    font-size: 14px;
}
	.why-wrapper .why-card .icon {
    width: 108px;
    height: 55px;
}
}