.kem-hero-section { height: 88vh; }
  
.kem-hero-slide {
  height: 88vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Subtle light gradient so image stays visible */
.kem-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.15) 40%, rgba(255,255,255,0.05) 100%);
}

/* Glass content box */
.kem-hero-box {
  position: relative;
  max-width: 560px;
  padding: 40px 42px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  animation: kemFadeUp 1s ease;
}

.kem-hero-title {
  font-size: 46px;
  font-weight: 700;
  color: #243b6b;
  margin-bottom: 14px;
}

.kem-hero-text {
  font-size: 17px;
  color: #4a5568;
  margin-bottom: 26px;
}

.kem-hero-btns .btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  margin-right: 10px;
}

.kem-btn-primary {
  background: #243b6b;
  color: #fff;
  border: none;
}

.kem-btn-primary:hover { background: #1a2e57; }

.kem-btn-outline {
  border: 2px solid #243b6b;
  color: #243b6b;
  background: transparent;
}

.kem-btn-outline:hover {
  background: #243b6b;
  color: #fff;
}

/* Indicators */
.kem-hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #243b6b;
}

/* Animation */
@keyframes kemFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .kem-hero-title { font-size: 28px; }
  .kem-hero-text { font-size: 15px; }
  .kem-hero-box { padding: 24px; }
  .kem-hero-section, .kem-hero-slide { height: 70vh; }
} 
 
/* ===== KEMSOLS ABOUT SECTION ===== */

.kem-about-sec {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

/* Image */
.kem-about-img-wrap {
  position: relative;
}

.kem-about-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Experience Badge */
.kem-about-badge {
  position: absolute;
  bottom: -25px;
  left: 30px;
  background: #1f3c88;
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(31,60,136,0.3);
}

.kem-about-badge h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.kem-about-badge span {
  font-size: 13px;
  opacity: 0.9;
}

/* Content */
.kem-sec-tag {
  color: #1f3c88;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.kem-sec-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b3d;
  margin: 12px 0 18px;
}

.kem-sec-title span {
  color: #1f3c88;
}

.kem-sec-desc {
  color: #5a647a;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Features */
.kem-about-features {
  margin-bottom: 25px;
}

.kem-feature-item {
  font-size: 15px;
  color: #0d1b3d;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Button */
.kem-btn-primary {
  display: inline-block;
  background: #1f3c88;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kem-btn-primary:hover {
  background: #16306f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31,60,136,0.25);
}
/* Section background */
.kems-industry-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #eef2ff, #f8fbff);
  }
  
  /* Heading */
  .kems-industry-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f1f4b;
  }
  
  .kems-industry-heading p {
    max-width: 650px;
    margin: 12px auto 0;
    color: #5f6b85;
  }
  
  /* Card */
  .kems-industry-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
  }
  
  /* Image */
  .kems-img {
    height: 180px;
    overflow: hidden;
  }
  
  .kems-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
  
  /* Content white background */
  .kems-content {
    padding: 22px;
  }
  
  .kems-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0f1f4b;
  }
  
  .kems-content p {
    font-size: 14px;
    color: #6c768f;
    margin: 8px 0 16px;
  }
  
  /* Button */
  .kems-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #1f3c88;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .kems-btn:hover {
    background: #ffd54a;
    color: #000;
  }
  
  /* Hover */
  .kems-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
  }
  
  .kems-industry-card:hover img {
    transform: scale(1.08);
  }
  /* Dark gradient background */
.kems-products-dark {
    background: radial-gradient(circle at top, #1b2a4a, #0b1220 70%);
    position: relative;
    overflow: hidden;
  }
  
  /* subtle glow overlay */
  .kems-products-dark::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(59,130,246,0.15);
    filter: blur(120px);
    top: -150px;
    left: -150px;
  }
  
  /* Heading */
  .kems-dark-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .kems-dark-desc {
    max-width: 650px;
    margin: 10px auto 0;
    color: #cbd5e1;
  }
  
  /* Cards */
  .kems-dark-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 28px 22px;
    border-radius: 16px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
  }
  
  .kems-dark-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59,130,246,0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  /* Icon circle */
  .kems-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    margin-bottom: 14px;
  }
  
  /* Text */
  .kems-dark-card h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .kems-dark-card p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  /* Link */
  .kems-dark-card a {
    color: #60a5fa;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .kems-dark-card a:hover {
    color: #93c5fd;
  }
  /* FAQ */
