@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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=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');

:root {
  /* Disaply font sizes */
  --font-size-display-2: 3rem;
  --line-height-display-2: auto;

  --font-size-display-3: 3rem;
  --line-height-display-3: auto;

  --font-size-display-4: 1.75rem;
  --line-height-display-4: auto;

  /* Heading font sizes */
  --font-size-heading-1: 3.125rem;
  --line-height-heading-1: 4.125rem;

  --font-size-heading-2: 2.375rem;
  --line-height-heading-2: 3.125rem;

  --font-size-heading-3: 1.5rem;
  --line-height-heading-3: 2.125rem;

  --font-size-heading-4: 1.375rem;
  --line-height-heading-4: 1.75rem;

  --font-size-heading-5: 1.125rem;
  --line-height-heading-5: 1.5rem;

  --font-size-heading-6: 1rem;
  --line-height-heading-6: 1.375rem;

  /* Body font sizes */
  --font-size-body-large: 1.25rem;
  --line-height-body-large: 2.063rem;

  --font-size-body-default: 1.125rem;
  --line-height-body-default: 1.813rem;

  --font-size-body-small: 0.875rem;
  --line-height-body-small: 1.5rem;

  /* Title font size */
  --font-size-title: 3.5rem;
  --line-height-title: 3.85rem;

  /* Color styles */
  --color-primary: #0076BC;
  --color-secondary: #262B28;
  --color-gray-dark: #4A4C55;
  --color-gray-light: #CCCCCC;
  --color-light-blue: #F2FAFF;
  --color-white: #FFFFFF;
  --color-charcoal-blue: #273547;
  --color-off-white: rgba(255, 255, 255, 0.7);
}

/* poppins fonts */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* outfit fonts */
.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.outfit-regular {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Display Styles */
.ed-display-2 {
  font-size: var(--font-size-display-2);
  line-height: var(--line-height-display-2);
}

.ed-display-3 {
  font-size: var(--font-size-display-3);
  line-height: var(--line-height-display-3);
}

.ed-display-4 {
  font-size: var(--font-size-display-4);
  line-height: var(--line-height-display-4);
}

/* Heading Styles */
.ed-heading-1 {
  font-size: var(--font-size-heading-1);
  line-height: var(--line-height-heading-1);
}

.ed-heading-2 {
  font-size: var(--font-size-heading-2);
  line-height: var(--line-height-heading-2);
}

.ed-heading-3 {
  font-size: var(--font-size-heading-3);
  line-height: var(--line-height-heading-3);
}

.ed-heading-4 {
  font-size: var(--font-size-heading-4);
  line-height: var(--line-height-heading-4);
}

.ed-heading-5 {
  font-size: var(--font-size-heading-5);
  line-height: var(--line-height-heading-5);
}

.ed-heading-6 {
  font-size: var(--font-size-heading-6);
  line-height: var(--line-height-heading-6);
}

@media (max-width:575.98px) {
  .ed-heading-1 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
  }

  .ed-heading-2 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
  }
}

/* Body Text Styles */
.ed-body-large {
  font-size: var(--font-size-body-large);
  line-height: var(--line-height-body-large);
}

.ed-body-default {
  font-size: var(--font-size-body-default);
  line-height: var(--line-height-body-default);
}

.ed-body-small {
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-body-small);
}

/* Title Text Styles */
.ed-title-default {
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
}

/* Text Colors */
.ed-text-primary {
  color: var(--color-primary);
}

.ed-text-secondary {
  color: var(--color-secondary);
}

.ed-text-gray-dark {
  color: var(--color-gray-dark);
}

.ed-text-gray-light {
  color: var(--color-gray-light);
}

.ed-text-light-blue {
  color: var(--color-light-blue);
}

.ed-text-white {
  color: var(--color-white);
}

.ed-text-off-white {
  color: var(--color-off-white);
}

.ed-text-charcoal-blue {
  color: var(--color-charcoal-blue);
}

/* Background Colors */
.ed-bg-primary {
  background-color: var(--color-primary);
}

.ed-bg-secondary {
  background-color: var(--color-secondary);
}

.ed-bg-gray-dark {
  background-color: var(--color-gray-dark);
}

.ed-bg-gray-light {
  background-color: var(--color-gray-light);
}

.ed-bg-light-blue {
  background-color: var(--color-light-blue);
}

.ed-bg-white {
  background-color: var(--color-white);
}

/* Border Colors */
.ed-border-primary {
  border-color: var(--color-primary);
}

.ed-border-secondary {
  border-color: var(--color-secondary);
}

.ed-border-gray-dark {
  border-color: var(--color-gray-dark);
}

.ed-border-gray-light {
  border-color: var(--color-gray-light);
}

.ed-border-light-blue {
  border-color: var(--color-light-blue);
}

.ed-border-white {
  border-color: var(--color-white);
}

/* Button */
.ed-button-default {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.833rem;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5.71px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
}

/* Hover, focus, and active states */
/* .ed-button-default:hover,
.ed-button-default:focus {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
} */

.ed-button-default:active {
  background-color: var(--color-gray-dark);
  box-shadow: none;
}

.ed-button-default:disabled,
.ed-button-default[disabled] {
  background-color: var(--color-gray-dark);
  color: var(--color-light-blue);
  cursor: not-allowed;
  opacity: 0.6;
}

.ed-button-default-reverse {
  display: inline-block;
  padding: 0.5rem 2rem;
  font-size: 0.833rem;
  text-align: center;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 5.71px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
}

