@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  width: auto;
  height: 100%;
  font-family: "Roboto Flex", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
a,
a:hover {
  text-decoration: none;
}

p {
}
.container {
  width: 90%;
  max-width: 1500px;
}
.header-area {
  position: absolute;
  padding: 50px 0;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}
.site-logo a {
	color: #fff;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 16px;
}
.site-logo a img{
  width: 45px;
  height:auto;
}

/* banner-area */
.banner-section {
  position: relative;
  background: #1c1431;
  padding-top: 0;
  padding-bottom: calc(max(100px, 12vh) + 18vw);
}

.gradient-focus {
  position: absolute;
  top: 80px;
  left: 30%;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #2928d9c9;
  opacity: 0.7;
  -webkit-filter: blur(200px);
  filter: blur(200px);
}
.banner-row {
  min-height: 40vh;
}
.banner-content {
  position: relative;
  z-index: 3;
}
.banner-content h2 {
  font-size: 120px;
  line-height: 110px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Sour Gummy", sans-serif;
  color: #fff;
  padding-bottom: 0px;
}
.banner-content h4 {
  color: #fff;
}
.banner-content p {
  color: #fff;
  padding: 30px 0;
}
.astronaut-btn a {
	padding: 20px 46px;
  display: inline-block;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 100px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-decoration: none;
  transition: all 0.3s ease;
}
.astronaut-btn a:hover {
  background: #fff;
  color: #1c1431;
}
.astronaut-btn.astronaut-btn2 a{
  border: 2px solid #1c1431;
	color: #1c1431;
}
.astronaut-btn.astronaut-btn2 a:hover {
  background: #1c1431;
  color: #fff;
}

.banner-image {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: moveLeftRight 7s infinite cubic-bezier(0.42, 0, 0.58, 1);
}

@keyframes moveLeftRight {
  0%   { left: 0; }
  50%  { left: 40px; }
  100% { left: 0; }
}
.banner-image img {
  max-width: 340px;
  height: auto;
}
.banner-section .clouds {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: -1px;
  right: 0;
  pointer-events: none;
}
.banner-section .clouds img {
  width: 100%;
  height: auto;
  display: block;
}

/* demo area */
.demo-section{
  margin-top: -215px;
  z-index: 3;
  position: relative;
}
.ml-auto{
  margin-left: auto;
}
.tablet-frame {
  position: relative;
  max-width: 800px;
  width: 100%;
  height: 550px;
  background-color: white;
  border: 3px solid #333;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 3;
  margin-top: 24px;
  transition: transform 0.5s ease;
}
.tablet-frame .content-area {
    margin: 50px 20px 20px 20px;
    height: calc(100% - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Image container with border */
.tablet-frame .image-container {
    width: 100%;
    height: 100%;
    border: 3px solid #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.tablet-frame .content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Third frame using ::after */
.tablet-frame::after {
    content: "";
    position: absolute;
    max-width: 800px;
    width: 100%;
    height: 550px;
    border: 3px solid #333;
    border-radius: 25px;
    top: -3px;
    left: -3px;
    z-index: -2;
    transform: rotate(5deg);
    transition: all 0.3s ease-out;
}

/* Hover effect for third frame */
.tablet-frame:hover::after {
    transform: rotate(-4deg);
    transition: transform 0.3s ease-in;
}

.tablet-frame:hover {
    transform: rotate(1deg);
    transition: transform 0.3s ease-in;
}

.tablet-frame:hover .image-container{
    transform: rotate(-1deg);
    transition: transform 0.3s ease-in;
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 9px;
    position: absolute;
    top: 18px;
    left: 28px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

.demo-section .demo-items .single-demo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 120px;
}
.demo-items .single-demo .demo-content{
  width: 90%;
}
.demo-items .single-demo .demo-content h4 {
  font-family: "Sour Gummy", sans-serif;
	font-size: 56px;
	line-height: 60px;
	font-weight: 500;
	text-transform: uppercase;
	color: #1c1431;
	margin-bottom: 10px;
}
.demo-items .single-demo .demo-content p {
	font-size: 16px;
	line-height: 30px;
	color: #3c3c3c;
	margin-bottom: 15px;
	width: 95%;
	font-weight: 500;
}
.section-heading{
  font-family: "Sour Gummy", sans-serif;
	font-size: 56px;
	line-height: 60px;
	font-weight: 500;
  padding-bottom: 60px;
}
.feature-section .feature-box h5{
  width: 50px;
  height: 50px;
  border: 2px solid #1c1431;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}
.feature-section {
  margin-bottom: 120px;
}
.feature-section .feature-box h4{
  font-family: "Sour Gummy", sans-serif;
	font-size: 25px;
	line-height: 30px;
	font-weight: 500;
  padding:16px 0;
}
.footer-area{
  background: #1c1431;
  padding: 30px 0;
}
.Copyright-text p{
  text-align: end;
  color:#fff;
}

@media screen and (max-width: 1440px) {
    .container {
        max-width: 1240px;
    }
    .tablet-frame,
    .tablet-frame::after {
        height: 450px;
    }
    .image-container {
        height: 350px;
    }
}