.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; }
} 
 
/* ===== AAA Institutional Securities Pvt Ltd 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: 12px 14px;
    margin-bottom: 15px;
    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;
    }
    }