/* Hover, focus, and active states */
/* .ed-button-default-reverse:hover,
.ed-button-default-reverse:focus {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
} */

.ed-button-default-reverse:active {
  background-color: var(--color-off-white);
  box-shadow: none;
}

.ed-button-default-reverse:disabled,
.ed-button-default-reverse[disabled] {
  background-color: var(--color-off-white);
  color: var(--color-primary);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Margin */
.ed-catelogue-margin {
  margin-bottom: 7rem;
}

@media (max-width:768px) {
  .ed-catelogue-margin {
    margin-bottom: 2rem;
  }
}

/* Contact Section */
.ed-contact-container {
  height: 46.875rem;
  width: 100%;
  max-width: 100%;
  background: url('./assets/dist/images/contact-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}

.ed-contact-card {
  padding: 2.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 4px 20.6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  position: absolute;
  bottom: -44px;
}

.ed-contact-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-contact-card-form {
  flex: 1;
}

.input-default {
  width: 100%;
  padding: 0.75rem 1rem;
  color: #486284;
  background-color: rgba(206, 215, 228, 0.18);
  border: none;
  border-radius: none;
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-default:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.input-default::placeholder {
  color: #486284;
}

@media (max-width: 1024px) {
  .ed-contact-card {
    padding: 1.875rem;
    margin: 1.375rem;
  }
}

@media (max-width: 768px) {
  .ed-contact-container {
    height: auto;
  }

  .ed-contact-card {
    bottom: 0;
    position: unset;
    flex-direction: column;
    padding: 1.375rem;
    margin: 1.75rem;
  }
}

/* Footer Section */
.ed-footer-section {
  margin-top: 22rem;
}

.ed-footer-section footer {
  position: relative;
  padding: 10rem 0 2rem 0;
  background: url('assets/dist/images/footer-bg.png') center center/cover no-repeat;
}

.ed-footer-section footer .cta {
  position: relative;
  padding: 6rem 4rem;
  background: url('assets/dist/images/footer-contact-bg.png') center center/cover no-repeat;
  border-radius: 11px;
  margin-top: -22rem;
}

.ed-footer-section footer .social li {
  display: inline-block;
  position: relative;
}

.ed-footer-section footer .social li a {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.ed-footer-section footer .social li a>i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ed-footer-section footer .footer-second-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ed-footer-section footer .footer-second-col ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.ed-footer-section footer .footer-second-col ul li::before {
  content: "";
  background-image: url('assets/dist/images/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  position: initial;
}

.ed-footer-section footer .footer-third-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ed-footer-section footer .footer-third-col ul li {
  position: relative;
  display: flex;
}

.ed-footer-section footer .footer-third-col ul li:nth-child(1):before {
  content: "";
  background-image: url('assets/dist/images/location.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 0.8rem;
  position: initial;
  flex-shrink: 0;
}

.ed-footer-section footer .footer-third-col ul li:nth-child(2)::before {
  content: "";
  background-image: url('assets/dist/images/call.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 0.8rem;
  position: initial;
  flex-shrink: 0;
}

.ed-footer-section footer .footer-third-col ul li:nth-child(3)::before {
  content: "";
  background-image: url('assets/dist/images/email.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 0.8rem;
  position: initial;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ed-footer-section {
    margin-top: 16rem;
  }
}

@media (max-width:575.98px) {
  .ed-footer-section footer .cta {
    padding: 4rem;
  }
}

/* banner section */
.ed-banner-section>.p1 {
  font-size: 4.688rem;
  line-height: 5.875rem;
}

.ed-banner-section .ed-banner-text {
  padding-top: 14.75rem;
}

/* Home Page */
.nav>.nav-item>a {
  font-size: 16px;
  line-height: 20.8;
}

.ed-about-us-section {
  background: url('assets/dist/images/about-us-bg.svg') left center/contain no-repeat;
}

.ed-why-us-section {
  background: url('assets/dist/images/whyUs_bg1.svg') left center/contain no-repeat;
}

.ed-products-slider-section {
  background: url('assets/dist/images/slider-bg.svg') center center/cover no-repeat;
}

.ed-product-slider-card {
  width: 100%;
  border: none;
  border-color: transparent;
  border-radius: 0;
  border-top-left-radius: 50px;
  height: 375px;
}

.ed-special-text {
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 2.25px rgba(0, 118, 188, 0.16);
  text-stroke: 2.25px rgba(0, 118, 188, 0.16);
  position: relative;
}

.ed-special-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(12%);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

/* Fine-tune font sizes with media queries */
@media (min-width: 320px) {
  .ed-special-text {
    font-size: clamp(20px, 11vw, 40.65px);
  }
}

@media (min-width: 425.99px) {
  .ed-special-text {
    font-size: clamp(25px, 10.8vw, 73.65px);
  }
}

@media (min-width: 768.99px) {
  .ed-special-text {
    font-size: clamp(30px, 10.2vw, 97.65px);
  }
}

@media (min-width: 1024.99px) {
  .ed-special-text {
    font-size: clamp(50px, 9.6vw, 140.65px);
  }
}

@media (min-width: 1399.98px) {
  .ed-special-text {
    font-size: clamp(55px, 9.6vw, 160.65px);
  }
}

@media (min-width: 1440.98px) {
  .ed-special-text {
    font-size: clamp(60px, 12vw, 183.65px);
  }
}

/* About Us Page */
.ed-quality-section {
  background: url('assets/dist/images/quality-bg.svg') center center/cover no-repeat;
}