@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@300;400;500&display=swap");

:root {
  --bg: #faf8f1;
  --paper: #ffffff;
  --green-900: #1c3326;
  --green-800: #214332;
  --green-700: #2f5d40;
  --green-500: #5c7a52;
  --green-200: #dce6d6;
  --gold: #c3922c;
  --gold-deep: #9c6f1b;
  --text: #232a22;
  --text-muted: #6b7280;
  --line: rgba(28, 51, 38, 0.14);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --ink: #0b0e14;
  --cloud: #f5f6fa;
  --ember: #ff5a36;
  --glass: rgba(245, 246, 250, 0.14);
  --glass-strong: rgba(245, 246, 250, 0.28);
  --orange: #f2791d;
  --muted: #b5b5b5;
  --border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a8c34;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: clamp(18px, 3vw, 25px);
  padding-block: clamp(12px, 3vw, 18px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 15px);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn-primary {
  background: var(--green-900);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(28, 51, 38, 0.28);
}

.btn-ghost {
  border-color: var(--green-900);
  color: var(--green-900);
}

.btn-ghost:hover {
  background: var(--green-900);
  color: #fff;
  transform: translateY(-2px);
}

.navbar {
  background: rgb(255 255 255 / 78%);
  position: fixed !important;
  top: 0;
  display: block !important;
  width: 100%;
  z-index: 50;
  border-bottom: 0px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 80px;
  height: 78px;
}

.nav-container .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 78px;
}

.nav-container .logo img {
  height: 100%;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #2f2f2f;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.menu-link:hover {
  color: #008b42;
}

.chevron {
  width: 0.8rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.has-mega:hover .chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 78px;
  background: var(--cloud);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-top: 1px solid var(--orange);
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 1.5rem;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega-column h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #008b42;
}

.mega-column li + li {
  margin-top: 0.5rem;
}

.mega-column a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.18s ease;
  white-space: nowrap;
}

.mega-column a:hover {
  color: #008b42;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.icon-btn i {
  font-size: 20px;
  transition: color 0.3s ease;
  color: #fff;
}

.icon-btn:hover i {
  color: #008b42;
}

.icon-wrapper {
  position: relative;
  display: inline-flex;
}
label {
    display: inline-block;
    margin-bottom: .2rem !important;
}

.badge {
  position: absolute;
  top: -10%;
  right: -50%;
  background: #008b42;
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.icon-btn:hover .badge {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.comming-soon{
  display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.has-mobile-submenu.active .chevron {
  transform: rotate(180deg);
}

.has-mobile-submenu.active .chevron {
  transform: rotate(180deg);
}
.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
    top: -78px !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 0 0;
  padding: 1rem;
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.3s ease;
  background: #414040;
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
}

.mobile-menu li + li {
  border-top: 1px solid var(--border);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color:#fff;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0.75rem;
}

.mobile-submenu.open {
  max-height: 1000px;
}

.mobile-submenu.open,
.mobile-submenu a {
  display: block;
  padding: 0.2rem 0.5rem;
  color:#fff;
}

.submenu-row:first-child h4 {
  margin-bottom: 1rem;
}

.submenu-row + .submenu-row h4 {
  margin-block: 1rem;
}

.mobile-submenu a:hover {
  color: var(--orange);
}

.submenu-row h4 {
  color: var(--ember);
}

@media (max-width: 980px) {
  .nav-container {
    padding-inline: 20px;
  }
  .desktop-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .icon-btn {
    width: 100%;
    padding: 1rem 0.5rem;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
  }
}

main {
  padding-top: 50px;
}

.slider,
.slider-item,
.slider-item img {
  width: 100%;
  height: auto;
}

.slider .swiper-pagination-bullet {
  width: clamp(7px, 1vw, 10px);
  height: clamp(7px, 1vw, 10px);
  background: #fff;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: clamp(20px, 4vw, 30px);
  border-radius: 7px;
  background: #ff6b00;
  transform: scale(1.2);
}

.slider .swiper-button-prev,
.slider .swiper-button-next {
  width: clamp(34px, 5vw, 50px);
  height: clamp(34px, 5vw, 50px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  color: #fff;
  transition: all 0.3s ease;
}

.slider .swiper-button-prev svg,
.slider .swiper-button-next svg {
  width: clamp(14px, 2vw, 20px);
  height: clamp(14px, 2vw, 20px);
}

/* about  */
.about {
    padding: 10px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background: url('https://t3.ftcdn.net/jpg/03/70/92/84/360_F_370928450_R6g8c0j5cey86PUXE32W7KMiqIUe1fOI.jpg')no-repeat;
  background-position: center;
  background-size: cover;
}

.about-heading .eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 16px 28px 56px 0;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}

.media-frame img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.media-frame--primary {
  border-radius: 16px 90px 16px 90px;
  aspect-ratio: 4 / 5;
}

.media-frame--accent {
  position: absolute;
  right: -8px;
  bottom: 24px;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 90px 16px 90px 16px;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.35);
}

.media-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.3);
}

