@import url(index_svg.css);

:root{
    --blue: #23c0c5;
    --yellow: #ffd875;
    --text: #000b17;
    --sky: #e3f2fd;
}

* { 
    margin: 0; padding: 0; 
    box-sizing: border-box; 
    font-family: sans-serif;
}
body{
    margin:auto;
    width: 100%;
    padding: 0;
}
main{
    width: 100%;
    margin: auto;
}
section{
    max-width: 1440px;
    width: 100%;
    margin: auto;
    padding: 0 10px;
}

section > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg{
    background-color: var(--sky);
    width: 100%;
    max-width: 100%;
}

.bg > div{
    max-width: 1440px;
    margin: auto;
}

li{
    list-style: none;
}

/* TYPOGRAPHY | TEXT */
p, a, span, h1, h2, h3, .text, li{
    color: var(--text);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 2rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

p {
  margin-bottom: 1rem;
}

.text{
    font-size: medium;
    font-weight: 100;
    text-decoration: none;
}

a{
    text-decoration: none;
}

.icon{
  width: 50px;
}



/* BUTTONS & LINKS */
.cta-button { 
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ;
  overflow: hidden;
  color: white;
  border: 2px solid var(--blue); 
  background: transparent; 
  color: var(--blue); 

}
.cta-button::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0;
  width: 0; 
  height: 100%; 
  background: var(--blue);
  z-index: -1; 
  transition: 0.5s;
}
.cta-button:hover { color: #fff; }
.cta-button:hover::before { width: 100%; }



/* HEADER SECTION */
header{
    height: 60px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: auto;
}
header nav{
    display: flex;
    background: linear-gradient(-45deg, var(--blue) 0%, var(--sky) 100%);
    border-radius: 100% 0% 60px 150px / 0% 100% 0% 100% ;
    width: 30%;
    padding: 0 10px 0 150px ;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
header > div > img {
  padding: 5px 10px;
  width: 80px;
  
}

header .link{
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: 0.5s ease;
}
header .link:hover{
  border-bottom: white solid 3px;
}
/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5rem 8%;
  min-height: 90dvh;
}

/* PROCESS SECTION */
.process {
  padding: 5rem 8%;
}

.steps {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


@media (max-width: 600px) {
    /*  */
}