@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&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: "Inter", "Noto Sans Devanagari", sans-serif;
  color: #1a1a2e;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  width: 100%;
  overflow-x: hidden;
  line-height: normal;
  background-color: #f0f4f8;
  height: 100%;
}

:root {
  --primary-color: #8b4513;
  --secondary-color: #cd853f;
  --light-color: #f5deb3;
  --accent-color: #a0522d;
  --white: #ffffff;
  --text-dark: #2c1810;
  --text-light: #5a4a3a;
  --gradient-primary: linear-gradient(135deg, #8b4513 0%, #cd853f 100%);
  --gradient-light: linear-gradient(180deg, #faf0e6 0%, #f5deb3 100%);
  --form-bg: #ffffff;
  --form-border: #cd853f;
  --form-focus: #8b4513;
}

.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%);
}

.ocean-deep-blue {
  --primary-color: #8b4513;
  --secondary-color: #cd853f;
  --light-color: #f5deb3;
  --accent-color: #a0522d;
  --white: #ffffff;
  --text-dark: #2c1810;
  --text-light: #5a4a3a;
  --gradient-primary: linear-gradient(135deg, #8b4513 0%, #cd853f 100%);
  --gradient-light: linear-gradient(180deg, #faf0e6 0%, #f5deb3 100%);
  --form-bg: #ffffff;
  --form-border: #cd853f;
  --form-focus: #8b4513;
}

.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%);;
}

.azure-wave-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #faf0e6 0%, #f5deb3 100%);
}

.page-content-area {
  position: relative;
  flex: 1 0 auto;
}

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

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

.top-nav-bar {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background: var(--gradient-primary);
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
}

.top-nav-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 45px 0;
  gap: 60px;
}

.brand-name {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
}

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

.menu-link {
  color: var(--white);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: opacity 0.3s ease;
}

.menu-link:hover {
  opacity: 0.8;
}

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

.hamburger-btn.active {
  display: flex;
}

.hamburger-btn span {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--white);
  border-radius: 50%;
}

@media (max-width: 1100px) {

  .top-nav-bar {
    height: 120px;
  }

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

  .hamburger-btn {
    display: flex;
  }
  .main-nav {
    display: none;
  }
}

@media (max-width: 568px) {

  .top-nav-bar {
    height: 80px;
  }

  .top-nav-inner {
    padding: 18px 0;
  }

  .brand-name {
    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;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
  }

  #mobileMenu.active {
    top: 120px;
  }

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

  .menu-link {
    color: var(--primary-color);
    text-align: center;
    font-family: "Inter", 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 ================== */


/* ================== BANNER START ================== */

.banner-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 60px 0px 70px 0px;
}

.page-heading {
  color: var(--primary-color);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  max-width: 1023px;
  letter-spacing: -0.5px;
}

.banner-content .feature-image-box {
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
}

.banner-content .feature-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

@media (max-width: 768px) {

  .banner-content {
    gap: 30px;
    padding: 50px 0px 50px 0px;
  }

  .page-heading {
    font-size: 36px;
  }

  .banner-content .feature-image-box {
    max-width: 100%;
    border-radius: 12px;
  }

  .intro-text {
    font-size: 18px;
  }

}

@media (max-width: 568px) {

  .banner-content {
    gap: 20px;
    padding: 40px 0px 40px 0px;
  }

  .page-heading {
    font-size: 28px;
  }

  .banner-content .feature-image-box {
    border-radius: 8px;
  }

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

}

/* ================== BANNER END ================== */

/* ================== SLIDER START ================== */

.slider-section {
  padding: 80px 0;
  background: var(--white);
}

.slider-intro {
  margin-bottom: 50px;
  text-align: center;
}

.slider-intro-text {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
}

.slider-item {
  display: none;
  align-items: center;
  gap: 60px;
  padding: 50px;
}

.slider-item.active {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.activity-image-box {
  flex: 1;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
}

.activity-image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.activity-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
}