.media-badge__year {
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--green-800);
  line-height: 1;
}

.media-badge__label {
  font-family: "Sora", sans-serif;
  font-size: 11.5px;
  color: var(--text-soft);
  line-height: 1.3;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-heading h2 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  line-height: 1.18;
  max-width: 460px;
}

.about-copy p {
  color: var(--text-soft);
  margin-block: 16px;
  max-width: 540px;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0 32px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--green-800);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  list-style: none;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stats strong {
  font-family: "Fraunces", serif;
  font-size: 16px;
  color: var(--green-800);
}

.about-stats span {
  font-family: "Sora", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* mission / vision  */

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.mv-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
}

.mv-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a8c34;
  margin-bottom: 18px;
}

.mv-icon svg {
  width: 60px;
  height: 60px;
}

.mv-card .eyebrow {
  margin-bottom: 8px;
}

.mv-card p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* responsive  */

@media (max-width: 900px) {
  .about {
    padding: 55px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    display: none;
  }

  .about-heading h2,
  .about-copy p {
    max-width: none;
  }
}

@media (max-width: 540px) {
  .media-frame--accent {
    right: -6px;
    width: 50%;
  }

  .about-stats {
    gap: 20px 28px;
  }
}

/* growth  */

.growth {
  padding: 90px 0;
}

.growth-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.growth-head h2 {
  font-size: 34px;
  max-width: 480px;
}

.growth-head p {
  color: var(--text-soft);
  max-width: 360px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 880px) {
  .growth-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
}

.growth-card {
  background: #008b42;
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  transition: transform 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-6px);
}

.growth-card h3 {
  color: #fff;
  font-size: 21px;
  margin-top: 14px;
}

.growth-card .num {
  font-family: "Fraunces", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #f5f2aa;
  text-transform: uppercase;
}

.growth-card a {
  font-size: 13.5px;
  font-weight: 600;
  color:#f5f2aa;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.growth-card a::after {
  content: "→";
  transition: transform 0.2s ease;
}

.growth-card a:hover::after {
  transform: translateX(4px);
}

/* product  */

.products {
  padding: 50px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.products-head h2 {
  font-size: 38px;
}

.products-head p {
  color: var(--text-soft);
  margin-top: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 26px;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card div {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f5f0;
  margin-bottom: 16px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2a1f;
  margin: 0 0 6px;
  letter-spacing: 0.2px;
}

.product-card span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5c7a52;
  background: #eef3e9;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .product-card {
    padding: 14px;
    border-radius: 12px;
  }
  .product-card h4 {
    font-size: 0.95rem;
  }
  .product-card span {
    font-size: 0.75rem;
  }
}

/* team  */

.team {
  padding: 50px 0;
}

.team-head {
  margin-bottom: 50px;
}

.team-head h2 {
  font-size: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 760px;
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 0.85fr;
    justify-content: center;
  }
}

.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-info {
  padding: 22px 24px 26px;
}

.team-info h3 {
  font-size: 19px;
}

.team-info span {
  display: block;
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  margin-bottom: 14px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.socials a:hover {
  background: var(--green-900);
  border-color: var(--green-900);
}

.socials a:hover svg {
  stroke: #fff;
}

.socials svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-900);
  transition: stroke 0.2s ease;
}

/* cta  */

.cta-band {
  background: var(--green-900);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: 36px;
  max-width: 620px;
  margin: 0 auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin: 18px auto 34px;
}

.cta-band .btn-primary {
  background: var(--gold);
  color: var(--green-900);
}

.cta-band .btn-primary:hover {
  box-shadow: 0 14px 28px rgba(195, 146, 44, 0.35);
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--green-900);
}

.cta-band .hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(5px, 2vw, 15px);
}

/* footer   */

footer {
  background: #142019;
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 28px;
  font-size: 14.5px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 880px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

footer .foot-logo {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}

footer .foot-logo span {
  color: #008b42;
  font-style: italic;
}

footer p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 280px;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

footer a:hover {
  color: #fff;
}
.foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before, .foot-grid:not(.foot-grid-li-noicon) li::before {
    content: "\f231";
    font-family: "bootstrap-icons";
    display: inline-flex;
    align-self: center;
    justify-self: center;
    position: relative;
    font-size: 0.75rem;
    line-height: inherit;
    left: 0;
}
.dark#footer .footer-widgets-wrap a, .dark #footer .footer-widgets-wrap a {
    color: rgba(255, 255, 255, 0.75);
}
a:not(.btn-link):not(.text-decoration-underline):not(.more-link) {
    text-decoration: none !important;
}
.foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a, .foot-grid li a {
    display: inline-block;
    padding: 0 0.25rem 0 0.75rem;
    border: none !important;
    color: var(--cnvs-heading-color);
}
.foot-grid li a {
    color: #fff;
    width: 140px;
}
.foot-bottom {
   display: flex;
    justify-content:space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* fade-in on scroll */
.reveal {
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        width: 1420px !important;
    }
}