.kemsols-faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f274f;
  }
  
  .kemsols-faq-accordion .accordion-item {
    border: none;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    overflow: hidden;
  }
  
  .kemsols-faq-accordion .accordion-button {
    font-weight: 600;
    color: #0f274f;
    background: #ffffff;
  }
  
  .kemsols-faq-accordion .accordion-body {
    color: #555;
    font-size: 15px;
  }
  
  /* FORM CARD */
  .kemsols-contact-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  .kemsols-contact-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f274f;
  }
  
  .kemsols-contact-card form input,
  .kemsols-contact-card form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
  }
  
  .kemsols-contact-card form input:focus,
  .kemsols-contact-card form textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29,78,216,0.08);
  }
  
  .kemsols-contact-card button {
    width: 100%;
    border: none;
    padding: 13px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0f274f);
    transition: 0.3s;
  }
  
  .kemsols-contact-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29,78,216,0.25);
  }
  

			  /* SECTION */
			  .kems-career-section {
          background: #ffffff;
          border-radius: 24px;
          margin: 60px 0;
          }
          
          /* LEFT */
          .kems-career-badge {
          background: #eef6fb;
          color: #0f2b46;
          padding: 6px 14px;
          border-radius: 50px;
          font-size: 13px;
          letter-spacing: 0.5px;
          font-weight: 600;
          }
          
          .kems-career-title {
          font-size: 38px;
          font-weight: 700;
          color: #0f2b46;
          line-height: 1.3;
          }
          
          .kems-career-title span {
          color: #00b4d8;
          }
          
          .kems-career-desc {
          color: #5b6b7c;
          margin-top: 15px;
          font-size: 15px;
          line-height: 1.7;
          }
          
          .kems-career-points li {
          color: #0f2b46;
          margin-bottom: 8px;
          font-size: 14px;
          }
          
          .kems-career-btn {
          background: #0f2b46;
          color: #fff;
          padding: 12px 26px;
          border-radius: 50px;
          font-weight: 600;
          transition: 0.3s ease;
          }
          
          .kems-career-btn:hover {
          background: #123b5c;
          transform: translateY(-2px);
          }
          
          /* FORM CARD */
          .kems-career-form-card {
          background: #ffffff;
          padding: 35px;
          border-radius: 20px;
          box-shadow: 0 20px 50px rgba(15, 43, 70, 0.08);
          border: 1px solid #eef2f6;
          }
          
          .kems-form-title {
          font-weight: 700;
          margin-bottom: 20px;
          color: #0f2b46;
          }
          
          .kems-input {
          border-radius: 10px;
          padding: 12px 14px;
          border: 1px solid #e2e8f0;
          font-size: 14px;
          }
          
          .kems-input:focus {
          border-color: #00b4d8;
          box-shadow: 0 0 0 0.15rem rgba(0,180,216,0.15);
          }
          
          .kems-submit-btn {
          background: linear-gradient(135deg, #0f2b46, #123b5c);
          color: #fff;
          padding: 12px;
          border-radius: 12px;
          font-weight: 600;
          transition: 0.3s ease;
          }
          
          .kems-submit-btn:hover {
          transform: translateY(-1px);
          box-shadow: 0 10px 25px rgba(15, 43, 70, 0.15);
          }
          
          /* RESPONSIVE */
          @media (max-width: 991px) {
          .kems-career-title {
            font-size: 30px;
          }
          
          .kems-career-section {
            padding: 40px 20px;
          }
          } 
/* SECTION */
.kems-career-section {
  /* background: linear-gradient(135deg, #0f2b46, #123b5c); */
  border-radius: 24px;
  margin: 60px 0;
}

/* LEFT */
.kems-career-badge {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.kems-career-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.kems-career-title span {
  color: #00b4d8;
}

.kems-career-desc {
  color: #d6e4f0;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.kems-career-points li {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 14px;
}

.kems-career-btn {
  background: #00b4d8;
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.kems-career-btn:hover {
  background: #0096c7;
  transform: translateY(-2px);
}

/* FORM CARD */
.kems-career-form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.kems-form-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f2b46;
}

.kems-input {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.kems-input:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 0.15rem rgba(0,180,216,0.15);
}

.kems-submit-btn {
  background: #0f2b46;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.kems-submit-btn:hover {
  background: #123b5c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .kems-career-title {
    font-size: 30px;
  }

  .kems-career-section {
    padding: 40px 20px;
  }
}


.kems-enquiry-section {
	background: #ffffff;
  }
  
  .kems-enquiry-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #0f172a;
  }
  
  .kems-enquiry-desc {
	color: #475569;
	line-height: 1.7;
  }
  
  .kems-enquiry-points li {
	margin-bottom: 10px;
	color: #0f172a;
	font-weight: 500;
  }
  
  /* Form Card */
  .kems-enquiry-card {
	background: #ffffff;
	padding: 35px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border: 1px solid #f1f5f9;
  }
  
  .kems-form-title {
	font-weight: 600;
	color: #0f172a;
  }
  
  /* Inputs */
  .kems-input {
	border-radius: 10px;
	padding: 12px 14px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
  }
  
  .kems-input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 0.15rem rgba(37,99,235,0.15);
  }
  
  /* Button */
  .kems-enquiry-btn {
	background: linear-gradient(135deg, #2563eb, #0ea5e9);
	color: #fff;
	padding: 12px;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
  }
  
  .kems-enquiry-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37,99,235,0.25);
  }
  
  /* Responsive */
  @media (max-width: 991px) {
	.kems-enquiry-title {
	  font-size: 1.8rem;
	}
  }

  .kems-contact-v2 {
    background: #ffffff;
    }
    
    .kems-contact-v2-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    }
    
    .kems-contact-v2-sub {
    max-width: 650px;
    margin: 12px auto 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.98rem;
    }
    
    /* Card */
    .kems-contact-v2-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 26px;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    }
    
    /* subtle premium glow */
    .kems-contact-v2-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(37, 99, 235, 0.06), transparent);
    opacity: 0;
    transition: 0.4s ease;
    }
    
    .kems-contact-v2-card:hover::before {
    opacity: 1;
    }
    
    .kems-contact-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    }
    
    /* Icon */
    .kems-contact-v2-icon {
    font-size: 32px;
    margin-bottom: 16px;
    }
    
    /* Text */
    .kems-contact-v2-card h5 {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    }
    
    .kems-contact-v2-card p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
    font-size: 0.95rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
    .kems-contact-v2-title {
      font-size: 1.9rem;
    }
    }
    /* HERO WRAPPER */
