
@import url('./header.css');
@import url('./product.css');
@import url('./about.css');
@import url('./modals.css');

.kg-hero-sec {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(16, 24, 32, 0.92), rgba(31, 61, 43, 0.82)),
    url("https://images.unsplash.com/photo-1522771930-78848d9293e8?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}

.kg-hero-sec::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  top: 90px;
  background: rgba(201, 150, 62, 0.28);
  filter: blur(80px);
  border-radius: 50%;
}

.kg-hero-sec::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(70px);
  border-radius: 50%;
}

.kg-hero-row {
  position: relative;
  z-index: 2;
}

.kg-hero-content {
  animation: kgHeroUp 0.8s ease both;
}

.kg-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}

.kg-hero-tag i {
  color: var(--kg-secondary);
}

.kg-hero-content h1 {
  color: #fff;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.kg-hero-content h1 span {
  color: var(--kg-secondary);
  display: block;
}

.kg-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 28px;
}

/* Search */
.kg-hero-search {
  max-width: 680px;
  display: flex;
  background: #fff;
  border-radius: 60px;
  padding: 7px;
  margin-bottom: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.kg-hero-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 60px;
}

.kg-hero-search button {
  border: 0;
  background: linear-gradient(135deg, var(--kg-secondary), #eac071);
  color: #111;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.kg-hero-search button:hover {
  background: var(--kg-primary);
  color: #fff;
}

/* Buttons */
.kg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.kg-primary-btn,
.kg-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.kg-primary-btn {
  background: var(--kg-secondary);
  color: #111;
  box-shadow: 0 12px 30px rgba(201, 150, 62, 0.35);
}

.kg-primary-btn:hover {
  background: #fff;
  color: var(--kg-primary);
  transform: translateY(-4px);
}

.kg-outline-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.kg-outline-btn:hover {
  background: #fff;
  color: var(--kg-primary);
  transform: translateY(-4px);
}

/* Stats */
.kg-hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.kg-hero-stats div {
  min-width: 125px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.kg-hero-stats h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 3px;
}

.kg-hero-stats span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
}

/* Enquiry Card */
.kg-enquiry-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
  animation: kgHeroRight 0.9s ease both;
}

.kg-enquiry-card h3 {
  color: var(--kg-dark);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.kg-enquiry-card p {
  color: var(--kg-text);
  font-size: 14px;
  margin-bottom: 20px;
}

.kg-enquiry-card form {
  display: grid;
  gap: 12px;
}

.kg-enquiry-card input,
.kg-enquiry-card select,
.kg-enquiry-card textarea {
  width: 100%;
  border: 1px solid #e3e3e3;
  outline: none;
  background: #f8f8f8;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.kg-enquiry-card textarea {
  height: 95px;
  resize: none;
}

.kg-enquiry-card input:focus,
.kg-enquiry-card select:focus,
.kg-enquiry-card textarea:focus {
  border-color: var(--kg-secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 150, 62, 0.12);
}

.kg-enquiry-card button {
  border: 0;
  background: linear-gradient(135deg, var(--kg-primary), #10271a);
  color: #fff;
  padding: 14px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.3s ease;
}

.kg-enquiry-card button:hover {
  background: linear-gradient(135deg, var(--kg-secondary), #e4b768);
  color: #111;
  transform: translateY(-3px);
}

/* Animation */
@keyframes kgHeroUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kgHeroRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .kg-hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .kg-hero-sec {
    min-height: auto;
    padding: 70px 0;
  }

  .kg-hero-content {
    text-align: center;
    margin-bottom: 38px;
  }

  .kg-hero-content h1 {
    font-size: 42px;
  }

  .kg-hero-content p,
  .kg-hero-search {
    margin-left: auto;
    margin-right: auto;
  }

  .kg-hero-btns,
  .kg-hero-stats {
    justify-content: center;
  }

  .kg-enquiry-card {
    max-width: 620px;
    margin: auto;
  }
}

@media (max-width: 575px) {
  .kg-hero-sec {
    padding: 48px 0;
    background-position: center left;
  }

  .kg-hero-tag {
    font-size: 12px;
    padding: 9px 13px;
  }

  .kg-hero-content h1 {
    font-size: 31px;
    letter-spacing: -0.6px;
  }

  .kg-hero-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .kg-hero-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
  }

  .kg-hero-search input {
    height: 48px;
    padding: 0 14px;
    text-align: center;
  }

  .kg-hero-search button {
    width: 100%;
    padding: 13px;
  }

  .kg-primary-btn,
  .kg-outline-btn {
    width: 100%;
    justify-content: center;
  }

  .kg-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .kg-hero-stats div {
    width: 100%;
  }

  .kg-enquiry-card {
    padding: 22px;
    border-radius: 22px;
  }

  .kg-enquiry-card h3 {
    font-size: 22px;
  }
}

/* Product Categories */
.kg-category-sec {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(201, 150, 62, 0.12), transparent 35%),
    #fbfaf7;
}