.activity-title {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.activity-description {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.slider-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.slider-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(15, 76, 117, 0.3);
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 16px;
  height: 16px;
}

.dot:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .slider-section {
    padding: 50px 0;
  }
  
  .slider-item {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .activity-image-box {
    max-width: 100%;
  }
  
  .activity-image-box img {
    height: 300px;
  }
  
  .activity-title {
    font-size: 32px;
  }
  
  .activity-description {
    font-size: 18px;
  }
  
  .slider-controls {
    margin-top: 30px;
  }
}

@media (max-width: 568px) {
  .slider-item {
    padding: 20px 15px;
  }
  
  .activity-title {
    font-size: 26px;
  }
  
  .activity-description {
    font-size: 16px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ================== SLIDER END ================== */

/* ================== CONCLUSION START ================== */

.conclusion-section {
  padding: 80px 0;
  background: var(--gradient-light);
}

@media (max-width: 768px) {
  .slider-intro {
    margin-bottom: 30px;
  }
  
  .slider-intro-text {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .slider-intro-text {
    font-size: 16px;
  }
}

.conclusion-content {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-text {
  color: var(--text-dark);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .conclusion-section {
    padding: 50px 0;
  }
  
  .conclusion-text {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .conclusion-text {
    font-size: 16px;
  }
}

/* ================== CONCLUSION END ================== */




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

.form-section {
  background: linear-gradient(135deg, #faf0e6 0%, #f5deb3 50%, #deb887 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(205, 133, 63, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
 
.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

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

.form-heading {
  color: var(--primary-color);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

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

.main-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: 20px;
  font-weight: 400;
  line-height: normal;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15),
              0 4px 12px rgba(139, 69, 19, 0.1);
  border: 2px solid rgba(205, 133, 63, 0.2);
}

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

.input-field::placeholder {
  color: rgba(139, 69, 19, 0.5);
}

.input-field:focus {
  border-color: var(--form-focus);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2),
              0 0 0 4px rgba(205, 133, 63, 0.1);
  transform: translateY(-2px);
}

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

.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  outline: none;
  border: none;
  border-radius: 4px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3),
              0 2px 8px rgba(139, 69, 19, 0.2);
  position: relative;
  overflow: hidden;
}

.submit-btn::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;
}

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

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4),
              0 4px 12px rgba(139, 69, 19, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

@media (max-width: 768px) {

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

  .form-wrapper {
    gap: 30px;
    padding: 30px 0;
  }

  .form-header {
    gap: 20px;
  }

  .form-heading {
    font-size: 32px;
  }

  .form-subtitle {
    font-size: 18px;
  }

  .main-form {
    padding: 35px 25px;
    gap: 16px;
  }

  .input-field {
    padding: 16px 24px;
    font-size: 18px;
    border-radius: 4px;
  }

  .submit-btn {
    margin-top: 10px;
    padding: 18px 24px;
    font-size: 18px;
    border-radius: 4px;
  }
}

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

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

  .main-form {
    padding: 30px 20px;
  }

  .input-field {
    font-size: 16px;
  }

  .submit-btn {
    font-size: 16px;
  }

}

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


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

.contacts-section {
  padding: 80px 0;
  background: var(--white);
}

.contacts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.contact-info-box {
  max-width: 700px;
  width: 100%;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid rgba(205, 133, 63, 0.2);
}

.contact-title {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 30px 0;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-name,
.contact-address,
.contact-phone,
.contact-email {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.contact-phone a,
.contact-email a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contacts-section {
    padding: 50px 0;
  }

  .contacts-wrapper {
    gap: 40px;
  }

  .map-container iframe {
    height: 350px;
  }

  .contact-info-box {
    padding: 30px 25px;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .contact-name,
  .contact-address,
  .contact-phone,
  .contact-email {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .contacts-wrapper {
    gap: 30px;
  }

  .map-container iframe {
    height: 300px;
  }

  .contact-info-box {
    padding: 25px 20px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .contact-name,
  .contact-address,
  .contact-phone,
  .contact-email {
    font-size: 16px;
  }
}

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


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

.policy-section {
  padding: 80px 0;
  background: var(--white);
}

.policy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.policy-title {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.policy-content {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.policy-content p {
  margin: 0 0 15px 0;
}

.policy-content ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 30px;
  margin: 15px 0;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.policy-content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.policy-content address {
  font-style: normal;
  margin: 15px 0;
}

.policy-content h3 {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 50px 0;
  }

  .policy-wrapper {
    gap: 40px;
  }

  .policy-block {
    gap: 20px;
  }

  .policy-title {
    font-size: 32px;
  }

  .policy-content {
    font-size: 18px;
  }

  .policy-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 568px) {
  .policy-wrapper {
    gap: 30px;
  }

  .policy-title {
    font-size: 28px;
  }

  .policy-content {
    font-size: 16px;
  }

  .policy-content h3 {
    font-size: 22px;
  }

  .policy-content ul {
    padding-left: 25px;
  }
}

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

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

.bottom-footer {
  flex-shrink: 0;
  background: var(--gradient-primary);
  box-shadow: 0 -4px 20px rgba(139, 69, 19, 0.2);
}

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

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

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

.footer-links-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

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

@media (max-width: 768px) {

  .copyright-text {
    font-size: 18px;
  }

  .footer-link-item {
    font-size: 18px;
  }
  
}

@media (max-width: 568px) {

  .footer-inner {
    padding: 30px 0 30px 0;
  }
  
  .copyright-box {
    flex-direction: column;
    gap: 3px;
  }

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

  .footer-links-box {
    gap: 5px;
  }
  
  .footer-link-item {
    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 ================== */