.ftk-hero-pro {
  position: relative;
}

/* Slide */
.ftk-hero-slide {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Left gradient blend (NOT opacity layer) */
.ftk-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,10,40,0.85) 0%, rgba(20,10,40,0.6) 40%, rgba(0,0,0,0) 70%);
}

/* Content */
.ftk-hero-content {
  position: relative;
  max-width: 600px;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

.ftk-hero-tag {
  background: #f15c1b;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.ftk-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ftk-hero-content p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
}

/* Buttons */
.ftk-btn-primary {
  background: #f15c1b;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.ftk-btn-primary:hover {
  background: #fff;
  color: #411a7d;
}

.ftk-btn-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  margin-left: 15px;
  transition: 0.3s;
}

.ftk-btn-light:hover {
  background: #fff;
  color: #411a7d;
}

/* Arrows */
.ftk-arrow {
  background: rgba(255,255,255,0.1);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  font-size: 22px;
  color: #fff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media(max-width:991px){
  .ftk-hero-content h1 {
    font-size: 32px;
  }
  .ftk-hero-content {
    max-width: 100%;
  }
  .ftk-hero-slide { 
    height: 65vh; 
  }
}
.ftk-about-ultra {
  background: #f9fafc;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Tag */
.ftk-ultra-tag {
  color: #f15c1b;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* Title */
.ftk-ultra-title {
  font-size: 56px;
  font-weight: 800;
  color: #411a7d;
  line-height: 1.15;
  margin-top: 15px;
}

/* Accent Line */
.ftk-ultra-line {
  width: 70px;
  height: 4px;
  background: #f15c1b;
  margin-top: 30px;
}

/* Paragraph */
.ftk-ultra-text {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
}

/* Stat Cards */
.ftk-stat-card {
  background: #ffffff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ftk-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.ftk-stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #411a7d;
}

.ftk-stat-card p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-top: 8px;
}

/* Responsive */
@media(max-width:991px){

  .ftk-ultra-title {
    font-size: 34px;
  }

  .ftk-ultra-text {
    margin-top: 20px;
  }

}

.arch-products {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff 0%, #ffffff 100%);
}

/* Header */
.arch-head {
  max-width: 700px;
  margin: 0 auto 90px;
}

.arch-tag {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #f15c1b;
}

.arch-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 15px;
  color: #1a1a1a;
}

.arch-sub {
  font-size: 17px;
  color: #666;
  margin-top: 15px;
}

/* Product Item */
.arch-item {
  transition: 0.4s ease;
}

.arch-img {
  position: relative;
  overflow: hidden;
}