.kg-section-head {
  max-width: 720px;
  margin: 0 auto 48px;
}

.kg-section-head span {
  display: inline-block;
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.kg-section-head h2 {
  color: var(--kg-dark);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.kg-section-head p {
  color: var(--kg-text);
  font-size: 16px;
  line-height: 1.7;
}

/* Category Card */
.kg-category-card {
  height: 100%;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  position: relative;
}

.kg-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.13);
}

.kg-category-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.kg-category-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.5), transparent);
}

.kg-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.kg-category-card:hover .kg-category-img img {
  transform: scale(1.08);
}

.kg-category-content {
  padding: 24px;
}

.kg-category-content h4 {
  color: var(--kg-dark);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
}

.kg-category-content p {
  color: var(--kg-text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.kg-category-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kg-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.kg-category-content a i {
  transition: 0.3s ease;
}

.kg-category-content a:hover {
  color: var(--kg-secondary);
}

.kg-category-content a:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .kg-category-sec {
    padding: 70px 0;
  }

  .kg-section-head h2 {
    font-size: 34px;
  }

  .kg-category-img {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .kg-category-sec {
    padding: 55px 0;
  }

  .kg-section-head {
    margin-bottom: 32px;
  }

  .kg-section-head h2 {
    font-size: 27px;
  }

  .kg-section-head p {
    font-size: 14px;
  }

  .kg-category-img {
    height: 230px;
  }

  .kg-category-content {
    padding: 20px;
  }

  .kg-category-content p {
   display:none;
}

.kg-category-content h4{
  font-size: 16px;
}

.kg-category-content a {
  font-size: 12px;
}

}


/* best selling */
.kg-products-sec {
  padding: 90px 0;
  background: #ffffff;
}

.kg-product-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.35s ease;
}

.kg-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 150, 62, 0.45);
}

.kg-product-img {
  height: 270px;
  position: relative;
  overflow: hidden;
  background: #f7f3eb;
}

.kg-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.kg-product-card:hover .kg-product-img img {
  transform: scale(1.08);
}

.kg-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--kg-secondary);
  color: #111;
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.kg-product-info {
  padding: 22px;
}

.kg-product-info h4 {
  color: var(--kg-dark);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.kg-product-info p {
  color: var(--kg-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.kg-product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.kg-product-meta span {
  background: #f8f5ef;
  color: var(--kg-primary);
  padding: 7px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.kg-product-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  background: var(--kg-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.kg-product-btn:hover {
  background: var(--kg-secondary);
  color: #111;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-products-sec {
    padding: 70px 0;
  }

  .kg-product-img {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .kg-products-sec {
    padding: 55px 0;
  }

  .kg-product-img {
    height: 240px;
  }

  .kg-product-info {
    padding: 19px;
  }
}

/* about */
.kg-about-sec {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
  overflow: hidden;
}

.kg-about-img-box {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

.kg-about-img-box img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: 0.6s ease;
}

.kg-about-img-box:hover img {
  transform: scale(1.06);
}

.kg-about-exp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.kg-about-exp h3 {
  color: var(--kg-primary);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 0;
}

.kg-about-exp span {
  color: var(--kg-dark);
  font-size: 13px;
  font-weight: 800;
}

.kg-about-content {
  padding-left: 20px;
}

.kg-about-tag {
  display: inline-block;
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kg-about-content h2 {
  color: var(--kg-dark);
  font-size: 43px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.kg-about-content p {
  color: var(--kg-text);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.kg-about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0 30px;
}

.kg-about-points div {
  background: #f8f5ef;
  color: var(--kg-dark);
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.kg-about-points div:hover {
  background: var(--kg-primary);
  color: #fff;
  transform: translateY(-4px);
}

.kg-about-points i {
  color: var(--kg-secondary);
}

.kg-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--kg-primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.kg-about-btn:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-4px);
}

/* Trust Stats */
.kg-trust-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--kg-primary);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(31, 61, 43, 0.22);
}

.kg-trust-box {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.3s ease;
}

.kg-trust-box:last-child {
  border-right: 0;
}

.kg-trust-box:hover {
  background: rgba(255, 255, 255, 0.08);
}

.kg-trust-box i {
  color: var(--kg-secondary);
  font-size: 34px;
  margin-bottom: 15px;
}

.kg-trust-box h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 5px;
}

.kg-trust-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-about-sec {
    padding: 70px 0;
  }

  .kg-about-content {
    padding-left: 0;
  }

  .kg-about-content h2 {
    font-size: 34px;
  }

  .kg-about-img-box img {
    height: 460px;
  }

  .kg-trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .kg-trust-box:nth-child(2) {
    border-right: 0;
  }

  .kg-trust-box:nth-child(1),
  .kg-trust-box:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 575px) {
  .kg-about-sec {
    padding: 55px 0;
  }

  .kg-about-img-box {
    border-radius: 24px;
  }

  .kg-about-img-box img {
    height: 360px;
  }

  .kg-about-exp {
    right: 15px;
    bottom: 15px;
    padding: 16px 20px;
  }

  .kg-about-exp h3 {
    font-size: 27px;
  }

  .kg-about-content h2 {
    font-size: 28px;
  }

  .kg-about-content p {
    font-size: 14px;
  }

  .kg-about-points {
    grid-template-columns: 1fr;
  }

  .kg-trust-stats {
    margin-top: 45px;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .kg-trust-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .kg-trust-box:last-child {
    border-bottom: 0;
  }
}
/* about end */

/* why choose us */
.kg-why-sec {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(31, 61, 43, 0.96), rgba(16, 24, 32, 0.96)),
    url("images/why-bg.jpg");
  background-size: cover;
  background-position: center;
}

.kg-why-sec .kg-section-head span {
  color: var(--kg-secondary);
}

.kg-why-sec .kg-section-head h2,
.kg-why-sec .kg-section-head p {
  color: #fff;
}

.kg-why-sec .kg-section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.kg-why-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.kg-why-card:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.kg-why-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--kg-secondary), #e9bf70);
  color: #111;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 30px;
  transition: 0.35s ease;
}

