* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo img {
  /*height: 74px;*/
  width: 290px;
  object-fit: contain;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: #134095;
  font-weight: 400;
  font-size: 18px;
  position: relative;
  padding: 5px 2px;
  transition: 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #f00;
  transition: 0.3s ease;
}
.main-nav a:hover {
 /* color: #fff;*/
  text-decoration: none;
}

.main-nav a:hover::after {
  width: 100%;
}
.dropdown {
  position: relative;
}

.dropdown ul {
 position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  width: 300px;
  margin-top: 0;
  padding: 8px 8px;
  border-radius: 6px;
  gap: 6px;
}

.dropdown:hover ul {
  display: flex;
}

.dropdown ul li {
  padding: 6px 12px;
  background: #d7e7ff82;
  border-radius: 10px;
}

.dropdown ul li a {
  display: block;
  padding: 6px 12px; 
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 18px;  
  white-space: normal; 
  transition: 0.2s;
}

.dropdown ul li:hover {
background: #dd4409;
	color: #fff;
}

.dropdown ul li a:hover {
background: #dd4409;
	color: #fff;
}

.dropdown ul li a::after {
  display: none;
  content: none;
}
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.search {
  display: flex;
}

.search input {
  padding: 8px;
  border: 1px solid #00b4cc;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.search button {
  padding: 8px 12px;
  border: 1px solid #00b4cc;
  background: #f00;
  color: #fff;
  border-radius: 0 5px 5px 0;
}

.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.hero-slider {
  width: 100%;
}
.hero-slide {
  position: relative;
  width: 100%;
  /* height: 400px; */
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  /* height: 400px; */
  object-fit: fill;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.28); */
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 650px;
  color: #fff;
}

.hero-content h1 {
  font-size: 62px;
  line-height: 72px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 28px;
  color: #f2f2f2;
}