.arch-img img {
  width: 100%;
  transition: 0.6s ease;
}

/* Subtle overlay hover */
.arch-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.4s ease;
}

.arch-item:hover .arch-img img {
  transform: scale(1.06);
}

.arch-item:hover .arch-img::after {
  background: rgba(0,0,0,0.05);
}

.arch-content {
  padding : 20px;
  background-color: whitesmoke;
}

.arch-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.arch-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.arch-link {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.arch-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f15c1b;
  transition: 0.3s ease;
}

.arch-link:hover::after {
  width: 100%;
}

/* Main CTA */
.arch-main-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #111;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.arch-main-btn:hover {
  background: #f15c1b;
}

.ue-services-pro {
  position: relative;
  background: url('../ferrotek-equipments/section-bg.avif') no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
}

.ue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(65 26 125 / 90%);
  z-index: 0;
}

.ue-subtitle {
  color: #80A1F8;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ue-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
}

.ue-title span {
  color: #80A1F8;
}

.ue-service-card-pro {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  color: #fff;
  position: relative;
  z-index: 1;
  height: 100%;
}

.ue-icon {
  width: 70px;
  height: 70px;
  background: rgba(128,161,248,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #80A1F8;
  transition: all 0.3s ease;
}

.ue-service-card-pro h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.ue-service-card-pro p {
  color: #eaeaea;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.ue-service-card-pro:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(128,161,248,0.3);
}

.ue-service-card-pro:hover .ue-icon {
  background: #80A1F8;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

.ue-link {
  color: #80A1F8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ue-link:hover {
  color: #fff;
}

.ue-btn-glow {
  background: #80A1F8;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(128,161,248,0.5);
  transition: all 0.3s ease;
}

.ue-btn-glow:hover {
  background: #fff;
  color: #002C58;
  box-shadow: 0 0 25px rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .ue-service-card-pro {
    padding: 25px 20px;
  }
}
.kemsols-contact-card form textarea{
  height: 100px !important;
}
.cert-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.cert-head {
  max-width: 750px;
  margin: 0 auto 10px;
}

.cert-tag {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #f15c1b;
}

.cert-title {
  font-size: 38px;
  font-weight: 700;
  margin-top: 15px;
  color: #1a1a1a;
}

.cert-sub {
  font-size: 17px;
  color: #666;
  margin-top: 15px;
}

/* Card */
.cert-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
  height: 100%;
  position: relative;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.cert-inner h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.cert-inner span {
  font-size: 14px;
  font-weight: 600;
  color: #f15c1b;
  position: relative;
}

.cert-inner span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f15c1b;
  transition: 0.3s ease;
}

.cert-card:hover span::after {
  width: 100%;
}

/* Responsive */
@media(max-width:991px){
  .cert-title {
    font-size: 28px;
  }
}
.ferrotek-hero {
  position: relative;
  }
  
  .hero-slide {
  height: 85vh;
  /* min-height: 680px; */
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  }
  
  /* LEFT GRADIENT ONLY */
  .hero-left-gradient {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 55%;
  background: linear-gradient(to right, rgba(20,5,40,0.92) 0%, rgba(65,26,125,0.75) 60%, transparent 100%);
  }
  
  .hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
  }
  
  .hero-small {
  font-size: 13px;
  letter-spacing: 3px;
  color: #f15c1b;
  font-weight: 600;
  text-transform: uppercase;
  }
  
  .hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 18px 0;
  }
  
  .hero-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
  }
  
  .hero-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 35px;
  margin-bottom: 35px;
  font-size: 16px;
  }
  
  .hero-products div {
  border-left: 3px solid #f15c1b;
  padding-left: 12px;
  }
  
  /* BUTTON */
  .hero-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #f15c1b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  }
  
  .hero-btn:hover {
  background: #fff;
  color: #411a7d;
  }
  
  /* ARROWS */
  .custom-arrow {
  width: auto;
  }
  
  .arrow-box {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
  }
  
  .arrow-box:hover {
  background: #f15c1b;
  }
  
  /* RESPONSIVE */
  @media(max-width:991px){
  .hero-slide {
  height: auto;
  padding: 120px 0;
  background-position: center;
  }
  
  .hero-left-gradient {
  width: 100%;
  background: linear-gradient(to bottom, rgba(20,5,40,0.9) 0%, rgba(65,26,125,0.8) 60%, transparent 100%);
  }
  
  .hero-content h1 {
  font-size: 34px;
  }
  
  .hero-products {
  grid-template-columns: 1fr;
  }
  }