.kg-why-card:hover .kg-why-icon {
  background: var(--kg-primary);
  color: #fff;
  transform: rotateY(180deg);
}

.kg-why-card h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.kg-why-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  transition: 0.3s ease;
}

.kg-why-card:hover h4 {
  color: var(--kg-dark);
}

.kg-why-card:hover p {
  color: var(--kg-text);
}

/* Responsive */
@media (max-width: 991px) {
  .kg-why-sec {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .kg-why-sec {
    padding: 55px 0;
  }

  .kg-why-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .kg-why-icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}

/* our process */
.kg-process-sec {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(201, 150, 62, 0.14), transparent 34%),
    #fbfaf7;
}

.kg-process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kg-process-wrap::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--kg-secondary), transparent);
  z-index: 0;
}

.kg-process-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 28px;
  padding: 34px 24px;
  text-align: center;
  transition: 0.35s ease;
  overflow: hidden;
}

.kg-process-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--kg-primary);
  transition: 0.35s ease;
  z-index: -1;
}

.kg-process-card:hover::after {
  height: 100%;
}

.kg-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.kg-process-no {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(201, 150, 62, 0.22);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.kg-process-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--kg-secondary), #edc779);
  color: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  border: 8px solid #fbfaf7;
  transition: 0.35s ease;
}

.kg-process-card:hover .kg-process-icon {
  background: #fff;
  color: var(--kg-primary);
  transform: scale(1.07);
}

.kg-process-card h4 {
  color: var(--kg-dark);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.kg-process-card p {
  color: var(--kg-text);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  transition: 0.3s ease;
}

.kg-process-card:hover h4,
.kg-process-card:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-process-sec {
    padding: 70px 0;
  }

  .kg-process-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .kg-process-wrap::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .kg-process-sec {
    padding: 55px 0;
  }

  .kg-process-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kg-process-card {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .kg-process-icon {
    width: 76px;
    height: 76px;
    font-size: 27px;
  }
}
/* our process end */

/* international */
.kg-supply-sec {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
}

.kg-supply-content {
  max-width: 560px;
}

.kg-supply-tag {
  display: inline-block;
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kg-supply-content h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--kg-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.kg-supply-content h2 span {
  color: var(--kg-primary);
  display: block;
}

.kg-supply-content p {
  color: var(--kg-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Points */
.kg-supply-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.kg-supply-points div {
  background: #f8f5ef;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.kg-supply-points i {
  color: var(--kg-secondary);
}

.kg-supply-points div:hover {
  background: var(--kg-primary);
  color: #fff;
  transform: translateY(-4px);
}

/* Button */
.kg-supply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kg-primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.kg-supply-btn:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-4px);
}

/* Cards */
.kg-supply-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.kg-supply-card {
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 20px;
  transition: 0.3s ease;
}

.kg-supply-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  border-color: var(--kg-secondary);
}

.kg-supply-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.kg-supply-card p {
  font-size: 13px;
  color: var(--kg-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-supply-sec {
    padding: 70px 0;
  }

  .kg-supply-content {
    text-align: center;
    margin: auto;
  }

  .kg-supply-points {
    grid-template-columns: 1fr;
  }

  .kg-supply-cards {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .kg-supply-sec {
    padding: 55px 0;
  }

  .kg-supply-content h2 {
    font-size: 28px;
  }

  .kg-supply-cards {
    grid-template-columns: 1fr;
  }
}
/* international end */

/* testimonial */
.kg-testimonial-sec {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(201, 150, 62, 0.13), transparent 35%),
    linear-gradient(180deg, #fbfaf7, #ffffff);
}

.kg-testimonial-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 26px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.kg-testimonial-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 5px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(201, 150, 62, 0.13);
  line-height: 1;
}

.kg-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--kg-secondary);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.12);
}