.title-aboutus {
    background: #fff url(./assets/aboutus.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-business {
    background: #fff url(./assets/business.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-download {
    background: #fff url(./assets/download.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-bankdetails {
    background: #fff url(./assets/bankdetails.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-legal {
    background: #fff url(./assets/legal.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-product {
    background: #fff url(./assets/product.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-gallery {
    background: #fff url(./assets/gallery.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-login {
    background: #fff url(./assets/login.jpg) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-register {
    background: #fff url(./assets/login.jpg) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-seminar {
    background: #fff url(./assets/seminar.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-team {
    background: #fff url(./assets/team.png) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-growth {
    background: #fff url(./assets/growth.jpg) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}
.title-achivement {
    background: #fff url(./assets/achievment.jpg) no-repeat 50% 50%;
    height: 247px;
    position: relative;
    top: -78px;
}


.gallery-section{
    width:100%;
    margin:0px auto;
}
h2{
    text-align:center;
    margin-bottom:25px;
    font-size:35px;
}

.filter-buttons{
    text-align:center;
    margin-bottom:30px;
}

.filter-buttons button{
    padding:10px 22px;
    border:none;
    margin:5px;
    background:#ddd;
    cursor:pointer;
    border-radius:30px;
    transition:.3s;
}

.filter-buttons button:hover,
.filter-buttons .active{
    background:#007bff;
    color:#fff;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    display:block;
}

.gallery-item.hide{
    display:none;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* Lightbox */

#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:80%;
    height:35%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    width:90%;
    height:90%;
    border-radius:10px;
}

.close,
.prev,
.next{
    position:absolute;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    user-select:none;
    transition:.3s;
}

.close{
    top:20px;
    right:35px;
}

.prev{
    left:30px;
    top:50%;
    transform:translateY(-50%);
}

.next{
    right:30px;
    top:50%;
    transform:translateY(-50%);
}

.close:hover,
.prev:hover,
.next:hover{
    color:#f5f5f5 !important;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}


.padd-bottom-0 {
    padding-bottom: 0;
}

.padd-top-20 {
    padding-top: 20px;
}
.cell-7 {
    width: 58.33333333%;
        padding-left: 15px;
    padding-right: 15px;
}
.cell-5 {
    width: 41.66666667%;
        padding-left: 15px;
    padding-right: 15px;
}
.block-head {
    position: relative;
    margin-bottom: 20px;
    padding: 0 0 20px;
    border-bottom: 1px #e2e2e2 solid;
    font-weight: normal;
        color: #008c42;
}
#message {
    margin: 0;
}

#message {
    display: block;
    margin: 15px 0;
    padding: 13px;
    background: transparent;
    text-align: center;
}
mark {
    background: #ff0;
    color: #000;
}
.cform {
    position: relative;
}
.form-input {
    overflow: hidden;
    margin: 0 0 6px 0;
    width: 100%;
}
.form-input label {
    display: block;
    clear: both;
    overflow: hidden;
    margin: 0px 0 0px;
    width: 100%;
    padding:0px 10px;
}
.contact-form input[type=text], .contact-form input[type=password], .contact-form input[type=email], .contact-form textarea, .select, .contact-form input[type=file] {
    display: inline-block;
    float: left;
    padding: 7px 15px;
    width: 100%;
    border: 0;
    border: 1px #008c42 solid;
    background: #fff;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

input {
    line-height: normal;
}
.contact-form span.red {
    display: inline-block;
    margin-left: 5px;
}
.red {
    color: #f00;
}
.main-bg{
        background-color: #382799 !important;
    color: #fff !important;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 11px;
    border: 1px solid transparent;
    background: #777 none;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    font-weight: normal;
    font-size: 12px;
    line-height: 30px;
    cursor: pointer;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.title-contact {
    background: #fff url(./assets/contact.png) no-repeat 50%;
   height: 247px;
    position: relative;
    top: -78px;
}
.main {
        background-color: #ffffffc7;
        width: 400px;
        margin: 0em auto;
        border-radius: 1.5em;
        box-shadow:0px 11px 35px 2px rgb(0 0 0 / 43%);
            padding: 7px 0px;

    }
    .main1 {
        background-color: #ffffffde;
        width: 100% !important;
    }
    .sub{
       margin-top:20px;
    }
    .main p {
        margin-top: 0;
        margin-bottom: 0rem;
    }
  
  
    .sign {
        padding-top: 0px;
        color: #5563aa;
        font-family: 'Ubuntu', sans-serif;
        font-weight: bold;
        font-size: 28px;
    }
    .main select {
    display: inline-block;
    width: 100%;
      color: rgb(38, 50, 56);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      background: rgba(136, 126, 126, 0.04);
      padding: 10px 20px;
      border: none;
      border-radius: 10px;
      outline: none;
      box-sizing: border-box;
      border: 2px solid rgb(0 0 0 / 20%);
      margin-bottom: 50px;
      margin-left: 0px;
      text-align: left;
      margin-bottom: 7px;
      font-family: 'Ubuntu', sans-serif;
}
    h3 {
    margin-bottom: 0.1rem !important;
    font-weight: 500;
    line-height: 1.2;
} 
    .un {
   width: 100%;
    color: rgb(38, 50, 56);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(136, 126, 126, 0.04);
    padding: 7px 20px;
    border: none;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    border: 2px solid rgb(0 0 0 / 20%);
    margin-bottom: 50px;
    margin-left: 0px;
    text-align: left;
    margin-bottom: 7px;
    font-family: 'Ubuntu', sans-serif;
    }
    
    form.form1 {
        padding: 10px 30px;
    }
    
    .pass {
      width: 100%;
      color: rgb(38, 50, 56);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      background: rgba(136, 126, 126, 0.04);
      padding: 10px 20px;
      border: none;
      border-radius: 10px;
      outline: none;
      box-sizing: border-box;
      border: 2px solid rgb(0 0 0 / 20%);
      margin-bottom: 50px;
      margin-left: 0px;
      text-align: left;
      margin-bottom: 27px;
      font-family: 'Ubuntu', sans-serif;
    }
    
    .un:focus, .pass:focus {
        border: 2px solid rgba(0, 0, 0, 0.18) !important;  
    }
    .submit_tn
    {
        display: flex;
    align-items: center;
    justify-content: center;
        }
        .signup_forget
        {
           display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
            }
    .submit {
        cursor: pointer;
        border-radius: 5em;
        color: #fff;
        background: linear-gradient(to right, #2c4859, #1f3d4e);
        border: 0;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 10px;
        padding-top: 10px;
        font-family: 'Ubuntu', sans-serif;
        font-size: 14px;
        box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
    }
    
    .forgot {
        text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
        color: #E1BEE7;
        padding-top: 15px;
    }
    
    a {
        text-shadow: 0px 0px 3px rgba(117, 117, 117, 0.12);
        color: #E1BEE7;
        text-decoration: none
    }
    
    @media (max-width: 600px) {
        .main {
            border-radius: 0px;
        }
      }

.form-input {
    overflow: hidden;
    margin: 0 0 20px 0;
    width: 100%;
}
table {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-spacing: 0;
    border-collapse: collapse;
}
tbody{
      -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
tr{
  -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
tr:nth-child(even) {
    background: #f3f3f3;
}
th, td, caption {
    padding: 10px;
}

td, caption {
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}
.table-responsive th, td, caption {
    padding: 10px;
    font-size: 12px;
}
.tabs {
    display: inline-block;
    width: 100%;
}
.tabs > ul li a {
    color: #6c6c6c;
    text-transform: uppercase;
    display: block;
    padding: 6px 15px;
}
.tabs > ul li.active{
      background-color: #382799;
    color: #fff;
}
.tabs > ul li:hover a, .tabs > ul li.active a {
    color: #fff;
}
.tabs > ul {
    margin-left: 5px;
}
.tabs > ul li a i {
    margin-right: 8px;
    color: #008c42;
}
.tabs {
    display: inline-block;
    width: 100%;
}
.padd-top-20 img{
  padding: 30px;
}
.foot-grid a{
  color: #fff;
    width: 35px;
}
.widget img{
  display: inline;
}
@media (min-width: 768px) {
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
}
.dark#footer .footer-widgets-wrap a, .dark #footer .footer-widgets-wrap a {
    color: rgba(255, 255, 255, 0.75);
}

a:not(.btn-link):not(.text-decoration-underline):not(.more-link) {
    text-decoration: none !important;
}
.social-icon.si-small {
    --cnvs-socialicon-size: 2rem;
    --cnvs-socialicon-fontsize: 0.875rem;
}
.social-icon i {
  font-size: 18px;
    display: block;
    position: relative;
    line-height: inherit;
    transition: all 0.3s ease;
}
.social-icon i:last-child {
    color: #FFF;
}