.hero-content a {
  display: inline-block;
  padding: 14px 34px;
  background: #f00;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.hero-content a:hover {
  background: #134095;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  z-index: 99;
  transition: 0.3s;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.hero-slider .slick-prev {
  left: 30px;
}

.hero-slider .slick-next {
  right: 30px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  font-size: 24px;
  color: #fff;
  opacity: 1;
}

 

.hero-slider .slick-dots {
  position: absolute;
  bottom: 28px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.hero-slider .slick-dots li {
  margin: 0 6px;
  width: auto;
  height: auto;
}

.hero-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #808080;
  border: none;
  padding: 0;
}

.hero-slider .slick-dots li button:before {
  display: none;
}

.hero-slider .slick-dots li.slick-active button {
  background: #fff;
  transform: scale(1.2);
}

.products {
  padding: 60px 40px;
  background: #fff;
	padding: 6% 0px;
	background-image: url("../images/icon-bgs.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 240px);
  justify-content: center;
  gap: 25px;
}

.card {
  width: 240px;
  height: 170px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgb(146, 200, 252);
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-top: 20px;
	align-self: center;
}
.card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-align: center;
  padding: 14px 10px;
  line-height: 24px;
}

.about-section {
  width: 100%;
  padding: 90px 40px;
  background: #e2f0fe;
  display: flex;
  justify-content: center;
}
.about-wrapper {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: center;
}

.about-left {
  width: 50%;
}

.about-small-title {
  font-size: 40px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 14px;
}

.about-main-title {
  font-size: 16px;
  line-height: 35px;
  font-weight: 400;
  color: #333;
  margin-bottom: 22px;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 22px;
}

.about-text {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 25px;
  background: #eee;
  color: #111;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.about-btn:hover {
  color: #007bff;
  text-decoration: underline;
}

.about-right {
  width: 45%;
}

.about-right img {
  width: 100%;
  height: 377px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.industries {
  padding: 60px 0px 0px 0px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.industries-wrapper {
  width: 100%;
  max-width: 1440px;
}

.industry-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #0548a4;
  margin-bottom: 50px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  width: 100%;
  height: 272px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #134095;
  color: #fff;
  text-align: center;
  padding: 18px 12px;
  font-size: 20px;
  font-weight: 500;
}

/* DEAL */
.deal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.deal button {
  background: #e6320d;
  border: none;
  outline: none;
  box-shadow: none;

  border-radius: 6px;
  color: #fff;

  font-size: 25px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;

  padding: 18px 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.deal button:hover {
  background: #10b1b8;
  transform: translateY(-2px);
}

/* FOOTER */

.main-footer {
  background: #fff;
  border-radius: 40px 40px 0px 0px;
  box-shadow: 0 0 20px 0 #c9c9c9;
  padding: 65px 40px 20px;
  overflow: hidden;
}

.footer-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr 1fr;
  gap: 55px;
}

.footer-logo {
  width: 274px;
  max-width: 100%;
  height: 83px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-about-text {
  font-size: 17px;
  font-weight: 400;
  color: #000;
}

.footer-links h3,
.footer-deal h3,
.footer-contact h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 28px;
}

.footer-links ul,
.footer-deal ul {
  list-style: none;
}

.footer-links ul li,
.footer-deal ul li {
  margin-bottom: 8px;
  line-height: 24px;
}

.footer-links ul li a,
.footer-deal ul li,
.footer-contact p,
.footer-contact a {
  line-height: 24px;
}

.footer-links ul li a,
.footer-deal ul li {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-links ul li a,
.footer-deal ul li a,
.footer-contact a,
.footer-about a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-links ul li a:hover,
.footer-deal ul li a:hover,
.footer-contact a:hover,
.footer-about a:hover {
  color: #000;
  text-decoration: none;
}

.footer-contact p {
  font-size: 17px;
  color: #000;
  font-weight: 400;
  margin-bottom: 14px;
}

.footer-contact a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.footer-social span {
  font-size: 16px;
  color: #111;
  font-weight: 500;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e4e4e4;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
  font-size: 16px;
margin-top: 5px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #e6320d;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  width: 100%;
  /*max-width: 1700px;
  margin: 45px auto 0;*/

  border-top: 1px solid #d6d6d6;

  text-align: center;
  padding-top: 18px;

  font-size: 14px;
  color: #111;
  line-height: 24px;
}

.copy {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.mobile-menu-btn {
  display: none;
}
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
  }

@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    width: 170px;
    height: 52px;
    object-fit: contain;
  }
  .search {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 76px);
    background: #fff;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    z-index: 1000;
    padding: 20px 0;
  }
  .main-nav.active {
    left: 0;
  }

  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 15px;
  }
  .dropdown ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #f8f8f8;
  }

  .dropdown.active ul {
    display: block;
  }

  .dropdown ul li a {
    padding-left: 35px;
    font-size: 14px;
    line-height: 22px;
  }
  .hero-slide,
  .hero-slide img {
    height: 500px;
  }

  .hero-content {
    text-align: center;
    left: 20px;
    right: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .hero-content a {
    padding: 12px 28px;
    font-size: 15px;
  }

  .hero-slider .slick-prev {
    left: 12px;
  }

  .hero-slider .slick-next {
    right: 12px;
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 42px;
    height: 42px;
  }

  .products {
    padding: 55px 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }
  .card {
    width: 100%;
    max-width: 260px;
    height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 16px 12px;
    border-radius: 16px;
  }

  .card img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .card h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .about-section {
    padding: 50px 16px;
    background: #d9eced;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-small-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 14px;
    text-align: left;
  }

  .about-main-title {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 16px;
    color: #333;
    text-align: left;
  }

  .about-subtitle {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: left;
  }

  .about-text {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 14px;
  }

  .about-btn {
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 8px;
  }

  .about-right img {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
    border-radius: 16px;
  }

  .industries {
    padding: 50px 18px;
  }

  .industry-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .industry-card {
    width: 100%;
    max-width: 330px;
    height: 220px;
    border-radius: 14px;
  }

  .industry-name {
    font-size: 16px;
    padding: 14px 10px;
  }
  main-footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 45px 18px 18px;
  }

  .deal {
    gap: 10px;
    padding: 35px 16px;
    justify-content: center;
  }

  .deal button {
    width: 46%;
    padding: 13px 8px;

    font-size: 13px;
    line-height: 18px;

    border-radius: 8px;
  }

  .main-footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 40px 18px 18px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 14px;
  }

  .footer-about-text {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-links h3,
  .footer-deal h3,
  .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .footer-links ul li,
  .footer-deal ul li {
    margin-bottom: 4px;
    line-height: 20px;
  }

  .footer-links ul li a,
  .footer-deal ul li a,
  .footer-contact a,
  .footer-contact p {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-contact p {
    margin-bottom: 8px;
  }

  .footer-social {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    text-align: left;
  }
  
  .footer-social span {
    width: auto;
    font-size: 15px;
    margin-bottom: 0;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin: 0;
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
}

















.about-section{
    width:100%;
    padding:50px 0px;
    background:#f8f8f8;
	display: inherit;
}

.about-container{
    
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:40px;
}

.about-content{
    /*flex:1 1 550px;*/
	flex:1 1 0px;
	padding-left: 20px;
}

.about-content h1{
    font-size:95px;
    font-weight:800;
    line-height:1;
    margin-bottom:20px;
}

.about-content h1 span:first-child{
    color:#0b2ea6;
}

.about-content h1 span:last-child{
    color:#e6320d;
}

.title-line{
    width:250px;
    height:4px;
    background:linear-gradient(to right,#0b2ea6,#e6320d);
    margin-bottom:30px;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:0px;
}

.highlight-blue{
    color:#134095;
    font-weight:bold;
}

.highlight-green{
    color:#e6320d;
    font-weight:bold;
}

.info-box{
    display:flex;
    gap:20px;
    margin-top:25px;
    align-items:flex-start;
}

.icon-circle{
    min-width:70px;
    height:70px;
    border-radius:50%;
    border:3px solid #e6320d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#e6320d;
}

.about-image{
    flex:1 1 500px;
}

.about-image img{
    width:100%;
    /*border-radius:20px;*/
    display:block;
}

.features{
    max-width:1400px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.feature-box{
    background:#134095;
    color:#fff;
    padding:18px;
    border-radius:10px;
    text-align:center;
}
	
	.feature-box i{
		font-size: 40px;
  margin-bottom: 7px;
  display: block;
	}

.feature-box h4{
    font-size:14px;
    line-height:1.5;
    font-weight:600;
}

/* Tablet */
@media(max-width:991px){
    .about-content h1{
        font-size:50px;
    }

    .features{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Mobile */
@media(max-width:767px){

    .about-container{
        flex-direction:column;
    }

    .about-content h1{
        font-size:40px;
    }

    .about-content p{
        font-size:16px;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .icon-circle{
        min-width:55px;
        height:55px;
        font-size:24px;
    }
}

@media(max-width:480px){
    .features{
        grid-template-columns:1fr;
    }

    .about-content h1{
        font-size:32px;
    }
}
</style>





.about-section{
	position:relative;
	padding:120px 0px;
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	padding-right:100px;
}

.about-section .content-column .text{
	position:relative;
	color:#777777;
	font-size:15px;
	line-height:2em;
	margin-bottom:40px;
}

.about-section .content-column .email{
	position:relative;
	color:#252525;
	font-weight:700;
	margin-bottom:50px;
}

.about-section .image-column{
	position:relative;
	margin-bottom:50px;
}

.about-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index: 99;
	border: 3px solid #dc450a;
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	background:url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
	z-index: 9999;
}

.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#fff;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:#e15b17;
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}
.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}
.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #e15b17;
}
.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #e15b17;
    font-family: 'Arimo', sans-serif;
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 40px;
}
.sec-title .title {
    position: relative;
    color: #123f94;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

.industry-title span {
 
  color: #f00;
  
}






.footer{
    background:#f4f7fc;
    border-radius: 20px 20px 0px 0px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin: 20px 20px 0px 20px;
	background: url("images/packaging-products.png") no-repeat #f4f7fc;
	background-position: left bottom;
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.footer-col{
    padding:40px 30px;
    /*border-right:1px solid #eee;*/
}

.footer-col:last-child{
    border-right:none;
}

.logo{
    width:250px;
    margin-bottom:20px;
}

.company-text{
    color:#555;
    line-height:28px;
    margin-bottom:30px;
}

.f_features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    text-align:center;
}

.f_feature-box{
    /*background:#fff;*/
}
		
.f_feature-box p{
   font-size: 13px;
}		

.f_feature-box i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#f3f6ff;
    color:#0a4dff;
    font-size:24px;
    margin-bottom:10px;
}
		
.f_feature-box img{
   box-shadow: 0 3px 10px rgba(0,0,0,.06);
    margin-bottom:20px;
	border-radius: 50px;
}	

.footer-title{
    font-size:28px;
    color:#0038b8;
    margin-bottom:30px;
	font-weight: 600;
}
		
		
.quick-links{
        display:flex;
        align-items:center;
        gap:15px;
	margin-bottom: 36px;
    }

    .quick-icon{
        width:60px;
        height:60px;
        border-radius:50%;
        background:linear-gradient(135deg,#3b82f6,#1d4ed8);
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 5px 15px rgba(37,99,235,0.3);
    }

    .quick-icon i{
        color:#fff;
        font-size:28px;
        transform:rotate(-45deg);
    }

    .quick-content h2{
        font-size: 28px;
  color: #0038b8;
        font-weight:700;
        line-height:1;
        margin-bottom:8px;
    }

    .underline{
        width:35px;
        height:4px;
        background:#1d4ed8;
        border-radius:5px;
    }

    @media(max-width:480px){
        .quick-icon{
            width:50px;
            height:50px;
        }

        .quick-icon i{
            font-size:24px;
        }

        .quick-content h2{
            font-size:26px;
        }
    }		
		
		
		
		
		
.footer-title img{
   margin-right: 16px;
}		
		

.footer-links li{
   list-style: none;
  /*margin-bottom: 20px;*/
  border-bottom: 1px solid #e3e3e3;
  padding: 20px 0px;
  font-size: 17px;
  font-weight: 600;
}
		
.footer-links li img{
  margin-right: 16px;
}

.footer-links a{
    text-decoration:none;
    color:#444;
    transition:0.3s;
}

.footer-links a:hover{
    color:#0a4dff;
}
		
		
.manufacture-list img{
   margin-right: 16px;
}		

.manufacture-list li{
    list-style:none;
    margin-bottom:20px;
}


.manufacture-list a{
    text-decoration:none;
    color:#444;
    transition:0.3s;
}


.manufacture-list a:hover{
    color:#0a4dff;
}	
		
		
		

.manufacture-list li{
    background:#fff;
    padding:7px 15px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:15px;
    color:#555;
    line-height:28px;
}

.contact-item i{
    color:#1636af;
    font-size:20px;
    margin-top:5px;
}

/*.contact-box{
    background:#f7f9ff;
    padding:25px;
    border-radius:15px;
    margin-top:20px;
}

.contact-box h3{
    color:#0038b8;
    margin-bottom:10px;
}

.btn{
    display:inline-block;
    background:#0a4dff;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:8px;
    margin-top:15px;
}*/
		
		
 .contact-box{
        /*width:350px;*/
        background:#fff;
        border-radius:18px;
        padding:12px 25px;
        box-shadow:0 8px 25px rgba(0,0,0,0.08);
        display:flex;
        align-items:flex-start;
        gap:15px;
    }

    .icon{
        width:60px;
        height:60px;
        background:#f1f4ff;
        border-radius:50%;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-shrink:0;
    }

    .icon svg{
        width:34px;
        height:34px;
        stroke:#2455ff;
    }

    .content h2{
        font-size:23px;
        color:#0038b8;
        line-height:1.15;
        margin-bottom:15px;
        font-weight:700;
    }

    .content p{
        color:#4a4a4a;
        font-size:15px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .btn{
        display:inline-flex;
        align-items:center;
        gap:10px;
        background: linear-gradient(90deg,#163fa8,#2257dc);
        color:#fff;
        text-decoration:none;
        padding:14px 28px;
        border-radius:10px;
        font-size:18px;
        font-weight:600;
        box-shadow:0 5px 15px rgba(36,85,255,.3);
        transition:0.3s;
    }

    .btn:hover{
        transform:translateY(-2px);
		color: #fff;
    }

    @media(max-width:480px){
        .contact-box{
            width:95%;
            padding:20px;
        }

        .content h2{
            font-size:24px;
        }

        .content p{
            font-size:15px;
        }

        .btn{
            font-size:16px;
            padding:12px 22px;
        }
    }
		
/*
.social{
    margin-top:30px;
}

.social a{
    display:inline-block;
    width:45px;
    height:45px;
    line-height:45px;
    text-align:center;
    border-radius:50%;
    background:#f3f6ff;
    color:#0a4dff;
    margin-right:10px;
}*/
		
		
		
 .social-section{
        display:flex;
        align-items:center;
        gap:18px;
        padding:20px;
        
    }

    .social-title{
        font-size:18px;
        font-weight:600;
        color:#2f3850;
    }

    .social-icon{
       width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5ecf6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2d5cff;
  font-size: 20px;
  transition: 0.3s ease;
    }

    .social-icon:hover{
        transform:translateY(-4px);
        box-shadow:0 8px 20px rgba(0,0,0,0.12);
    }

    @media (max-width:480px){
        .social-section{
            gap:10px;
            flex-wrap:wrap;
        }

        .social-title{
            width:100%;
            font-size:20px;
            margin-bottom:10px;
        }

        .social-icon{
            width:50px;
            height:50px;
            font-size:22px;
        }
    }
		

/*.footer-bottom{
    background:#022c78;
    color:#fff;
    text-align:center;
    padding:20px;
    font-size:15px;
}*/

/* Tablet */
@media(max-width:992px){
    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-col{
        border-right:none;
        border-bottom:1px solid #eee;
    }
}

/* Mobile */
@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
    }

    .f_features{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-title{
        font-size:24px;
    }
}
		
		
.f_footer-banner{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#fff;
}

/* Top Image Section */
.f_footer-top{
   /* height:180px;*/
    background:#f5f6f8;
    display:flex;
    align-items:flex-end;
    padding-left:40px;
}

.f_footer-top img{
    max-width:350px;
    width:100%;
}

/* Bottom Blue Footer */
.f_footer-bottom{
    position:relative;
    background:linear-gradient(90deg,#012f8b,#003da8);
    color:#fff;
    min-height:120px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
	margin: 0px 20px 0px 20px;
}

/* Decorative lines */
.f_footer-bottom:before,
.f_footer-bottom:after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:50%;
}

.f_footer-bottom:before{
    left:-150px;
    bottom:-250px;
}

.f_footer-bottom:after{
    right:-150px;
    bottom:-250px;
}

/* Content */
.f_footer-content{
    display:flex;
    align-items:center;
    gap:15px;
    z-index:2;
    font-size:20px;
}

.f_footer-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    color:#003da8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
}

/* Dot Patterns */
.f_dots-left,
.f_dots-right{
    position:absolute;
    display:grid;
    grid-template-columns:repeat(5,8px);
    gap:10px;
}

.f_dots-left{
    left:35px;
}

.f_dots-right{
    right:35px;
}

.f_dots-left span,
.f_dots-right span{
    width:5px;
    height:5px;
    background:#fff;
    border-radius:50%;
    opacity:.8;
}

@media(max-width:768px){

    .f_footer-top{
        height:120px;
        padding-left:20px;
    }

    .f_footer-top img{
        max-width:220px;
    }

    .f_footer-content{
        font-size:14px;
        padding:0 15px;
        flex-direction:column;
        gap:10px;
    }

    .f_dots-left,
    .f_dots-right{
        display:none;
    }
}






.inner-banner{
    position:relative;
    width:100%;
    height:275px;
    background:url('images/about-banner.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.about_us{
    width:90%;
    
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.inner-banner::before{
    content:"";
    position:absolute;
    inset:0;
   background: rgb(27, 93, 181);
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding:20px;
}

.banner-content .bheading{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.banner-content p{
    font-size:18px;
    margin-bottom:15px;
}

.breadcrumbs{
    font-size:15px;
}

.breadcrumbs a{
    color:#fff;
    text-decoration:none;
    opacity:.9;
}

.breadcrumbs span{
    color:#ffc107;
    margin:0 6px;
}

/* Tablet */
@media(max-width:991px){

.inner-banner{
    height:280px;
}

.banner-content h2{
    font-size:38px;
}

.banner-content p{
    font-size:17px;
}

}

/* Mobile */
@media(max-width:767px){

.inner-banner{
    height:220px;
}

.banner-content h2{
    font-size:28px;
}

.banner-content p{
    font-size:15px;
}

.breadcrumbs{
    font-size:14px;
}

}

















.aboutus-banner{
    background:#fff;
    padding:70px 0;
    overflow:hidden;
}



.aboutus-content{
    flex:1;
    
}

.since{
    display:inline-block;
    font-size:20px;
    font-weight:700;
    color:#123b9d;
    letter-spacing:2px;
    margin-bottom:25px;
    position:relative;
}

.since::after{
    content:"";
    display:block;
    width:120px;
    height:3px;
    background:#ff6a00;
    margin-top:12px;
}

.since strong{
    color:#ff6a00;
    font-size:42px;
}

.aboutus-content h1{
    font-size:48px;
    line-height:1.08;
    color:#0a2f87;
    font-weight:800;
    margin-bottom:10px;
}

.aboutus-content h1 span{
    color:#1d52d8;
}

.tagline{
    font-size:20px;
    color:#4b5f8f;
    margin-bottom:25px;
}

.line{
    width:70px;
    height:5px;
    background:#1748c7;
    margin-bottom:30px;
}

.description{
    font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.description strong{
    color:#0f3eb4;
}

.aboutus-features{
    display:flex;
    gap:40px;
}

.feature{
    flex:1;
    text-align:center;
    padding:0 20px;
    border-right:1px solid #ddd;
}

.feature:last-child{
    border-right:none;
}

.ficon{
    width:90px;
    height:90px;
    /*border:2px solid #2a57cf;*/
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#2a57cf;
    margin:auto auto 20px;
}

.feature h4{
    color: #1748c7;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature span{
   color: #555;
  font-size: 16px;
  line-height: 1.3;
  display: block;
}

.aboutus-image{
    flex:1;
}

.aboutus-image img{
    width:100%;
    display:block;
    
}

/* Tablet */

@media(max-width:991px){

.about_us{
    flex-direction:column;
    text-align:center;
}

.aboutus-content{
    max-width:100%;
}

.since::after{
    margin:12px auto 0;
}

.line{
    margin:25px auto;
}

.aboutus-features{
    justify-content:center;
}

.aboutus-content h1{
    font-size:46px;
}

.tagline{
    font-size:24px;
}

.description{
    font-size:18px;
}

}

/* Mobile */

@media(max-width:767px){

.aboutus-banner{
    padding:50px 0;
}

.aboutus-content h1{
    font-size:34px;
}

.tagline{
    font-size:20px;
}

.description{
    font-size:16px;
}

.aboutus-features{
    flex-direction:column;
    gap:35px;
}

.feature{
    border-right:none;
    border-bottom:1px solid #ddd;
    padding-bottom:30px;
}

.feature:last-child{
    border-bottom:none;
}

.since{
    font-size:18px;
}

.since strong{
    font-size:34px;
}

.icon{
    width:75px;
    height:75px;
    font-size:32px;
}

.feature h4{
    font-size:24px;
}

}












.business-segments{
    padding:80px 0;
    background:#fff;
}

.business-segments .segments{
    width:90%;
    
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.business-content{
    width:55%;
}

.business-image{
    width:55%;
}

.business-image img{
    width:100%;
    display:block;
}

.section-line{
    display:block;
    width:45px;
    height:4px;
    background:#ff6a00;
    margin-bottom:25px;
}

.section-line.bottom{
    margin:30px 0;
}

.business-content h5{
    font-size:42px;
    color:#0b2d83;
    font-weight:700;
    letter-spacing:2px;
}

.business-content h2{
    font-size:92px;
    line-height:0.95;
    color:#0b2d83;
    font-weight:800;
    margin-top:10px;
}

.business-content p{
    font-size:15px;
    line-height:1.8;
    color:#2d2d2d;
    margin-bottom:30px;
}

.business-content p strong{
    color:#1748c7;
    font-weight:700;
}

/* Tablet */

@media(max-width:991px){

.business-segments .container{
    flex-direction:column;
}

.business-content,
.business-image{
    width:100%;
}

.business-content{
    text-align:center;
}

.section-line,
.section-line.bottom{
    margin-left:auto;
    margin-right:auto;
}

.business-content h2{
    font-size:68px;
}

.business-content h5{
    font-size:34px;
}

}

/* Mobile */

@media(max-width:767px){

.business-segments{
    padding:50px 0;
}

.business-content h2{
    font-size:46px;
}

.business-content h5{
    font-size:28px;
}

.business-content p{
    font-size:17px;
    line-height:1.7;
}

}









.quick-facts{
    width:100%;
    padding:70px 20px;
    background:#fff;
	background-image: url("../images/quick-bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}


.quick-facts .icon-box{
     background: none !important;
}

 

.quickf{
    max-width:1200px;
    margin:auto;
}

.heading{
    text-align:center;
    margin-bottom:50px;
}

.heading h2{
    font-size:58px;
    font-weight:800;
    color:#0d2d87;
    text-transform:uppercase;
}

.heading h2 span{
    color:#2563eb;
}

.heading .line{
    width:250px;
    height:4px;
    background:#2563eb;
    margin:20px auto 0;
    position:relative;
    border-radius:10px;
}

.heading .line:before,
.heading .line:after{
    content:"";
    width:12px;
    height:12px;
    border-radius:50%;
    background:#2563eb;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.heading .line:before{
    left:-6px;
}

.heading .line:after{
    right:-6px;
}

.fact-item{
   display: flex;
  align-items: center;
  gap: 25px;
  padding: 4px 0;
    
}

.fact-item:last-child{
    border-bottom:none;
}

.icon-box{
    width:85px;
    min-width:85px;
    height:85px;
   
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2563eb;
    font-size:38px;
}

.fact-content{
  flex: 1;
  font-size: 19px;
  line-height: 1.6;
  color: #222;
  border-bottom: 1px solid #dce8ff;
  padding-bottom: 20px;
  border-left: 2px solid #2563eb;
  padding-left: 20px;
}

.fact-content strong{
    color:#0d47b8;
}

@media(max-width:992px){

.heading h2{
    font-size:42px;
}

.fact-content{
    font-size:22px;
}

.icon-box{
    width:70px;
    height:70px;
    min-width:70px;
    font-size:30px;
}

}

@media(max-width:768px){

.quick-facts{
    padding:50px 15px;
}

.heading h2{
    font-size:34px;
}

.heading .line{
    width:180px;
}

.fact-item{
    align-items:flex-start;
    gap:18px;
}

.fact-content{
    font-size:18px;
}

.icon-box{
    width:60px;
    height:60px;
    min-width:60px;
    font-size:24px;
}

}

@media(max-width:480px){

.heading h2{
    font-size:28px;
}

.fact-item{
    flex-direction:column;
    text-align:center;
}

.fact-content{
    font-size:17px;
}

.icon-box{
    margin:auto;
}
}






.title-divider{
    position:relative;
    width:100%;
    max-width:620px;
    height:18px;
    margin:30px auto;
}

.title-divider .lines{
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:2px;
    background:#1f5eff;
    transform:translateY(-50%);
}

.title-divider .center-bar{
    position:absolute;
    left:50%;
    top:50%;
    width:160px;
    height:8px;
    background:#1f5eff;
    border-radius:5px;
    transform:translate(-50%,-50%);
}

.title-divider .dot{
    position:absolute;
    top:50%;
    width:14px;
    height:14px;
    background:#1f5eff;
    border-radius:50%;
    transform:translateY(-50%);
}

.title-divider .left{
    left:0;
}

.title-divider .right{
    right:0;
}

/* Tablet */

@media(max-width:768px){

.title-divider{
    max-width:420px;
}

.title-divider .center-bar{
    width:110px;
    height:7px;
}

.title-divider .dot{
    width:12px;
    height:12px;
}

}

/* Mobile */

@media(max-width:480px){

.title-divider{
    max-width:280px;
}

.title-divider .center-bar{
    width:80px;
    height:6px;
}

.title-divider .dot{
    width:10px;
    height:10px;
}

}




.team-section{
    padding:70px 20px;
}

.teams{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:15px;
}

.section-title h1{
    font-size:40px;
    color:#222;
	font-weight: 800;
}

.section-title p{
    color:#777;
    margin-top:10px;
    font-size:17px;
}

.team-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
    gap:30px;
    margin-top:50px;
}

.team-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-image{
    padding:30px 20px 15px;
}

.team-image img{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #f1f1f1;
}

.team-content{
    padding:20px;
}

.team-content h3{
    font-size:24px;
    margin-bottom:8px;
}

.team-content h5{
    color:#0d6efd;
    margin-bottom:15px;
    font-weight:600;
}

.team-content p{
    color:#666;
    line-height:1.7;
    font-size:15px;
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    padding-bottom:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#222;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.team-image img{
    width:140px;
    height:140px;
}

}
















.teamd{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.team-details{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
}

.left-box{
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.left-box img{
    width:100%;
    display:block;
}

.profile{
    padding:30px;
    text-align:center;
}

.profile h2{
    margin-bottom:8px;
    font-size:30px;
}

.profile h4{
    color:#0d6efd;
    margin-bottom:20px;
}

.social{
    display:flex;
    justify-content:center;
    gap:15px;
}

.social a{
    width:42px;
    height:42px;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

.social a:hover{
    background:#222;
}

.right-box{
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    padding:40px;
}

.section{
    margin-bottom:40px;
}

.section h3{
    margin-bottom:20px;
    font-size:28px;
    color:#222;
    border-left:5px solid #0d6efd;
    padding-left:15px;
}

.section p{
    color:#666;
    line-height:1.8;
}

.info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.info div{
    background:#f8f8f8;
    padding:15px;
    border-radius:8px;
}

.info strong{
    display:block;
    margin-bottom:6px;
}

.skill{
    margin-bottom:20px;
}

.skill-name{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    font-weight:bold;
}

.progress{
    height:10px;
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
}

.progress span{
    display:block;
    height:100%;
    background:#0d6efd;
}

.timeline{
    border-left:3px solid #0d6efd;
    padding-left:20px;
}

.timeline-item{
    margin-bottom:25px;
}

.timeline-item h4{
    margin-bottom:5px;
}

.timeline-item span{
    color:#888;
    font-size:14px;
}

@media(max-width:991px){

.team-details{
    grid-template-columns:1fr;
}

.info{
    grid-template-columns:1fr;
}

.right-box{
    padding:25px;
}

}


.manufacturing-banner{

background:url(images/manufacturing-banner.jpg) center center/cover no-repeat;

position:relative;

padding:90px 0;

overflow:hidden;

}

.overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
rgba(2,18,42,.94) 0%,
rgba(2,18,42,.82) 45%,
rgba(2,18,42,.20) 100%);
}

.infra{

max-width:1400px;
margin:auto;
padding:0 30px;
position:relative;
z-index:2;

}

.ibanner-grid{

display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:60px;

}

.tag{

display:inline-flex;
align-items:center;
gap:12px;

background:#2f9d46;
color:#fff;

padding:12px 24px;

border-radius:50px;

font-size:18px;

font-weight:bold;

margin-bottom:35px;

}

.tag i{

font-size:22px;

}

.ibanner-content h2{

font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  margin-top: 30px;

}

.line{

width:120px;
height:4px;
background:#55c339;
margin-bottom:30px;

}

.ibanner-content p{

font-size:16px;

line-height:1.8;

color:#fff;

max-width:700px;

}

.ibanner-content span{

color:#65d63e;
font-weight:bold;

}

.ifacility-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

align-items:start;

}

.ifacility-card{

background:#fff;

padding:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.15);

transition:.4s;
	border-radius: 20px;

}

.ifacility-card:nth-child(4){

grid-column:2;

}

.ifacility-card:nth-child(5){

grid-column:3;

}

.ifacility-card:hover{

transform:translateY(-8px);

}

.iicon{

width:85px;
height:85px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:42px;

margin:auto auto 20px;

color:#fff;

}

.igreen{

background:#2f9d46;

}

.iblue{

background:#0066c9;

}

.ifacility-card h3{

font-size: 26px;
  color: #0d2342;
  margin-bottom: 0px;
  font-weight: 800;

}

.ifacility-card small{

font-size:16px;

display:block;

margin-bottom:15px;

}

.ifacility-card p{

font-size:14px;

line-height:1.5;

color:#333;

}

/* Tablet */

@media(max-width:1199px){

.ibanner-grid{

grid-template-columns:1fr;

}

.ibanner-content{

text-align:center;

}

.iline{

margin:20px auto 30px;

}

.ibanner-content p{

margin:auto;

}

.ifacility-grid{

margin-top:60px;

}

}

/* Mobile */

@media(max-width:767px){

.ibanner-content h1{

font-size:42px;

}

.ibanner-content p{

font-size:14px;

}

.ifacility-grid{

grid-template-columns:repeat(2,1fr);

}

.ifacility-card:nth-child(4),
.ifacility-card:nth-child(5){

grid-column:auto;

}
	
.ibanner-content h2 {
  font-size: 28px;
  
}	
	

}

/* Small Mobile */

@media(max-width:480px){

.ifacility-grid{

grid-template-columns:1fr;

}

.ibanner-content h1{

font-size:34px;

}

.itag{

font-size:15px;

padding:10px 18px;

}

.ifacility-card{

padding:25px 15px;

}

.iacility-card h3{

font-size:36px;

}

}

.advance-section{
padding:50px 25px;
}


.advance{
max-width:1500px;
margin:auto;
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.12);
display:flex;
flex-wrap:wrap;
position:relative;
}

/* LEFT PANEL */

.left-panel{
width:34%;
padding:40px;
background:linear-gradient(180deg,#ffffff,#f4f7fb);
position:relative;
z-index:2;
}

.top-title{
display:flex;
align-items:center;
gap:18px;
margin-bottom:35px;
}

.icon-box{
width:72px;
height:72px;
background:#0b3768;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:36px;
color:#fff;
}

.small-heading{
font-size:20px;
font-weight:700;
color:#15395c;
text-transform:uppercase;
}

.big-heading{
font-size:35px;
font-weight:800;
line-height:1.05;
color:#0a2d55;
text-transform:uppercase;
margin-bottom:25px;
}

.description{
font-size:16px;
line-height:1.7;
color:#444;
margin-bottom:40px;
}

.feature-title{
display:inline-block;
background:#0b3768;
color:#fff;
padding:12px 25px;
border-radius:8px;
font-weight:700;
margin-bottom:25px;
font-size:20px;
}

.features{
list-style:none;
}

.features li{
display:flex;
gap:18px;
padding:16px 0;
border-bottom:1px solid #ddd;
align-items:flex-start;
}

.features .icon{
width:52px;
height:52px;
border-radius:50%;
background:#0b3768;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:22px;
flex-shrink:0;
}

.features h4{
font-size:22px;
color:#1d2f4c;
margin-bottom:6px;
}

.features p{
font-size:18px;
color:#555;
line-height:1.5;
}

/* RIGHT IMAGE */

.right-panel{
width:66%;
position:relative;
overflow:hidden;
}

.right-panel img{
/*width:100%;*/
height:100%;
object-fit:cover;
display:block;
}

/* SPEED BOX */

.speed-box{
position:absolute;
top:35px;
right:35px;
background:#0b3768;
padding:22px 28px;
border-radius:14px;
color:#fff;
text-align:center;
box-shadow:0 12px 25px rgba(0,0,0,.2);
}

.speed-box span{
display:block;
font-size:18px;
font-weight:600;
letter-spacing:1px;
}

.speed-box h2{
font-size:70px;
line-height:1;
font-weight:800;
margin:5px 0;
}

.speed-box strong{
font-size:22px;
}

/* Tablet */

@media(max-width:1100px){

.left-panel,
.right-panel{
width:100%;
}

.big-heading{
font-size:42px;
}

.description{
font-size:18px;
}

.right-panel{
height:550px;
}

.speed-box h2{
font-size:55px;
}

}

/* Mobile */

@media(max-width:768px){

.manufacturing-section{
padding:15px;
}

.left-panel{
padding:25px;
}

.big-heading{
font-size:28px;
}

.description{
font-size:16px;
}

.features h4{
font-size:18px;
}

.features p{
font-size:15px;
}

.speed-box{
top:15px;
right:15px;
padding:15px;
}

.speed-box h2{
font-size:42px;
}

.speed-box strong{
font-size:16px;
}

.right-panel{
height:380px;
}

}










.sustainability{
    
    overflow:hidden;
    position:relative;
	background: #f6f6f6;
}



.sustainability .small-title{
    font-size:60px;
    font-weight:300;
    line-height:1;
    color:#111;
}

.sustainability .big-title{
    font-size:90px;
    font-weight:800;
    color:#02429e;
    line-height:.9;
}

.sustainability .commitment{
    font-size:60px;
    font-weight:300;
    line-height:1;
    margin-bottom:35px;
}

.sustainability .intro{
    font-size:22px;
    line-height:1.7;
    color:#333;
}



.sustainability .energy-box{
    display:flex;
}

.sustainability .energy-icon{
    width:100px;
    height:100px;
    background:#02429e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    margin-right:30px;
    flex:none;
}

.sustainability .energy-box h3{
    color:#02429e;
    font-weight:700;
    margin-bottom:15px;
}

.sustainability .energy-box p{
    font-size:18px;
    line-height:1.7;
}

.sustainability .right-image{
    position:relative;
    height:100%;
}

.sustainability .right-image img{
    width:100%;
    border-radius:0 0 0 250px;
}



.sustainability .circle{
    position:absolute;
    left:-70px;
    bottom:140px;
    width:210px;
    height:210px;
    background:#0b6d35;
    border:8px solid #fff;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:30px;
    font-size:26px;
    line-height:1.4;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.sustainability .circle i{
    display:block;
    font-size:40px;
    margin-bottom:15px;
}

@media(max-width:991px){

.sustainability .big-title{
font-size:60px;
}

.sustainability .small-title,
.sustainability .commitment{
font-size:45px;
}

.sustainability .intro{
font-size:18px;
}

.sustainability .right-image{
margin-top:50px;
}

.sustainability .circle{
left:50%;
transform:translateX(-50%);
bottom:20px;
}



}









.energy_section{
    padding:70px 0;
    overflow:hidden;
}

.energy_section .energy_heading h1{
    font-size:45px;
    font-weight:900;
    color:#02429e;
    line-height:1;
    margin:0;
}

.energy_section .energy_heading h2{
    font-size:32px;
    font-weight:300;
    line-height:1;
    margin:10px 0;
}

.energy_section .energy_heading h3{
    font-size:45px;
    font-weight:900;
    color:#02429e;
    line-height:1;
}

.energy_section .green_line{
    width:140px;
    height:5px;
    background:#0b6d35;
    margin:35px 0;
}

.energy_section .energy_intro{
    font-size:20px;
    
    margin-bottom:35px;
}

.energy_section .energy_list{
    list-style:none;
    padding:0;
    margin:0;
}

.energy_section .energy_list li{
    display:flex;
    align-items:center;
    padding:5px 0;
    border-bottom:1px dashed #d8d8d8;
}

.energy_section .energy_icon{

    width:50px;
    height:50px;
    border-radius:50%;
    background:#02429e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex:none;
}

.energy_section .energy_text{

    margin-left:25px;
    font-size:20px;

}

.energy_section .right_box{

    position:relative;
    height:100%;

}

.energy_section .circle{

    width:360px;
    height:360px;
    margin:auto;
    border-radius:50%;
    border:4px solid #02429e;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;

}

.energy_section .circle:before{

    content:'';
    position:absolute;
    width:410px;
    height:410px;
    border-radius:50%;
    border:2px dashed #f00;

}

.energy_section .circle:after{

    content:'';
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    border-top:15px solid #0b6d35;
    border-right:15px solid transparent;
    transform:rotate(40deg);

}

.energy_section .circle_content{

    text-align:center;
    z-index:2;

}

.energy_section .circle_content i{

    font-size:70px;
    color:#0b6d35;
    margin-bottom:20px;

}

.energy_section .circle_content h3{

    font-size:32px;
    font-weight:800;
    color:#0b6d35;

}

.energy_section .circle_content h4{

    font-size:22px;
    font-weight:300;

}

.energy_section .quote_box{

    margin-top:80px;
    border:2px solid #02429e;
    border-radius:20px;
    padding:40px;
    position:relative;

}

.energy_section .quote_box:before{

    content:'🍃';
    position:absolute;
    left:20px;
    top:-25px;
    font-size:45px;

}

.energy_section .quote_box p{

    font-size:22px;
    line-height:1.5;

}

.energy_section .quote_box span{

    color:#0b6d35;
    font-weight:700;

}

@media(max-width:991px){

.energy_section .energy_heading h1,
.energy_section .energy_heading h3{
font-size:46px;
}

.energy_section .energy_heading h2{
font-size:40px;
}

.energy_section .energy_intro{
font-size:18px;
}

.energy_section .energy_text{
font-size:18px;
}

.energy_section .circle{
width:260px;
height:260px;
margin-top:50px;
}

.energy_section .circle:before{
width:300px;
height:300px;
}

.energy_section .circle:after{
width:320px;
height:320px;
}

.energy_section .circle_content h3{
font-size:28px;
}

.energy_section .circle_content h4{
font-size:18px;
}

.energy_section .quote_box p{
font-size:20px;
}

}




.sustainability-three{
    padding:80px 0;
    background:#f7f9fc;
}

.sustainability-three .section-title{
    max-width:760px;
    margin:0 auto 60px;
}

.sustainability-three .section-title span{
    display:inline-block;
    color:#f00;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.sustainability-three .section-title h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.sustainability-three .section-title p{
    color:#666;
    line-height:1.8;
}

.sustainability-three .s-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid #02429e;
}

.sustainability-three .s-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.sustainability-three .icon{
    width:70px;
    height:70px;
    background:#eaf7f0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.sustainability-three .s-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.sustainability-three .s-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

@media(max-width:991px){
    .sustainability-three .section-title h2{
        font-size:30px;
    }
}


.line-wrapper{
    position:relative;
    width:400px;
    height:10px;
				margin-bottom: 30px;
}

.gradient-line{
    width:100%;
    height:4px;
    border-radius:10px;
    background:linear-gradient(
        to right,
        #0b2ea6 0%,
        #0b2ea6 25%,
        #0b2ea6 50%,
        #f00 75%,
        #0b2ea6 100%
    );
}

.dot{
   position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-60%, -72%);
  width: 12px;
  height: 12px;
  background: #1e3fd6;
  border-radius: 50%;
}




.featuresn-section{
    overflow:hidden;
}

.featuresn-container{
    display:flex;
    align-items:center;
    /*background:linear-gradient(90deg,#001d79,#003fae);*/
	background: #012573;
    /*border-radius:0 0 100px 0;*/
    overflow:hidden;
}

/* Left Side */
.featuresn{
    flex:1;
    display:flex;
}

.featuren{
    flex:1;
    display:flex;
    align-items:center;
    gap:15px;
    padding:0px 20px;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.2);
}

.featuren:last-child{
    border-right:none;
}

.icons{
    font-size:48px;
    min-width:55px;
}

.text{
    font-size:14px;
    line-height:1.4;
    /*font-weight:700;*/
    text-transform:uppercase;
}

/* Right Side */
.right-boxn{
    width:475px;
    background:#fff;
    position:relative;
   padding: 19px 50px 20px 128px;
    /* border-top-left-radius:120px;
    border-bottom-left-radius:120px;*/
	background: url("images/about-sv.jpg") #fff;
		background-repeat: no-repeat;
		background-position: left;
}

/*.right-boxn:before{
    content:'';
    position:absolute;
    left:-22px;
    top:0;
    width:40px;
    height:100%;
    background:#64b32c;
    border-radius:100px 0 0 100px;
}*/
		
		
	.icon-circle {
 
  margin-bottom: 10px;
}
		
		
.about-image img {
  
  min-height: 500px;
}	
		

.right-boxn h2{
    color:#1b2b8a;
    font-size:20px;
    line-height:1.5;
    font-weight:400;
}

.right-boxn b{
    font-weight:700;
}

.green{
    color:#54a830;
}
		
.red{
    color:#f00;
}	

.leafn{
    position:absolute;
    right:0px;
    bottom:0px;
    font-size:65px;
    color:#54a830;
}
		
.leafn img{
   height: 110px;
}

/* Tablet */
@media(max-width:1400px){

    .featuresn{
        flex-wrap:wrap;
    }

    .featuren{
        width:33.33%;
        flex:none;
    }

}

/* Mobile */
@media(max-width:768px){

    .featuresn-container{
        flex-direction:column;
        border-radius:0;
    }

    .featuresn{
        width:100%;
    }

    .featuren{
        width:100%;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .icons{
        font-size:40px;
    }

    .text{
        font-size:14px;
    }

    .right-boxn{
        width:100%;
        /*border-radius:80px 80px 0 0;*/
        padding:25px;
		
    }

    .right-boxn:before{
        display:none;
    }

    .right-boxn h2{
        font-size:18px;
    }

    .leafn{
        position:static;
        margin-top:15px;
    }
	
	.about-image img {
  
  min-height: 250px !important;
}
	
	.about-image {
  flex: 1 1 250px;
}
	
	.right-boxn{
   
	background:none !important;
		
}

}	  




.containeri{
    width:95%;
    max-width:1400px;
    margin:auto;
    padding:50px 0;
}

.industry-gridi{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.cardi{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
    position:relative;
}

.cardi:hover{
    transform:translateY(-8px);
}

.cardi img{
    width:100%;
   
    object-fit:cover;
}

.icon-circlei{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:190px;
    left:50%;
    transform:translateX(-50%);
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    font-size:28px;
}

.card-contenti{
    padding:55px 25px 30px;
}

.cardi h3{
   font-size: 23px;
  color: #0a1fc0;
  font-weight: 600;
}

.linei{
    width:50px;
    height:3px;
    margin:auto;
    margin-bottom:20px;
}

.cardi p{
    color:#182497;
    line-height:1.7;
    font-size:14px;
	padding: 0px 13px;
}

.cardi a{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    font-weight:600;
}

.orange{
    border-bottom:4px solid #ff7f00;
}
.orange .linei,
.orange a{
    background:none;
    color:#ff7f00;
}

.green{
    border-bottom:4px solid #26a641;
}
.green .linei,
.green a{
    color:#26a641;
}

.purple{
    border-bottom:4px solid #b400ff;
}
.purple .linei,
.purple a{
    color:#b400ff;
}

.blue{
    border-bottom:4px solid #2563ff;
}
.blue .linei,
.blue a{
    color:#2563ff;
}


/* Bottom features */

.features{
    margin-top:30px;
    background:#fff;
    border-radius:18px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.feature{
    padding:25px;
    text-align:center;
    border-right:1px solid #eee;
}

.feature:last-child{
    border:none;
}

.feature h4{
    font-size:18px;
    color:#08124d;
    margin-bottom:5px;
}

.feature p{
    color:#666;
    font-size:14px;
}


/* Tablet */

@media(max-width:991px){

.industry-gridi{
    grid-template-columns:repeat(2,1fr);
}

.features{
    grid-template-columns:repeat(2,1fr);
}

}


/* Mobile */

@media(max-width:576px){

.industry-gridi{
    grid-template-columns:1fr;
}

.features{
    grid-template-columns:1fr;
}

.cardi h3{
    font-size:28px;
}

}


	  .engineered-section{
padding:90px 20px;
background:#fff;
}

.container{
max-width:1200px;
margin:auto;
}

.engineered-content{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:60px;
align-items:center;
}

.sub-title{
display:inline-block;
color:#dd4a0e;
font-weight:700;
letter-spacing:2px;
font-size:14px;
margin-bottom:15px;
text-transform:uppercase;
}

.left-content h2{
font-size:46px;
margin-bottom:20px;
color:#1f2937;
}

.left-content p{
color:#666;
line-height:1.9;
margin-bottom:20px;
font-size:16px;
}

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:30px;
}

.featured{
background:#f8fafc;
padding:15px;
border-left:4px solid #de4609;
font-weight:600;
border-radius:8px;
}

.right-content{
display:flex;
justify-content:center;
}

.stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
width:100%;
}

.stat-box{
background:#ffffff;
padding:40px 20px;
border-radius:15px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
border-bottom:4px solid #009245;
}

.stat-box:hover{
transform:translateY(-8px);
}

.stat-box h3{
font-size:42px;
color:#009245;
margin-bottom:10px;
}

.stat-box span{
font-size:16px;
color:#555;
font-weight:600;
}

@media(max-width:991px){

.engineered-content{
grid-template-columns:1fr;
}

.left-content h2{
font-size:36px;
}

.features{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.stats{
grid-template-columns:1fr;
}

.left-content h2{
font-size:30px;
}

}



	.facility-section{
    padding:80px 20px;
    background:linear-gradient(180deg,#ffffff,#eef4f8);
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#dd480c;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#1d2939;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #dd4409;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.featureicon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e8f7f1;
    border-radius:50%;
    font-size:34px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:24px;
    color:#1d2939;
    margin-bottom:12px;
}

.feature-card p{
    color:#667085;
    line-height:1.7;
}

.bottom-tagline{
    margin-top:70px;
    background:#06459a;
    color:#fff;
    text-align:center;
    padding:20px;
    border-radius:12px;
    font-weight:600;
    font-size:18px;
    letter-spacing:.5px;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

.bottom-tagline{
    font-size:16px;
    line-height:1.8;
}

} 



 .packaging{
    max-width:1400px;
    margin:auto;
    padding:60px 20px;

    display:flex;
    align-items:flex-start;
    gap:60px;
}

.left-side{
    width:45%;
}

.left-side h2{
    font-size:55px;
    line-height:0.95;
    color:#083c95;
    font-weight:800;
    margin-bottom:30px;
}

.left-side h2 span{
    color:#1d67da;
}

.left-side p{
    font-size:16px;
    line-height:1.5;
    color:#222;
}
		 
		 
		 
.right-side h2{
    font-size:55px;
    line-height:0.95;
    color:#083c95;
    font-weight:800;
    margin-bottom:30px;
}

.right-side h2 span{
    color:#1d67da;
}

.right-side p{
    font-size:16px;
    line-height:1.5;
    color:#222;
}		 
		 
		 
		 

.right-side{
    width:55%;
}

.item{
    display:flex;
    align-items:center;
    gap:25px;
    padding:5px 0;
    
}

.icon{
    width:50px;
    height:50px;
    background:#005ed8;
    border-radius:50%;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;

    flex-shrink:0;
}

.content{
    flex:1;
}

.content h3{
    font-size:18px;
    color:#072f76;
    font-weight:700;
    line-height:1.3;
}

.image img{
    width:180px;
    display:block;
}

/* Tablet */

@media(max-width:992px){

.packaging{
    flex-direction:column;
}

.left-side,
.right-side{
    width:100%;
}

.left-side h1{
    font-size:60px;
}

.left-side p{
    font-size:22px;
}

.content h3{
    font-size:28px;
}

.image img{
    width:140px;
}

}

/* Mobile */

@media(max-width:600px){

.left-side h2{
    font-size:42px;
}

.left-side p{
    font-size:16px;
}

.item{
    flex-wrap:wrap;
    gap:15px;
}

.icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.content{
    width:calc(100% - 80px);
}

.content h3{
    font-size:16px;
}

.image{
    width:100%;
    text-align:center;
}

.image img{
    width:180px;
    margin-top:10px;
}

}



.packaging-section{
    padding:70px 0;
    background:#fff;
}

.packaging-section h2{
    font-size:34px;
    font-weight:700;
    color:#12336b;
    margin-bottom:10px;
}

.title-line{
    width:90px;
    height:4px;
    background:#f6b300;
    margin-bottom:30px;
}

.packaging-section p{
    font-size:16px;
    line-height:1.7;
    color:#333;
}

.product-title{
   margin-top: 13px;
  margin-bottom: 1px;
  font-size: 24px;
  color: #12336b;
  font-weight: 700;
}

.product-list{
    list-style:none;
    padding:0;
}

.product-list li{
    display:flex;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid #ddd;
    font-size:16px;
    color:#222;
}

.icon-circle{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0b3c82;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:18px;
    font-size:22px;
}

.machine-bg{
    position:absolute;
    top:0;
    right:0;
    
    object-fit:cover;
   
    z-index:0;
}

.right-box{
    position:relative;
   /* min-height:650px;*/
}

.pouch-img{
    position:relative;
    z-index:2;
    width:100%;
}

.bottom-bar{
    background:#062c68;
    color:#fff;
    padding:28px 0;
}

.bottom-bar h4{
    font-size: 22px;
  text-align: center;
  margin-bottom: 0px;
}

.industry{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    color:#fff;
    font-weight:600;
    font-size:20px;
}
	 
	 
.packaging-section .speed-box h2 {
  
  color: #fff;
 
}	
	 
	 .packaging-section .speed-box span {
  
  font-size: 15px;
 
}	
	 
	 .packaging-section .speed-box strong {
  
  font-size: 15px;
 
}	
	 
	 
	 .packaging-section .speed-box {
  position: absolute;
top: 10px;
  right: 434px;
  background: #0b3768;
  padding: 22px 28px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
}
	 
	 
	 

.industry i{
    width:70px;
    height:70px;
    border:2px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

@media(max-width:991px){

.packaging-section h2{
font-size:38px;
}

.product-title{
font-size:30px;
}

.product-list li{
font-size:20px;
}

.bottom-bar h4{
font-size:24px;
}

.industry{
margin-bottom:25px;
justify-content:flex-start;
}

.right-box{
margin-top:50px;
min-height:auto;
}
	
.packaging-section .speed-box {
 
  top: 14px;
 right: 280px;
}
	
	

}



.contact-boxs h1{
	display: none;
}



.p_details{
padding:70px 0;
}

.pro-section-title{
font-weight: bold;
font-size:34px;
margin-bottom:20px;
color:#0c4c8a;
}

.section-subtitle{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.pro_d{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
/*align-items:center;*/
}
		
.pro_d p{ 
font-size: 16px;
}	

.pro_d img{
width:100%;
border-radius:12px;
}

.pro_d ul{
margin-top:20px;
}

.pro_d li{
margin-bottom:10px;
	list-style: none;
}

.profeatures{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:25px;
}

.profeature-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.profeature-box:hover{
transform:translateY(-8px);
}

.profeature-box h3{
margin-bottom: 15px;
  color: #0c4c8a;
  font-size: 20px;
  font-weight: bold;
}

.spec-table{
width:100%;
border-collapse:collapse;
background:#fff;
}

.spec-table th,
.spec-table td{
padding:16px;
border:1px solid #ddd;
}

.spec-table th{
background:#0c4c8a;
color:#fff;
}

.applications{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.app-box{
background:#fff;
padding:25px;
text-align:center;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.cta{
background:#0c4c8a;
color:#fff;
text-align:center;
padding:80px 20px;
}

.cta a{
display:inline-block;
margin-top:20px;
padding:14px 35px;
background:#fff;
color:#0c4c8a;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

		.pro-h-section-title{
			text-align: center;
			font-weight: bold;
font-size:34px;
margin-bottom:20px;
color:#0c4c8a;
		}

@media(max-width:768px){



.pro_d{
grid-template-columns:1fr;
}

}



.footer{
    background:#f4f7fc;
    border-radius: 20px 20px 0px 0px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin: 20px 20px 0px 20px;
	background: url("images/packaging-products.png") no-repeat #f4f7fc;
	background-position: left bottom;
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.footer-col{
    padding:40px 30px;
    /*border-right:1px solid #eee;*/
}

.footer-col:last-child{
    border-right:none;
}

.logo{
    width:250px;
    margin-bottom:20px;
}

.company-text{
    color:#555;
    line-height:28px;
    margin-bottom:30px;
}

.f_features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    text-align:center;
}

.f_feature-box{
    /*background:#fff;*/
}
		
.f_feature-box p{
   font-size: 13px;
}		

.f_feature-box i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#f3f6ff;
    color:#0a4dff;
    font-size:24px;
    margin-bottom:10px;
}
		
.f_feature-box img{
   box-shadow: 0 3px 10px rgba(0,0,0,.06);
    margin-bottom:20px;
	border-radius: 50px;
}	

.footer-title{
    font-size:28px;
    color:#0038b8;
    margin-bottom:30px;
	font-weight: 600;
}
		
		
.quick-links{
        display:flex;
        align-items:center;
        gap:15px;
	margin-bottom: 36px;
    }

    .quick-icon{
        width:60px;
        height:60px;
        border-radius:50%;
        background:linear-gradient(135deg,#3b82f6,#1d4ed8);
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 5px 15px rgba(37,99,235,0.3);
    }

    .quick-icon i{
        color:#fff;
        font-size:28px;
        transform:rotate(-45deg);
    }

    .quick-content h2{
        font-size: 28px;
  color: #0038b8;
        font-weight:700;
        line-height:1;
        margin-bottom:8px;
    }

    .underline{
        width:35px;
        height:4px;
        background:#1d4ed8;
        border-radius:5px;
    }

    @media(max-width:480px){
        .quick-icon{
            width:50px;
            height:50px;
        }

        .quick-icon i{
            font-size:24px;
        }

        .quick-content h2{
            font-size:26px;
        }
    }		
		
		
		
		
		
.footer-title img{
   margin-right: 16px;
}		
		

.footer-links li{
   list-style: none;
  /*margin-bottom: 20px;*/
  border-bottom: 1px solid #e3e3e3;
  padding: 20px 0px;
  font-size: 17px;
  font-weight: 600;
}
		
.footer-links li img{
  margin-right: 16px;
}

.footer-links a{
    text-decoration:none;
    color:#444;
    transition:0.3s;
}

.footer-links a:hover{
    color:#0a4dff;
}
		
		
.manufacture-list img{
   margin-right: 16px;
}		

.manufacture-list li{
    list-style:none;
    margin-bottom:20px;
}


.manufacture-list a{
    text-decoration:none;
    color:#444;
    transition:0.3s;
}


.manufacture-list a:hover{
    color:#0a4dff;
}	
		
		
		

.manufacture-list li{
    background:#fff;
    padding:7px 15px;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:15px;
    color:#555;
    line-height:28px;
}

.contact-item i{
    color:#1636af;
    font-size:20px;
    margin-top:5px;
}

/*.contact-box{
    background:#f7f9ff;
    padding:25px;
    border-radius:15px;
    margin-top:20px;
}

.contact-box h3{
    color:#0038b8;
    margin-bottom:10px;
}

.btn{
    display:inline-block;
    background:#0a4dff;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:8px;
    margin-top:15px;
}*/
		
		
 .contact-box{
        /*width:350px;*/
        background:#fff;
        border-radius:18px;
        padding:12px 25px;
        box-shadow:0 8px 25px rgba(0,0,0,0.08);
        display:flex;
        align-items:flex-start;
        gap:15px;
    }

    .icon{
        width:60px;

        height:60px;
        background:#f1f4ff;
        border-radius:50%;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-shrink:0;
    }

    .icon svg{
        width:34px;
        height:34px;
        stroke:#2455ff;
    }

    .content h2{
        font-size:23px;
        color:#0038b8;
        line-height:1.15;
        margin-bottom:15px;
        font-weight:700;
    }

    .content p{
        color:#4a4a4a;
        font-size:15px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .btn{
        display:inline-flex;
        align-items:center;
        gap:10px;
        background: linear-gradient(90deg,#163fa8,#2257dc);
        color:#fff;
        text-decoration:none;
        padding:14px 28px;
        border-radius:10px;
        font-size:18px;
        font-weight:600;
        box-shadow:0 5px 15px rgba(36,85,255,.3);
        transition:0.3s;
    }

    .btn:hover{
        transform:translateY(-2px);
		color: #fff;
    }

    @media(max-width:480px){
        .contact-box{
            width:95%;
            padding:20px;
        }

        .content h2{
            font-size:24px;
        }

        .content p{
            font-size:15px;
        }

        .btn{
            font-size:16px;
            padding:12px 22px;
        }
    }
		
/*
.social{
    margin-top:30px;
}

.social a{
    display:inline-block;
    width:45px;
    height:45px;
    line-height:45px;
    text-align:center;
    border-radius:50%;
    background:#f3f6ff;
    color:#0a4dff;
    margin-right:10px;
}*/
		
		
		
 .social-section{
        display:flex;
        align-items:center;
        gap:18px;
        padding:20px;
        
    }

    .social-title{
        font-size:18px;
        font-weight:600;
        color:#2f3850;
    }

    .social-icon{
       width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5ecf6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2d5cff;
  font-size: 20px;
  transition: 0.3s ease;
    }

    .social-icon:hover{
        transform:translateY(-4px);
        box-shadow:0 8px 20px rgba(0,0,0,0.12);
    }

    @media (max-width:480px){
        .social-section{
            gap:10px;
            flex-wrap:wrap;
        }

        .social-title{
            width:100%;
            font-size:20px;
            margin-bottom:10px;
        }

        .social-icon{
            width:50px;
            height:50px;
            font-size:22px;
        }
    }
		

/*.footer-bottom{
    background:#022c78;
    color:#fff;
    text-align:center;
    padding:20px;
    font-size:15px;
}*/

/* Tablet */
@media(max-width:992px){
    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-col{
        border-right:none;
        border-bottom:1px solid #eee;
    }
}

/* Mobile */
@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
    }

    .f_features{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-title{
        font-size:24px;
    }
}
		
		
.f_footer-banner{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#fff;
}

/* Top Image Section */
.f_footer-top{
   /* height:180px;*/
    background:#f5f6f8;
    display:flex;
    align-items:flex-end;
    padding-left:40px;
}

.f_footer-top img{
    max-width:350px;
    width:100%;
}

/* Bottom Blue Footer */
.f_footer-bottom{
    position:relative;
    background:linear-gradient(90deg,#012f8b,#003da8);
    color:#fff;
    min-height:120px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
	margin: 0px 20px 0px 20px;
}

/* Decorative lines */
.f_footer-bottom:before,
.f_footer-bottom:after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:50%;
}

.f_footer-bottom:before{
    left:-150px;
    bottom:-250px;
}

.f_footer-bottom:after{
    right:-150px;
    bottom:-250px;
}

/* Content */
.f_footer-content{
    display:flex;
    align-items:center;
    gap:15px;
    z-index:2;
    font-size:20px;
}

.f_footer-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    color:#003da8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
}

/* Dot Patterns */
.f_dots-left,
.f_dots-right{
    position:absolute;
    display:grid;
    grid-template-columns:repeat(5,8px);
    gap:10px;
}

.f_dots-left{
    left:35px;
}

.f_dots-right{
    right:35px;
}

.f_dots-left span,
.f_dots-right span{
    width:5px;
    height:5px;
    background:#fff;
    border-radius:50%;
    opacity:.8;
}

@media(max-width:768px){

    .f_footer-top{
        height:120px;
        padding-left:20px;
    }

    .f_footer-top img{
        max-width:220px;
    }

    .f_footer-content{
        font-size:14px;
        padding:0 15px;
        flex-direction:column;
        gap:10px;
    }

    .f_dots-left,
    .f_dots-right{
        display:none;
    }
}



.inner_heading{
	margin: 30px 0px;
}


.inner_heading h1{
	font-weight: 700;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: #dd470a;
}


.inner_heading h1 span{
	color: #1b5db5;
}