.kg-testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--kg-secondary);
  font-size: 15px;
  margin-bottom: 18px;
}

.kg-testimonial-card p {
  color: var(--kg-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.kg-testimonial-user {
  display: flex;
  align-items: center;
  gap: 13px;
}

.kg-user-icon {
  width: 52px;
  height: 52px;
  background: var(--kg-primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.kg-testimonial-user h5 {
  color: var(--kg-dark);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 3px;
}

.kg-testimonial-user span {
  color: var(--kg-text);
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-testimonial-sec {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .kg-testimonial-sec {
    padding: 55px 0;
  }

  .kg-testimonial-card {
    padding: 24px;
    border-radius: 22px;
  }

  .kg-testimonial-card p {
    font-size: 14px;
  }
}

.kg-testimonial-slider {
  padding: 10px 8px 70px;
}

.kg-testimonial-slider .swiper-slide {
  height: auto;
}

.kg-testimonial-card {
  height: 100%;
}

.kg-testimonial-bottom {
  position: relative;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.kg-testimonial-prev,
.kg-testimonial-next {
  width: 46px;
  height: 46px;
  background: var(--kg-primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.kg-testimonial-prev:hover,
.kg-testimonial-next:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-3px);
}

.kg-testimonial-pagination {
  position: static !important;
  width: auto !important;
}

.kg-testimonial-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--kg-primary);
  opacity: 0.25;
}

.kg-testimonial-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: var(--kg-secondary);
  opacity: 1;
}
/* testimonial end */

/* footer */
.kg-footer-sec {
  background: linear-gradient(135deg, #101820, #0f2419);
  padding: 80px 0 20px;
  color: #fff;
}

/* Logo */
.kg-footer-logo {
  max-height: 55px;
  margin-bottom: 16px;
}

.kg-footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

/* Social */
.kg-footer-social {
  display: flex;
  gap: 10px;
}

.kg-footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.3s;
}

.kg-footer-social a:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-3px);
}

/* Links */
.kg-footer-links h4,
.kg-footer-contact h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.kg-footer-links ul {
  list-style: none;
  padding: 0;
}

.kg-footer-links li {
  margin-bottom: 10px;
}

.kg-footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.kg-footer-links a:hover {
  color: var(--kg-secondary);
  padding-left: 6px;
}

/* Contact */
.kg-footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}

.kg-footer-contact i {
  color: var(--kg-secondary);
  margin-top: 3px;
}

.kg-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: var(--kg-secondary);
  color: #111;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.kg-footer-btn:hover {
  background: #fff;
  color: var(--kg-primary);
  transform: translateY(-3px);
}

/* Bottom */
.kg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 15px;
  text-align: center;
}

.kg-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .kg-footer-sec {
    padding: 60px 0 20px;
  }
}

@media (max-width: 575px) {
  .kg-footer-sec {
    padding: 50px 0 15px;
  }

  .kg-footer-links,
  .kg-footer-contact {
    margin-top: 20px;
  }
}
.kg-export-strip {
  /* background: linear-gradient(135deg, #1f3d2b, #0f2419); */
  /* padding: 50px 0; */
  position: relative;
  z-index: 2;
}

.kg-export-head h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
}

.kg-export-head p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 30px;
}

/* Logos */
.kg-export-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.kg-export-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 12px 18px;
  border-radius: 50px;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.kg-export-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.kg-export-logo span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.kg-export-logo:hover {
  background: var(--kg-secondary);
  transform: translateY(-4px);
}

