@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* @font-face {
  font-family: "Arial Regular";
  src: url("../fonts/Arial-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
} */

html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
a:not([class]):hover {
  text-decoration-line: underline;
}
a {
  text-decoration: none;
}
.wrap {
  word-wrap: break-word;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

@keyframes jump {
  0% { transform: translateX(0); }
  30% { transform: translateX(20px); }
  50% { transform: translateX(0); }
  70% { transform: translateX(-2px); }
  100% { transform: translateY(0); }
}

@keyframes marquee {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-100%);
  }
}

/* ===================Font=========== */

body {
  font-family: "Noto Sans Devanagari", sans-serif;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  width: 100%;
  overflow-x: hidden;
  line-height: normal;
  background-color: #FFF;
  height: 100%;
}

:root {
  --light-color: #E8F5E9;
  --accent-color: #2E7D32;
  --white: #FFF;
  --black: #1B5E20;
  --hero-gradient: linear-gradient(180deg, #F1F8E9 0%, #C8E6C9 100%);
  --cta-gradient: linear-gradient(0deg, #F1F8E9 0%, #C8E6C9 100%);
  --secondary-color: #4CAF50;
  --form-bg: #FFFFFF;
  --form-border: #81C784;
  --form-focus: #66BB6A;
}

.palette-one {
  --light-color: #DDECE2;
  --accent-color: #313D34;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #AAC6B3 100%);
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #AAC6B3 100%);
}


.palette-two {
  --light-color: #B5ABF3;
  --accent-color: #22166F;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #B5ABF3 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #B5ABF3 100%);
}

.amber-saffron-glow {
  --light-color: #E8F5E9;
  --accent-color: #2E7D32;
  --hero-gradient: linear-gradient(180deg, #F1F8E9 0%, #C8E6C9 100%);
  --cta-gradient: linear-gradient(0deg, #F1F8E9 0%, #C8E6C9 100%);
  --secondary-color: #4CAF50;
  --form-bg: #FFFFFF;
  --form-border: #81C784;
  --form-focus: #66BB6A;
}

.palette-four {
  --light-color: #F8AEAE;
  --accent-color: #6B0000;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #F8AEAE 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #F8AEAE 100%);;
}

.palette-five {
  --light-color: #F8AEAE;
  --accent-color: #595959;
  --hero-gradient: linear-gradient(180deg, #FFF 0%, #F8AEAE 100%);;
  --cta-gradient: linear-gradient(0deg, #FFF 0%, #F8AEAE 100%);;
}

.golden-sunset-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main-content-wrapper {
  position: relative;
  flex: 1 0 auto;
}

.content-container {
  max-width: 1187px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

/* ================== HEADER START ================== */

.header-navigation-bar {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: var(--accent-color);
}

.header-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
}

.site-logo-text {
  color: var(--light-color);
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}


.nav-menu-list {
  display: flex;
  gap: 32px;
  align-items: center;
}


.nav-menu-link {
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.mobile-menu-toggle {
  display: none;
  gap: 4px;
  max-width: 44px;
  width: 100%;
  cursor: pointer;
  flex-wrap: wrap;
}

.mobile-menu-toggle.active {
  display: flex;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--light-color);
  border-radius: 50%;
}

@media (max-width: 1100px) {

  .header-navigation-bar {
    height: 120px;
  }

  .header-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  .navigation-menu {
    display: none;
  }
}

@media (max-width: 568px) {

  .header-navigation-bar {
    height: 80px;
  }

  .header-inner-wrapper {
    padding: 18px 0;
  }

  .site-logo-text {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  #mobileMenu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: fit-content;
    background: var(--white);
    padding: 50px 0px;
    display: block;
    transition: .5s ease-in-out;
    z-index: 5;
  }

  #mobileMenu.active {
    top: 120px;
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .nav-menu-link {
    color: var(--accent-color);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
  }
}

@media (max-width: 568px) {
  #mobileMenu.active {
    top: 80px;
  }
}

.lock-scroll {
  overflow: hidden;
}


/* ================== HEADER END ================== */


/* ================== HERO START ================== */

.hero-section-bg {
  background: var(--hero-gradient);
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 100px 0px 110px 0px;
}

.main-page-title {
  color: var(--accent-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 1023px;
}

.intro-description-text {
  color: var(--black);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 825px;
}

@media (max-width: 768px) {

  .hero-content-wrapper {
    gap: 35px;
    padding: 70px 0px 70px 0px;
  }

  .main-page-title {
    font-size: 35px;
  }

  .intro-description-text {
    font-size: 20px;
  }

}

@media (max-width: 568px) {

  .hero-content-wrapper {
    gap: 25px;
    padding: 50px 0px 50px 0px;
  }

  .main-page-title {
    font-size: 25px;
  }

  .intro-description-text {
    font-size: 16px;
  }

}

/* ================== HERO END ================== */



/* ================== MAIN CONTENT BLOCKS START ================== */

.content-blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}

.market-image-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.market-image-block-reverse {
  flex-direction: row-reverse;
}

.market-image-container {
  max-width: 520px;
  width: 100%;
  border-radius: 48px;
  background: #D9D9D9;
  overflow: hidden;
  flex: 1;
}

.market-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-description-content {
  display: flex;
  flex-direction: column;
  gap: 55px;
  max-width: 574px;
  flex: 1;
}

.market-description-title {
  color: var(--accent-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.market-description-text {
  color: var(--black);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.products-list-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.products-list-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 574px;
  flex: 1;
}

.products-list-title {
  color: var(--accent-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.products-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-list-item {
  color: var(--black);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.products-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 30px;
}

.products-image-container {
  max-width: 520px;
  width: 100%;
  border-radius: 48px;
  background: #D9D9D9;
  overflow: hidden;
  flex: 1;
}

.products-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {

  .market-image-block{
    flex-direction: column;
  }

  .market-image-block {
    gap: 25px;
  }

  .market-description-content {
    gap: 25px;
  }

  .market-description-title {
    font-size: 35px;
  }

  .market-description-text {
    font-size: 20px;
  }

  .products-list-section {
    flex-direction: column;
    gap: 25px;
  }

  .products-list-title {
    font-size: 35px;
  }

  .products-list-item {
    font-size: 20px;
  }

}

@media (max-width: 568px) {

  .market-image-block-reverse {
    flex-direction: column-reverse;
  }

  .market-description-title {
    font-size: 25px;
  }

  .market-description-text {
    font-size: 16px;
  }

  .products-list-title {
    font-size: 25px;
  }

  .products-list-item {
    font-size: 16px;
  }

}

/* ================== MAIN CONTENT BLOCKS END ================== */


/* ================== CTA START ================== */

.cta-section-bg {
  background: var(--cta-gradient);
}

.cta-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 84px 0 65px 0;
}

.cta-title-text {
  color: var(--accent-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.cta-description-text {
  color: var(--black);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {

  .cta-content-wrapper {
    gap: 20px;
  }

  .cta-title-text {
    font-size: 35px;
  }
  
  .cta-description-text {
    font-size: 20px;
  }

} 

@media (max-width: 568px) {

  .cta-title-text {
    font-size: 25px;
  }
  
  .cta-description-text {
    font-size: 16px;
  }
}
/* ================== CTA END ================== */


/* ================== FORM START ================== */

.contact-form-section {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
 
.form-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 65px 0 90px 0;
  position: relative;
  z-index: 1;
}

.form-header-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.form-title-heading {
  color: var(--accent-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.form-subtitle-text {
  color: var(--black);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  background: var(--form-bg);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.15),
              0 2px 8px rgba(46, 125, 50, 0.1);
  border: 2px solid rgba(129, 199, 132, 0.3);
}

.form-input-field {
  width: 100%;
  padding: 18px 32px;
  outline: none;
  border: 2px solid var(--form-border);
  border-radius: 16px;
  background: var(--white);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(46, 125, 50, 0.05);
}

.form-input-field::placeholder {
  color: rgba(46, 125, 50, 0.5);
}

.form-input-field:focus {
  border-color: var(--form-focus);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2),
              0 0 0 4px rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
}

.form-input-field:hover {
  border-color: var(--secondary-color);
}

.form-submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  outline: none;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3),
              0 2px 8px rgba(46, 125, 50, 0.2);
  position: relative;
  overflow: hidden;
}

.form-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit-button:hover::before {
  left: 100%;
}

.impressum-text {
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 300;
}

.form-submit-button:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #66BB6A 100%);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4),
              0 4px 12px rgba(46, 125, 50, 0.3);
  transform: translateY(-2px);
}

.form-submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

@media (max-width: 768px) {

  .form-section-wrapper {
    gap: 25px;
    padding: 50px 0 50px 0;
  }

  .form-header-content {
    gap: 20px;
  }

  .form-title-heading {
    font-size: 35px;
  }

  .form-subtitle-text {
    font-size: 20px;
  }

  .contact-form {
    font-size: 16px;
  }

  .contact-form {
    padding: 30px 20px;
    gap: 16px;
  }

  .form-input-field {
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 12px;
  }

  .form-submit-button {
    margin-top: 10px;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
  }
}

@media (max-width: 568px) {
  
  .form-title-heading {
    font-size: 25px;
  }

  .form-subtitle-text {
    font-size: 16px;
  }

}

/* ================== FORM END ================== */


/* ================== CONTACTS START ================== */

.marble-black-aura {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 50px 0;
}

.shadow-cyan-shade {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sapphire-blue {
  color: var(--accent-color);
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.lunar-yellow-tone {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.icy-purple-mist {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
}

.icy-purple-mist iframe {
  max-width: 420px;
  width: 100%;;
  height: 420px;
}

@media (max-width: 768px) {
  .marble-black-aura {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
  }

  .shadow-cyan-shade {
    gap: 16px;
    width: 100%;
  }

  .sapphire-blue {
    font-size: 35px;
  }

  .lunar-yellow-tone {
    font-size: 20px;
  }

  .icy-purple-mist {
    max-width: 100%;
  }

  .icy-purple-mist iframe {
    max-width: 100%;
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 568px) {
  
  .sapphire-blue {
    font-size: 25px;
  }

  .lunar-yellow-tone {
    font-size: 16px;
  }

}

/* ================== CONTACTS END ================== */


/* ================== POLICY START ================== */

.desert-red-aura {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}

.prism-brown-sheen {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.arctic-green-shine {
  color: var(--accent-color);
  text-align: center;
  font-family: "Roboto Serif";
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
}

.sunset-brown-wave {
  color: var(--black);
  font-family: Roboto;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.sunset-brown-wave ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 25px;
}

@media (max-width: 768px) {
  
  .prism-brown-sheen {
    gap: 20px;
  }

  .arctic-green-shine {
    font-size: 35px;
  }

  .sunset-brown-wave {
    font-size: 20px;
  }

}

@media (max-width: 568px) {
  
  .arctic-green-shine {
    font-size: 25px;
  }

  .sunset-brown-wave {
    font-size: 16px;
  }
}

/* ================== POLICY END ================== */

/* ================== FOOTER START ================== */

.footer-section {
  flex-shrink: 0;
  background-color: var(--accent-color);
}

.footer-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 52px 0 56px 0;
}

.footer-copyright-wrapper {
  display: flex;
  gap: 5px;
}

.footer-copyright-text {
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-link {
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .footer-copyright-text {
    font-size: 20px;
  }

  .footer-link {
    font-size: 20px;
  }
  
}

@media (max-width: 568px) {

  .footer-inner-wrapper {
    padding: 25px 0 25px 0;
  }
  
  .footer-copyright-wrapper {
    flex-direction: column;
  }

  .footer-copyright-text {
    font-size: 16px;
  }

  .footer-links-wrapper {
    gap: 3px;
  }
  
  .footer-link {
    font-size: 16px;
  }
}

/* ================== FOOTER END ================== */

/* ================== COOKIES START ================== */

#hbgBDAgqmW-cookie {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    max-width: 90%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 20px;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    gap: 15px;
    z-index: 999999;
    font-size: 15px;
    color: #fff;
}

#hbgBDAgqmW-cookie.show {
    display: block;
}

#hbgBDAgqmW-cookie div {
    display: inline-block;
}

#hbgBDAgqmW-cookie button {
    float: right;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: var(--color-black);
    font-family: var(--font-family);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* ================== COOKIES END ================== */