@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --hue: 217;
  --sat: 85%;
  --light: 74%;

  --primary-color: hsl(var(--hue) var(--sat) var(--light));
  --white-color: hsl(var(--hue) 45% 98%);
  --dark-color: hsl(var(--hue) 26% 12%);

  --color-01: var(--primary-color); /* Primary to dark */
  --color-02: var(--white-color); /* White to dark */
  --color-03: var(--dark-color); /* Dark to white */
  --color-04: hsl(var(--hue) 0% 62%); /* Light-gray to dark-gray */
  --color-05: var(--dark-color); /* Dark to primary */

  --body-color: hsl(250 26% 12%);
  --hover-color: hsl(var(--hue) var(--sat) calc(var(--light) - 7%));

  --bottom-nav-bg: hsl(var(--hue) 32% 25% / 0.65);
  --card-bg: linear-gradient(
    120deg,
    hsl(var(--hue) 54% 74% / 0.15),
    hsl(var(--hue) 54% 74% / 0.05)
  );
  --modal-backdrop-bg: hsl(var(--hue) 54% 74% / 0.1);
  --footer-bg: linear-gradient(
    360deg,
    hsl(var(--hue) 54% 74% / 0.15),
    hsl(var(--hue) 54% 74% / 0.1)
  );

  --scrollbar-color: hsl(var(--hue) 25% 20%);
  --scrollbar-thumb: var(--primary-color);
  --scrollbar-thumb-hover: var(--hover-color);

  --body-font-family: "Poppins", serif;

  --h1-fs: 2.85rem;
  --h2-fs: 2.25rem;
  --h3-fs: 1.97rem;
  --h4-fs: 1.43rem;
  --h5-fs: 1.13rem;

  --xlarge-fs: 1.48rem;
  --large-fs: 1.23rem;
  --medium-fs: 1.18rem;
  --base-fs: 1.1rem;
  --small-fs: 1.07rem;
  --tiny-fs: 0.98rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* z index */
  --z-minus: -1;
  --z-base: 0;
  --z-low: 1;
  --z-high: 10;
  --z-content: 100;
  --z-tooltip: 1000;
  --z-fixed: 1100;
  --z-overlay: 1110;
  --z-modal: 1990;
  --z-max: 9999;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-04);
  background: var(--body-color);
  transition: 0.3s;
}
body::-webkit-scrollbar {
  background: transparent;
  display: none;
  width: 8px;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

ul,
li {
  list-style: none;
}

a {
  color: var(--color-04);
  text-decoration: none;
  cursor: pointer;
}

iframe {
  border: none;
  width: 100%;
  min-height: 100vh;
}

.c-section {
  position: relative;
  overflow: hidden;
}

.c-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.c-sub-container {
  padding-top: 7em;
  padding-bottom: 5em;
}

.c-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 95px;
}
.section-title h3 {
  color: var(--color-01);
  font-size: var(--h3-fs);
  font-weight: var(--font-bold);
  margin-bottom: 10px;
}
.section-title p {
  color: var(--color-04);
  font-size: var(--base-fs);
  font-weight: var(--font-regular);
}

.section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 75px;
}

.c-header {
  z-index: var(--z-fixed);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 0;
  transition: 0.3s ease;
}
.c-header.shrink{
    background: var(--body-color);
    padding: 12px 0;
}
.c-header .inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-logo a {
  color: var(--color-01);
  font-size: 2.6rem;
  font-weight: var(--font-semibold);
  letter-spacing: -3px;
  transition: 0.3s;
}
.c-logo a:hover {
  color: var(--hover-color);
}

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

.c-main-btn {
  width: fit-content;
  padding: 14px 30px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
}
.c-main-btn:hover {
  color: var(--white-color);
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
}
.c-main-btn a {
  color: var(--color-01);
  font-size: var(--small-fs);
  font-weight: 500;
  transition: 0.3s;
}
.c-main-btn:hover a {
  color: var(--white-color);
}

.border-btn {
  border: 2px solid var(--color-01);
}

.fill-btn {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.fill-btn a {
  color: var(--dark-color);
}