.kg-export-logo:hover span {
  color: #111;
}

/* Responsive */
@media (max-width: 575px) {
  .kg-export-head h3 {
    font-size: 22px;
  }

  .kg-export-logos {
    gap: 12px;
  }

  .kg-export-logo {
    padding: 10px 14px;
  }

  .kg-export-logo span {
    font-size: 12px;
  }
}
/* footer end */


/* product detail */
.kg-detail-banner{
  padding:70px 0;
  background:linear-gradient(120deg,rgba(16,24,32,.88),rgba(31,61,43,.86)),
  url("https://images.unsplash.com/photo-1503944583220-79d8926ad5e2?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  text-align:center;
}

.kg-detail-banner span{
  color:var(--kg-secondary);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
}

.kg-detail-banner h1{
  color:#fff;
  font-size:42px;
  font-weight:900;
  margin-top:10px;
}

.kg-detail-sec{
  padding:70px 0;
}

.kg-detail-img-box{
  background:#fff;
  border-radius:28px;
  padding:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.09);
  position:sticky;
  top:110px;
}

.kg-detail-main-img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:22px;
}

.kg-detail-thumbs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:14px;
}

.kg-detail-thumbs img{
  width:100%;
  height:95px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  border:2px solid transparent;
  transition:.3s;
}

.kg-detail-thumbs img:hover,
.kg-detail-thumbs img.active{
  border-color:var(--kg-secondary);
  transform:translateY(-3px);
}

.kg-detail-info{
  background:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 55px rgba(0,0,0,.07);
}

.kg-detail-badge{
  display:inline-block;
  background:#f8f5ef;
  color:var(--kg-primary);
  padding:8px 14px;
  border-radius:50px;
  font-size:13px;
  font-weight:900;
  margin-bottom:14px;
}

.kg-detail-info h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:12px;
}

.kg-detail-rating{
  color:var(--kg-secondary);
  margin-bottom:16px;
}

.kg-detail-info p{
  color:var(--kg-text);
  font-size:15px;
  line-height:1.8;
}

.kg-detail-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:24px 0;
}

.kg-detail-highlights div{
  background:#fbfaf7;
  border:1px solid #eee7dc;
  padding:14px;
  border-radius:16px;
  font-size:14px;
  font-weight:800;
}

.kg-detail-highlights i{
  color:var(--kg-secondary);
  margin-right:6px;
}

.kg-detail-table{
  margin-top:24px;
  border:1px solid #eee7dc;
  border-radius:18px;
  overflow:hidden;
}

.kg-detail-table table{
  margin:0;
}

.kg-detail-table th{
  width:38%;
  background:#fbfaf7;
  font-size:14px;
}

.kg-detail-table td{
  font-size:14px;
  color:var(--kg-text);
}

.kg-detail-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.kg-detail-btn{
  flex:1;
  min-width:190px;
  text-align:center;
  padding:14px 22px;
  border-radius:50px;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  transition:.3s;
}

.kg-detail-btn.primary{
  background:var(--kg-primary);
  color:#fff;
}

.kg-detail-btn.primary:hover{
  background:var(--kg-secondary);
  color:#111;
  transform:translateY(-3px);
}

.kg-detail-btn.whatsapp{
  background:#25d366;
  color:#fff;
}

.kg-detail-btn.whatsapp:hover{
  background:#16b653;
  color:#fff;
  transform:translateY(-3px);
}

/* Enquiry Form */
.kg-detail-enquiry{
  margin-top:30px;
  background:#fff;
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 55px rgba(0,0,0,.07);
}

.kg-detail-enquiry h3{
  font-size:24px;
  font-weight:900;
  margin-bottom:18px;
}

.kg-detail-enquiry input,
.kg-detail-enquiry textarea,
.kg-detail-enquiry select{
  width:100%;
  border:1px solid #e6dfd3;
  background:#fbfaf7;
  padding:13px 15px;
  border-radius:14px;
  outline:none;
  font-size:14px;
  margin-bottom:14px;
}

.kg-detail-enquiry textarea{
  height:110px;
  resize:none;
}

.kg-detail-enquiry input:focus,
.kg-detail-enquiry textarea:focus,
.kg-detail-enquiry select:focus{
  border-color:var(--kg-secondary);
  background:#fff;
  box-shadow:0 0 0 4px rgba(201,150,62,.12);
}

