@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: 18px;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #f0f4f8;
  height: 100%;
}

:root {
  --primary-blue: #0e4c92;
  --secondary-blue: #1e6ba8;
  --light-blue: #e3f2fd;
  --accent-teal: #26a69a;
  --dark-navy: #0d1b2a;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-light: #4a5568;
  --gradient-primary: linear-gradient(135deg, #0e4c92 0%, #1e6ba8 50%, #26a69a 100%);
  --gradient-light: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
  --shadow-soft: 0 4px 6px rgba(14, 76, 146, 0.1);
  --shadow-medium: 0 8px 16px rgba(14, 76, 146, 0.15);
}

.ocean-blue-theme {
  --primary-color: #0e4c92;
  --secondary-color: #1e6ba8;
  --light-color: #e3f2fd;
  --accent-color: #26a69a;
  --dark-color: #0d1b2a;
  --white: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --bg-gradient: linear-gradient(135deg, #0e4c92 0%, #1e6ba8 50%, #26a69a 100%);
  --section-gradient: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
}

.main-page-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f0f4f8;
}

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

.page-container {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

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

.top-navigation-header {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  background: var(--bg-gradient);
  box-shadow: var(--shadow-medium);
}

.header-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  position: relative;
}

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

.navigation-list {
  display: flex;
  gap: 36px;
  align-items: center;
}

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

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

.hamburger-menu {
  display: none;
  gap: 5px;
  max-width: 40px;
  width: 100%;
  cursor: pointer;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
}

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

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

@media (max-width: 1100px) {
  .top-navigation-header {
    height: 110px;
  }

  .header-content-wrapper {
    padding: 28px 0;
    justify-content: space-between;
  }

  .hamburger-menu {
    display: flex;
    position: static;
  }
  .main-navigation {
    display: none;
  }
}

@media (max-width: 568px) {
  .top-navigation-header {
    height: 75px;
  }

  .header-content-wrapper {
    padding: 16px 0;
  }

  .brand-logo {
    font-size: 28px;
  }
}

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

  #mobileMenu.active {
    top: 110px;
  }

  .navigation-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .navigation-link {
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
  }
}

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

.no-scroll {
  overflow: hidden;
}

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


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

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

.intro-content-block {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  text-align: center;
}

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

.intro-paragraph {
  color: var(--text-primary);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 880px;
}

@media (max-width: 768px) {
  .intro-banner-section {
    padding: 65px 0;
  }

  .intro-content-block {
    gap: 30px;
  }

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

  .intro-paragraph {
    font-size: 19px;
  }
}

@media (max-width: 568px) {
  .intro-banner-section {
    padding: 45px 0;
  }

  .intro-content-block {
    gap: 22px;
  }

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

  .intro-paragraph {
    font-size: 17px;
  }
}

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



/* ================== FEATURED IMAGE START ================== */

.featured-image-section {
  padding: 60px 0;
  background-color: var(--white);
}

.featured-image-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .featured-image-section {
    padding: 40px 0;
  }

  .featured-image-wrapper {
    border-radius: 16px;
  }
}

/* ================== FEATURED IMAGE END ================== */

/* ================== PRODUCTS SHOWCASE START ================== */

.products-showcase-section {
  padding: 70px 0;
  background-color: var(--white);
}

.products-grid-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.product-item-block {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.product-image-box {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

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

.product-description-box {
  flex: 1;
  display: flex;
  align-items: center;
}

.product-description-text {
  color: var(--text-primary);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.product-description-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

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

  .products-grid-container {
    gap: 35px;
  }

  .product-item-block {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }

  .product-image-box {
    max-width: 100%;
  }

  .product-image-box img {
    height: 240px;
  }

  .product-description-text {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 568px) {
  .products-showcase-section {
    padding: 35px 0;
  }

  .products-grid-container {
    gap: 25px;
  }

  .product-item-block {
    padding: 20px;
    border-radius: 16px;
  }

  .product-image-box {
    border-radius: 12px;
  }

  .product-image-box img {
    height: 200px;
  }

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

/* ================== PRODUCTS SHOWCASE END ================== */

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

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

.conclusion-content-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

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

  .conclusion-paragraph {
    font-size: 19px;
  }
}

@media (max-width: 568px) {
  .conclusion-section {
    padding: 35px 0;
  }

  .conclusion-paragraph {
    font-size: 17px;
  }
}

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




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

.contact-form-area {
  background: var(--section-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-form-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(14, 76, 146, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(38, 166, 154, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 580px;
  width: 100%;
  background: var(--white);
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(14, 76, 146, 0.1);
}

.input-name-field,
.input-email-field {
  width: 100%;
  padding: 16px 28px;
  outline: none;
  border: 2px solid rgba(14, 76, 146, 0.2);
  border-radius: 12px;
  background: var(--white);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 18px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-name-field::placeholder,
.input-email-field::placeholder {
  color: rgba(14, 76, 146, 0.5);
}

.input-name-field:focus,
.input-email-field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(14, 76, 146, 0.1);
  transform: translateY(-2px);
}

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

.submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 32px;
  outline: none;
  border: none;
  border-radius: 12px;
  background: var(--bg-gradient);
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: var(--shadow-medium);
  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 10px 24px rgba(14, 76, 146, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .contact-form-area {
    padding: 60px 0;
  }

  .subscription-form {
    padding: 35px 25px;
    gap: 18px;
  }

  .input-name-field,
  .input-email-field {
    padding: 14px 22px;
    font-size: 16px;
  }

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

@media (max-width: 568px) {
  .contact-form-area {
    padding: 45px 0;
  }

  .subscription-form {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .input-name-field,
  .input-email-field {
    font-size: 15px;
    border-radius: 10px;
  }

  .submit-btn {
    font-size: 17px;
    border-radius: 10px;
  }
}

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


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

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

.contacts-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contacts-title {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-item {
  color: var(--text-primary);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.map-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

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

  .contacts-info-block {
    gap: 25px;
    margin-bottom: 40px;
  }

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

  .contact-item {
    font-size: 18px;
  }

  .map-container {
    border-radius: 16px;
  }

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

@media (max-width: 568px) {
  .contacts-content-section {
    padding: 35px 0;
  }

  .contacts-info-block {
    gap: 20px;
    margin-bottom: 30px;
  }

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

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

  .map-container {
    border-radius: 12px;
  }

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

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


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

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

.policy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.policy-section-title {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.policy-text-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

  .policy-content-wrapper {
    gap: 40px;
  }

  .policy-section-block {
    gap: 20px;
  }

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

  .policy-text-content {
    font-size: 17px;
  }

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

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

@media (max-width: 568px) {
  .policy-content-section {
    padding: 35px 0;
  }

  .policy-content-wrapper {
    gap: 30px;
  }

  .policy-section-title {
    font-size: 26px;
  }

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

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

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

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

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

.page-footer {
  flex-shrink: 0;
  background: var(--bg-gradient);
  box-shadow: 0 -4px 12px rgba(14, 76, 146, 0.1);
}

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

.footer-copyright-block {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.footer-links-block {
  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: 18px;
  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) {
  .footer-content-wrapper {
    gap: 18px;
    padding: 40px 0 45px 0;
  }

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

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

@media (max-width: 568px) {
  .footer-content-wrapper {
    padding: 28px 0 32px 0;
    gap: 15px;
  }

  .footer-copyright-block {
    flex-direction: column;
    gap: 4px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-links-block {
    gap: 6px;
  }

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

/* ================== 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 ================== */