/* Variables */
:root {
  --primary-color: white;
  --secondary-color: #001f2e;
  --teriary-color: #00253b;
  --text: #004d79;
  --hover-color: #002e49;
  --border-color: #003952;
}

/* Default Design for Everything */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  outline: none;
  transition: all 0.5s ease;
  scrollbar-color: #003348 #003149; /* Thumb color Track color */
  scrollbar-width: thin;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #001f2e; /* Track color */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #003348, #003149); /* Thumb gradient */
  border-radius: 10px;
}

/* Body */
body {
  color: var(--primary-color);
  background: linear-gradient(160deg, #0021355e 0%, #001f1b7c 100%),
    url(/assets/Images/background.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Parent div */
.parent {
  padding-top: 10px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img {
  width: 200px;
}

/* Heading of the section */
h1 {
  margin-bottom: 20px;
  font-weight: bolder;
  font-size: 60px;
}

h1 a {
  text-decoration: none;
  color: var(--primary-color);
}

/* Window to download Inflow App */
.download-window {
  background: var(--secondary-color);
  width: 90%;
  height: 650px;
  border-radius: 15px;
  box-shadow: 68px 20px 110px -3px rgba(6, 185, 230, 0.452);
}

/* Top Bar of Window  --start */
.top {
  background: var(--teriary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Three on the right side of top bar -- start */
.menu-icon {
  width: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  margin-right: 20px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.dot:nth-child(1) {
  background-color: red;
}

.dot:nth-child(2) {
  background-color: yellow;
}

.dot:nth-child(3) {
  background-color: green;
}

/* Three on the right side of top bar -- start */

/* Tabs Design in Top Bar of the window --start */
.tabs {
  padding: 0;
  display: flex;
  flex-direction: row;
}

.tab {
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-color);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 1px solid var(--teriary-color);
}

.tab-title {
  font-size: 14px;
  color: white;
  font-weight: bolder;
  letter-spacing: 1.2px;
  margin-right: 15px;
}

/* Tabs Design in Top Bar of the window --end */

/* Top Bar of Window --end */

/* Download Contents ( Title, Icon, Description, Button) --start */

.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 90%;
  padding: 60px;
  text-align: center;
  overflow: auto;
}

.download-content img {
  width: 100px;
  margin-bottom: 10px;
}

.download-content h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.download-content p {
  font-size: 17px;
  letter-spacing: 1.3px;
  color: var(--text);
  margin-bottom: 20px;
  width: 80%;
}

.download-content a {
  text-decoration: none;
  background: var(--teriary-color);
  border: 1px solid var(--border-color);
  padding: 20px 40px;
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: bolder;
}

.download-content a:hover {
  background: var(--hover-color);
  cursor: pointer;
}

.download-content a i {
  font-size: 17px;
  margin: 0;
  margin-right: 10px;
}

/* How to use --start */
.how {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  padding: 20px;
  padding-bottom: 0px;
  margin-top: 30px;
}

.how h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.how li {
  font-size: 17px;
  letter-spacing: 1.3px;
  color: var(--text);
  margin-top: 20px;
  width: 80%;
}
/* How to use --end */

/* Download Contents --end */

/* Style for scroll down instruction */
.scroll {
  text-align: center;
  margin-top: 10px;
  letter-spacing: 1.2px;
}

/* Footer  --start */
.footer {
  text-align: center;
  margin-top: 50px;
}

.footer span {
  font-size: 17.5px;
  font-family: "Fira Code", monospace;
  color: #0078bd;
}

.footer span a {
  color: #1281a3;
  text-decoration: none;
  font-weight: bold;
}
/* Footer --end */