.kg-detail-enquiry button{
  border:0;
  width:100%;
  background:linear-gradient(135deg,var(--kg-primary),#10271a);
  color:#fff;
  padding:14px;
  border-radius:50px;
  font-size:15px;
  font-weight:900;
}

/* Tabs */
.kg-detail-tabs{
  margin-top:40px;
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 55px rgba(0,0,0,.07);
}

.kg-detail-tabs .nav-pills .nav-link{
  color:var(--kg-dark);
  font-weight:800;
  border-radius:50px;
}

.kg-detail-tabs .nav-pills .nav-link.active{
  background:var(--kg-primary);
}

.kg-detail-tabs .tab-content{
  padding-top:24px;
  color:var(--kg-text);
  line-height:1.8;
}

@media(max-width:991px){
  .kg-detail-img-box{
    position:static;
  }
  .kg-detail-main-img{
    height:420px;
  }
}

@media(max-width:575px){
  .kg-detail-banner{
    padding:55px 0;
  }
  .kg-detail-banner h1{
    font-size:28px;
  }
  .kg-detail-sec{
    padding:45px 0;
  }
  .kg-detail-info,
  .kg-detail-enquiry,
  .kg-detail-tabs{
    padding:22px;
    border-radius:22px;
  }
  .kg-detail-info h2{
    font-size:26px;
  }
  .kg-detail-main-img{
    height:330px;
  }
  .kg-detail-thumbs{
    grid-template-columns:repeat(2,1fr);
  }
  .kg-detail-highlights{
    grid-template-columns:1fr;
  }
}

/* bulk order */
.kg-bulk-banner {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(16,24,32,.88), rgba(31,61,43,.85)),
    url("https://images.unsplash.com/photo-1503944583220-79d8926ad5e2?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.kg-bulk-banner span {
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.kg-bulk-banner h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  margin: 12px 0;
}

.kg-bulk-banner p {
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: auto;
}

.kg-bulk-sec {
  padding: 90px 0;
  background: #fbfaf7;
}

.kg-bulk-tag {
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.kg-bulk-content h2 {
  color: var(--kg-dark);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  margin: 14px 0 18px;
}

.kg-bulk-content p {
  color: var(--kg-text);
  font-size: 15px;
  line-height: 1.8;
}

.kg-bulk-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-top: 26px;
}

.kg-bulk-points div {
  background: #fff;
  border: 1px solid #eee7dc;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
}

.kg-bulk-points div:hover {
  background: var(--kg-primary);
  color: #fff;
  transform: translateY(-4px);
}

.kg-bulk-points i {
  color: var(--kg-secondary);
  margin-right: 8px;
}

.kg-bulk-form {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 22px 60px rgba(0,0,0,.10);
}

.kg-bulk-form h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.kg-bulk-form input,
.kg-bulk-form select,
.kg-bulk-form textarea {
  width: 100%;
  border: 1px solid #e6dfd3;
  background: #fbfaf7;
  padding: 13px 15px;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  margin-bottom: 14px;
}

.kg-bulk-form textarea {
  height: 110px;
  resize: none;
}

.kg-bulk-form input:focus,
.kg-bulk-form select:focus,
.kg-bulk-form textarea:focus {
  border-color: var(--kg-secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,150,62,.12);
}

.kg-bulk-form button {
  border: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--kg-primary), #10271a);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  transition: .3s;
}

.kg-bulk-form button:hover {
  background: var(--kg-secondary);
  color: #111;
}

/* MOQ */
.kg-moq-sec {
  padding: 90px 0;
  background: #fff;
}

.kg-moq-card {
  height: 100%;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  border: 1px solid #eee7dc;
  border-radius: 26px;
  padding: 30px 24px;
  text-align: center;
  transition: .35s ease;
}

.kg-moq-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.11);
}

.kg-moq-card i {
  width: 70px;
  height: 70px;
  background: var(--kg-primary);
  color: #fff;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.kg-moq-card h4 {
  font-size: 20px;
  font-weight: 900;
}

.kg-moq-card p {
  color: var(--kg-text);
  margin: 8px 0;
}

.kg-moq-card h3 {
  color: var(--kg-secondary);
  font-size: 30px;
  font-weight: 900;
}

@media(max-width:575px) {
  .kg-bulk-banner {
    padding: 60px 0;
  }

  .kg-bulk-banner h1 {
    font-size: 30px;
  }

  .kg-bulk-sec,
  .kg-moq-sec {
    padding: 55px 0;
  }

  .kg-bulk-content h2 {
    font-size: 28px;
  }

  .kg-bulk-points {
    grid-template-columns: 1fr;
  }

  .kg-bulk-form {
    padding: 22px;
    border-radius: 22px;
  }
}

/* import page */
.kg-export-page-banner {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(16,24,32,.88), rgba(31,61,43,.85)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.kg-export-page-banner span,
.kg-export-page-tag {
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.kg-export-page-banner h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  margin: 12px 0;
}

.kg-export-page-banner p {
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: auto;
}

.kg-export-page-sec {
  padding: 90px 0;
  background: #fbfaf7;
}

.kg-export-page-content h2 {
  color: var(--kg-dark);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  margin: 14px 0 18px;
}

.kg-export-page-content p {
  color: var(--kg-text);
  font-size: 15px;
  line-height: 1.8;
}

.kg-export-page-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin: 26px 0 30px;
}

.kg-export-page-points div {
  background: #fff;
  border: 1px solid #eee7dc;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
}

.kg-export-page-points div:hover {
  background: var(--kg-primary);
  color: #fff;
  transform: translateY(-4px);
}

.kg-export-page-points i {
  color: var(--kg-secondary);
  margin-right: 8px;
}

.kg-export-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kg-primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: .3s ease;
}

.kg-export-page-btn:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-4px);
}

.kg-export-page-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0,0,0,.14);
}

.kg-export-page-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Countries */
.kg-export-country-sec {
  padding: 90px 0;
  background: #fff;
}

.kg-export-country-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
}

.kg-export-country-card {
  background: linear-gradient(180deg, #fff, #fbfaf7);
  border: 1px solid #eee7dc;
  border-radius: 22px;
  padding: 24px 15px;
  text-align: center;
  transition: .35s ease;
}

.kg-export-country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
  border-color: var(--kg-secondary);
}

.kg-export-country-card img {
  width: 54px;
  height: 38px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.kg-export-country-card h4 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
}

.kg-export-country-card p {
  color: var(--kg-text);
  font-size: 13px;
  margin: 0;
}

/* Process */
.kg-export-process-sec {
  padding: 90px 0;
  background: #fbfaf7;
}

.kg-export-process-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.kg-export-process-card {
  position: relative;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 26px;
  padding: 32px 24px;
  text-align: center;
  overflow: hidden;
  transition: .35s ease;
}

.kg-export-process-card:hover {
  background: var(--kg-primary);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}

.kg-export-process-no {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(201,150,62,.22);
  font-size: 42px;
  font-weight: 900;
}

.kg-export-process-card i {
  width: 76px;
  height: 76px;
  background: var(--kg-secondary);
  color: #111;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 29px;
  margin: 0 auto 20px;
}

.kg-export-process-card h4 {
  font-size: 20px;
  font-weight: 900;
}

.kg-export-process-card p {
  color: var(--kg-text);
  font-size: 14px;
  line-height: 1.7;
}

.kg-export-process-card:hover h4,
.kg-export-process-card:hover p {
  color: #fff;
}

/* Enquiry */
.kg-export-enquiry-sec {
  padding: 90px 0;
  background: #fff;
}

.kg-export-enquiry-box {
  background: linear-gradient(135deg, var(--kg-primary), #101820);
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

.kg-export-enquiry-content span {
  color: var(--kg-secondary);
  font-weight: 900;
  text-transform: uppercase;
}

.kg-export-enquiry-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin: 12px 0;
}

.kg-export-enquiry-content p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.kg-export-enquiry-form input,
.kg-export-enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 13px 15px;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  margin-bottom: 14px;
}

.kg-export-enquiry-form input::placeholder,
.kg-export-enquiry-form textarea::placeholder {
  color: rgba(255,255,255,.65);
}

.kg-export-enquiry-form textarea {
  height: 110px;
  resize: none;
}

.kg-export-enquiry-form button {
  border: 0;
  width: 100%;
  background: var(--kg-secondary);
  color: #111;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  transition: .3s;
}

.kg-export-enquiry-form button:hover {
  background: #fff;
}

@media(max-width:991px) {
  .kg-export-country-grid,
  .kg-export-process-wrap {
    grid-template-columns: repeat(2,1fr);
  }

  .kg-export-page-img img {
    height: 420px;
  }
}

@media(max-width:575px) {
  .kg-export-page-banner {
    padding: 60px 0;
  }

  .kg-export-page-banner h1 {
    font-size: 30px;
  }

  .kg-export-page-sec,
  .kg-export-country-sec,
  .kg-export-process-sec,
  .kg-export-enquiry-sec {
    padding: 55px 0;
  }

  .kg-export-page-content h2,
  .kg-export-enquiry-content h2 {
    font-size: 28px;
  }

  .kg-export-page-points,
  .kg-export-country-grid,
  .kg-export-process-wrap {
    grid-template-columns: 1fr;
  }

  .kg-export-enquiry-box {
    padding: 24px;
    border-radius: 24px;
  }

  .kg-export-page-img img {
    height: 330px;
  }
}

/* contact us */
.kg-contact-hero {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(120deg, rgba(16,24,32,.90), rgba(31,61,43,.84)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.kg-contact-hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: 40px;
  background: rgba(201,150,62,.30);
  filter: blur(80px);
  border-radius: 50%;
}

.kg-contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: auto;
}

.kg-contact-hero-content span {
  color: var(--kg-secondary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kg-contact-hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 900;
  margin: 14px 0;
  letter-spacing: -1px;
}

.kg-contact-hero-content p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin: 0;
}

/* Main Contact */
.kg-contact-premium-sec {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(201,150,62,.12), transparent 32%),
    #fbfaf7;
}

.kg-contact-info-box {
  height: 100%;
  background: linear-gradient(145deg, var(--kg-primary), #101820);
  color: #fff;
  border-radius: 32px;
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.kg-contact-info-box::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -70px;
  background: rgba(201,150,62,.25);
  filter: blur(45px);
  border-radius: 50%;
}

.kg-contact-mini-title {
  color: var(--kg-secondary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kg-contact-info-box h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  margin: 14px 0;
}

.kg-contact-info-box > p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.kg-contact-info-list {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.kg-contact-info-item {
  display: flex;
  gap: 14px;
  padding: 17px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  transition: .3s ease;
}

.kg-contact-info-item:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}

.kg-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--kg-secondary);
  color: #111;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.kg-contact-info-item h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}

.kg-contact-info-item p,
.kg-contact-info-item a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

.kg-contact-social {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 11px;
  margin-top: 28px;
}

.kg-contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.10);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: .3s ease;
}

.kg-contact-social a:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-4px);
}

/* Form */
.kg-contact-form-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 24px 65px rgba(0,0,0,.09);
}

.kg-contact-form-head {
  margin-bottom: 24px;
}

.kg-contact-form-head span {
  color: var(--kg-secondary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kg-contact-form-head h3 {
  color: var(--kg-dark);
  font-size: 32px;
  font-weight: 900;
  margin-top: 8px;
}

.kg-contact-form-card label {
  color: var(--kg-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.kg-contact-form-card input,
.kg-contact-form-card select,
.kg-contact-form-card textarea {
  width: 100%;
  border: 1px solid #e6dfd3;
  background: #fbfaf7;
  padding: 14px 15px;
  border-radius: 15px;
  outline: none;
  font-size: 14px;
  margin-bottom: 16px;
  transition: .3s ease;
}

.kg-contact-form-card textarea {
  height: 125px;
  resize: none;
}

.kg-contact-form-card input:focus,
.kg-contact-form-card select:focus,
.kg-contact-form-card textarea:focus {
  border-color: var(--kg-secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,150,62,.13);
}

.kg-contact-form-card button {
  border: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--kg-primary), #10271a);
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  transition: .3s ease;
}

.kg-contact-form-card button:hover {
  background: var(--kg-secondary);
  color: #111;
  transform: translateY(-3px);
}

/* Map */
.kg-contact-map-sec {
  padding: 0 0 90px;
  background: #fbfaf7;
}

.kg-contact-map-box {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38% 62%;
  box-shadow: 0 24px 65px rgba(0,0,0,.10);
}

.kg-contact-map-cta {
  background: var(--kg-primary);
  padding: 42px 34px;
  color: #fff;
}

.kg-contact-map-cta span {
  color: var(--kg-secondary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.kg-contact-map-cta h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 12px 0;
}

.kg-contact-map-cta p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.kg-map-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 10px;
  transition: .3s ease;
}

.kg-map-whatsapp:hover {
  background: #fff;
  color: var(--kg-primary);
}

.kg-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Responsive */
@media(max-width:991px) {
  .kg-contact-hero-content h1 {
    font-size: 40px;
  }

  .kg-contact-map-box {
    grid-template-columns: 1fr;
  }
}

@media(max-width:575px) {
  .kg-contact-hero {
    padding: 65px 0;
  }

  .kg-contact-hero-content h1 {
    font-size: 31px;
  }

  .kg-contact-hero-content p {
    font-size: 14px;
  }

  .kg-contact-premium-sec {
    padding: 55px 0;
  }

  .kg-contact-info-box,
  .kg-contact-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .kg-contact-info-box h2,
  .kg-contact-form-head h3 {
    font-size: 26px;
  }

  .kg-contact-info-item {
    flex-direction: column;
  }

  .kg-contact-map-sec {
    padding-bottom: 55px;
  }

  .kg-contact-map-cta {
    padding: 26px;
  }
}