:root{
    --bg-color: #E9F3F4;
    --btn-color: #2A8E9E;
    --dark-btn-color: #022b50;
    --dark-bg-color: #023247;
    --card-color: #0C3A4E;
    --text-color: #178495;
    --h1-color: #1D1E20;
    --dark-text-color: #46606A;
    --plus-bg: #eef7f7;
    --plus-text: #0a3b3f;
    --premium-1: #0b8a94;
    --premium-2: #046b77;
    --card-w: 360px;   /* wider */
    --card-h: 220px;   /* taller */
    --radius: 16px;
    color:#022b50
}
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica.ttf') format('truetype');
  }
  

*{
    margin: 0;
    padding: 0;
}
button{
  cursor: pointer;
}
body {
    font-family: 'MyFont', sans-serif;
  }
.se{
    background-color: var(--bg-color);
    padding: 1em;
    padding-bottom: 12em;
}
/*===========================================HEADER STYLING==================================================*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}
/* Left nav styling*/
.left{
    margin-left: 50px;
}
.left h1 i{
    width: 20px;
    height: 20px;
    margin-right: 0.3em;
}
.left h1{
    font-size: 1.5em;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
/* middle nav styling*/
.middle{
    margin-right: 300px;
}

.navbar ul{
    display: flex;
    gap: 3em;
}
.nav-link{
    color: var(--dark-text-color);
    font-weight: 700;
}
/* right nav styling*/
.right{
    margin-right: 50px;
    display: flex;
    gap:1em;
    justify-content: space-between;
}
.login-btn{
    background-color: transparent;
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 800;
    border: 1px solid var(--btn-color);
    width: 6em;
    height: 2.6em;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.login-btn:hover{
    background-color: var(--btn-color);
    border-radius: 10px;
    color: #fff;
    width: 6em;
    height: 2.6em;
    cursor: pointer;
}
.signup-btn{
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background-color:  var(--btn-color);
    width: 6em;
    height: 2.6em;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.signup-btn:hover{
    color: var(--text-color);
    border: 1px solid var(--btn-color);
    border-radius: 10px;
    background-color:  transparent;
    width: 6em;
    height: 2.6em;
    cursor: pointer;
}


/*==========================================HERO STYLING================================================*/
.hero{
    margin-top: 6em;
    display: flex;
    justify-content: center;

}
.hero-flex{
    display: flex;
    gap: 20em;
}
.hero-text h1{
    font-size: 3.6em;
    color: var(--dark-btn-color);
    font-weight: 400;
    line-height: 1.1em;
}
.hero-text h1 span{
    font-weight: 600;
}
.hero-text p {
    margin-top: 1.6em;
    color: grey;
    font-weight: 400;
}
.hero-input{
    margin-top: 2em;
    
    position: relative;


}
.hero-input input{
    width: 80%;
    padding-right: 60px; /* leave space for button */
    padding: 1em 4em;
    box-sizing: border-box;
    border-radius: 1em;
    border: 0.1em solid var(--btn-color);
}
.hero-input input:active{
    border: 1px solid red;
}
.hero-input  button{
    position: absolute;
  left: 60%;
  top: 0;
  height: 100%;
  padding: 0 1em;
  border-radius: 1em;
  border: none;
  background-color: var(--btn-color);
  color: white;
  cursor: pointer;
}
.hero-input  button i {
    margin-left: 0.2em;

}

.hero-img img{
    width:30em;
    height: 30em;
}

.hero-collabs{
    margin-top: 2em;
    display: flex;
    gap: 2em;
}


.payment-container {
    position: relative;
    width: 340px;
  }
  
  /* Floating card */
  .credit-card {
    position: absolute;
    right: -40px;
    top: -30px;
    width: 220px;
    height: 130px;
    background: linear-gradient(#149bb7, #022b50);
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  
  .credit-card .card-header {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .credit-card .card-number {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  
  .credit-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .credit-card .visa {
    font-weight: bold;
    font-size: 18px;
  }
  
  .credit-card .fa-wifi {
    transform: rotate(90deg);
  }
  
  /* Main box */
  .payment-box {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 90px;
  }
  
  /* User Info */
  .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }
  
  .avatar {
    background: #009fe3;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
  }
  
  .details .name {
    font-weight: bold;
    font-size: 14px;
  }
  
  .details .email {
    font-size: 12px;
    color: #666;
  }
  
  /* Invoice */
  .invoice {
    margin-bottom: 20px;
  }
  
  .invoice p {
    font-size: 13px;
    color: #444;
  }
  
  .invoice h2 {
    font-size: 24px;
    margin: 5px 0;
  }
  
  .invoice small {
    font-size: 12px;
    color: #666;
  }
  
  /* Payment methods */
  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .method i {
    margin-right: 10px;
    color: #333;
  }
  
  .method.active {
    border-color: #009fe3;
    background-color: #f1faff;
  }
  
  .method input[type="radio"] {
    accent-color: #009fe3;
  }
  
  /* Pay Button */
  .pay-btn {
    width: 100%;
    background: var(--dark-btn-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
  }



  /* ====================================================================PAYMENT STYLING============================================================ */

/* Centered white card */
.payment {
  padding: 48px 16px;
  margin-top: -9em;
}
.card {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 6em 56px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* ===== TOP ROW ===== */
.header1 {
  display: grid;
  grid-template-columns: 2fr 1fr;   /* left is wider than right */
  gap: 48px;
  align-items: start;               /* keep the right paragraph aligned to top */
  margin-bottom: 40px;
}

.intro .eyebrow {
  color: #06b6d4;                   /* teal-ish */
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 10px;
}
.intro h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.side-copy {
  margin: 0;
  color: #475569;                   /* slate-600 */
  line-height: 1.6;
  max-width: 360px;                 /* keeps it narrow like the screenshot */
  align-self: start;
}

/* ===== FEATURES ROW ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.feature .icon {
  font-size: 28px;
  color: #06b6d4;
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: #64748b;                   /* slate-500 */
  line-height: 1.6;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header1 { grid-template-columns: 1fr; }
  .side-copy { max-width: none; }
  .features { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .card { padding: 28px 22px; }
  .intro h2 { font-size: 30px; }
}

/* ==================================================== WHY US STYLING ======================================================================= */

.why-us{
  margin-top: 9em;
  display: grid;
align-items: center;
  justify-content: center;
  margin-bottom: 10em;
}
.why-us-text{
  position: relative;
  text-align: center;
}
.why-us-text p {
  color: var(--text-color);
}
.why-us-text h1{
  margin-top: 0.2em;
  font-size: 2.6em;
  color: var(--h1-color);
}

.first-cards{
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  gap: 2em;
  margin-top: 3em;
}
.card-1{
  width: 35em;
  height: 22em;
  background-color: var(--bg-color);
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 2em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.card-1 h1{
  font-size: 5em;
  color: var(--text-color);
  margin-left: 2rem;

}
.card-1 h2{
  margin-top: 1.5em;
  margin-left: 2rem;
}
.card-2{
  box-shadow:  0 6px 18px rgba(0,0,0,0.08);
  background-color: var(--bg-color);
  align-content: center;
  width: 35em;
  height: 22em;
  justify-content: center;
  margin: 0 auto;
  border-radius: 2em;
}
.card-2 h2{
  align-content: center;
  font-size: 1.7em ;
  text-align: center;
  margin-top: 3em;
  align-items: center;
}

.card-2 .i{
 text-align: center;
 margin-top: 4em;
 display: flex;
 justify-content: center;
 gap:1em;
}
.card-2 .i i {
  font-size: 2.4em;
}
.card-2  .i .fa-university{
  background-color: #009fe3;
  color: #fff;
  padding: 0.3em;
  border-radius: 15px;
}
.card-2  .i .fa-credit-card{
  background-color: #1D1E20;
  color: #fff;
  padding: 0.3em;
  border-radius: 50px;
}



  /* Arrows container */
  .arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top:1.4em ;
  }

  /* Skinny arrows */
  .arrow {
    width: 2em;
    height: 0.1em;
    font-size: 3em;
    background-color: #aaa;
    position: relative;
  }
.card-3{
  width: 70em;
  height: 22em;
  background-color: var(--bg-color);
  border-radius: 2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18em;
  margin-top: 2em;
  overflow: hidden;
  box-shadow:  0 6px 18px rgba(0,0,0,0.08)  ;
}
.card-3-text{
  margin-top: 5em;
}
.card-3-text h1{
  font-size: 1.9em;
}
.card-3-text p{
  font-size: 15px;
  line-height: 1.5;
  margin-top: 1em;
}
.card-3-img img{
  width: 32em;
  height: 20em;
  border-radius: 2em;
  margin-top: 4em;
  box-shadow: 0px 0px 24px 2px #000;
}
/* ================================================ STEP STYLING ================================================================ */
.step-div{
  background-color: var(--dark-bg-color);
  margin: 0 auto;
  padding: 6em;
}
.step-text p{
  color: var(--btn-color);
  font-size:1em ;
  line-height: 1.1em;
}
.step-text h1{
  margin-top: 0.3em;
  color: #fff;
  font-size:2.5em ;
  line-height: 1.1em;
}
.step-cards{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
  margin-top: 3em;
}
.step-card-1,
.step-card-2,
.step-card-3, h1 p h3{
  color: #fff;
}

.step-card-1,
.step-card-2,
.step-card-3{
  background-color: var(--card-color);
  padding: 2em;
  border-radius: 1em;
}
.step-card-1 h1{
  font-size: 4em;
}
.step-card-1 p{
  line-height: 1.3em;
  color: #d1d0d0;
  margin-top: 0.5em;
  font-size: 0.9em;
}

.step-card-2 h1{
  font-size: 4em;
}
.step-card-2 p{
  line-height: 1.3em;
  color: #d1d0d0;
  margin-top: 0.5em;
  font-size: 0.9em;
}

.step-card-3 h1{
  font-size: 4em;
}
.step-card-3 p{
  line-height: 1.3em;
  color: #d1d0d0;
  margin-top: 0.5em;
  font-size: 0.9em;
}


/* =============================================== MISSION STYLING============================================================= */
.mission{
  margin-top: 8em;
}
.mission-text{
  text-align: center;
}
.mission-text p{
  color: var(--text-color);
  font-weight: 700;

}
.mission-text h1{
  margin-top: 0.3em;
  font-size: 2.8em;
  color: #000;
}
.mission-text h3{
  margin-top: 1em;
  font-size: 0.9em;
  color: gray;
}
.mission-numbers{
  display: flex;
  gap: 5em;
  text-align: center;
  justify-content: center;
  margin-top: 4em;
}
.numbers-1 h1{
  color: #000;
  font-size: 4em;
}
.numbers-1 p{
  margin-top: 0.4em;
  color: var(--card-color);
  font-size: 1.1em;
  font-weight: 700;
}
.numbers-2 h1{
  color: #000;
  font-size: 4em;
}
.numbers-2 p{
  margin-top: 0.4em;
  color: var(--card-color);
  font-size: 1.1em;
  font-weight: 700;
}
.numbers-3 h1{
  color: #000;
  font-size: 4em;
}
.numbers-3 p{
  margin-top: 0.4em;
  color: var(--card-color);
  font-size: 1.1em;
  font-weight: 700;
}
.m-cards {
  display:flex;
  justify-content: center;
  gap: 4em;
  align-items:stretch;
}

.cardd {
  width:var(--card-w);
  height:var(--card-h);
  border-radius:var(--radius);
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  box-shadow: 0 6px 20px rgba(7,20,30,0.06);
}

.card__inner { position: relative; z-index: 2; }

.card__title{
  font-size:32px;
  font-weight:700;
  margin:0;
}

.card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.card__price{
  font-size:18px;
  font-weight:600;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.card__price .per {
  font-size:16px;
  font-weight:400;
  opacity:0.85;
}

.card__cta{
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background: transparent;
  transition: transform .12s ease;
}
.card__cta:active{ transform: scale(.95) }

.card--plus {
  background: var(--plus-bg);
  color: var(--plus-text);
}
.card--plus .card__cta{
  background: rgba(10, 58, 63, 0.08);
}

.card--premium{
  background: linear-gradient(90deg, var(--premium-1) 0%, var(--premium-2) 100%);
  color: white;
}
.card--premium::before{
  content:"";
  position:absolute;
  top:-10%;
  right:-18%;
  width:60%;
  height:120%;
  background: rgba(255,255,255,0.07);
  transform: skewX(-25deg);
  z-index:1;
  border-radius:10px;
}
.card--premium::after{
  content:"";
  position:absolute;
  bottom:-12%;
  right:-40%;
  width:140%;
  height:60%;
  background: repeating-linear-gradient(135deg,
    rgba(255,255,255,0.03) 0 26px,
    rgba(255,255,255,0.06) 26px 52px);
  transform: skewX(-25deg);
  z-index:1;
}
.card--premium .card__cta{
  background: rgba(255,255,255,0.15);
  color: white;
}

.card__cta svg { width:20px; height:20px; fill: currentColor; }

@media (max-width: 760px){
  .m-cards{ flex-direction:column;}
  .cardd{ width:70%; max-width:400px;  margin: 0 auto;}
}





/* ===================================== TRY STYLING======================================================= */

.try{
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark-bg-color);
  border-radius: 20px;
  padding: 6em 56px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 10em;
  transform: translate(-0%, 50%);
}

.try-text p{
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.5em;
}
.try-text h1{
  margin-top: 0.6em;
  color: #ffffffca;
  font-weight: 500;
  font-size: 2.7em;
}
.try-text h3{
  color: var(--dark-text-color);
  font-weight: 600;
  margin-top: 0.6em;
}
.try-btn{
  display: flex;
  gap: 1.3em;
  align-items: center;
}
 .try-btn-1 button{
  background-color: var(--btn-color);
  border: none;
  padding: 1em 2em;
  border-radius: 1em;
  color: #fff;
  
}
.try-btn-2 button{
  background-color:transparent;
  padding: 1em 2em;
  border-radius: 1em;
  border: 1px solid var(--bg-color);
  color: #fff;
}
.try-btn-2 button i {
  margin-left: 1em;
}


/* ===================================== FOOTER STYLING======================================================= */
footer{
  background-color: var(--bg-color);
  padding-top: 3em;
  padding-bottom: 2em;
}
.footer-div a{
  font-size: 1em;
  color: #64748b;
}
.footer-div h2{
  margin-bottom: 1em;
}
.footer-div{
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  justify-content: center;
  grid-template-columns: 10em 100px 100px 100px 1fr;
  gap: 9em;
  margin-top: 15em;
}
.solutions{
  line-height: 1.9em;
  width: 30em;
}
.company{
  line-height: 1.8em;
}
.learn{
  line-height: 1.8em;
}
.follow{
  width: 10em;
}
.line{
  margin-top: 2em;
}
.line::after {
  content: "";
  position: absolute;
  left: 4%;
  right:4%;
  height: 10px;
  border-top: 2px solid #80808075;
  z-index: 0;
}

.copyright-text{
  margin-top: 4em;
  text-align: center;
}



/* ====================================REPONSIVENES======================================================== */
@media (max-width: 768px){
  .hero{
    display: flex;
    justify-content: center;
  }
  .hero-flex{
    display: block;
  }
  .hero-text h1{
    font-size: 2.8em;
  }
  .hero-text p {
    font-size: 1em;
  }
  .hero-collabs h2{
    font-size: 1.3em;
  }
  .payment-container{
    margin-top: 7em;
  }
  .credit-card{
    position: absolute;
    right: -20px;
    top: -30px;
    width: 180px;
    height: 110px;
    background: linear-gradient(#149bb7, #022b50);
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  .payment-box {
    background: white;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 90px;
  }
  .why-us-text h1{
    font-size: 1.8em;
  }
  .first-cards{
    display: block;
    gap: 3em;
  }
  .card-1{
    width: 20em;
    height: 21em;
    
  }
  .card-1 h1{
    font-size: 3em;
  
  }
  .card-1 h2{
    font-size: 1.5em;
  }
  .card-2{
    margin: 0 auto;
    width: 20em;
    height: 21em;
    margin-top: 2em;
  }
  .card-2 .card2-h2{
    font-size: 1.2em ;
    text-align: center;
    font-weight: 700;
    margin-top: -0.2em
  }
  .card-3{
    display: flex;
    flex-direction:column ;
    justify-content:center ;
    align-content: center;
    width: 20em;
    height: 21em;
    gap: 0em;
  }
  .card-3-img img{
    display: none;
  }
  .card-3-text{
    margin-left: 30px;
  }
  
  .step-div{
    margin: o auto;
    
  padding: 3em 1em;
  }
  .step-text p{
    color: var(--btn-color);
    font-size:1em ;
    line-height: 1.1em;
  }
  .step-text h1{
    margin-top: 0.3em;
    color: #fff;
    font-size:1.3em ;
    line-height: 1.1em;
  }
  .step-cards{
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 3em;
  }
  .step-card-1,
  .step-card-2,
  .step-card-3{
  padding: 1em 2em;
  border-radius: 1em;
  text-align: start;
}
.mission-cards{
  margin-top: 5em;
}
.mission-text h1{
  margin-top: 0.3em;
  font-size: 1.7em;
  color: #000;
  
}
.mission-text h3{
  margin-top: 1em;
  font-size: 0.8em;
  color: gray;
}
.mission-numbers{
  display: flex;
  flex-direction: column;
  gap: 5em;
  text-align: center;
  justify-content: center;
  margin-top: 4em;
}
.mission-cards p{
  color: var(--dark-text-color);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.8em;
  
}

.try{
  flex-direction: column;
  width: 67%;
  gap: 5em;
}
.try-text p {
  font-size: 1em;
}
.try-text h1 {
  font-size: 1.7em;
}
.try-text h3{
  font-size: 1em;
}
.try-btn{
  flex-direction: column;
  justify-content: start;
  align-items: start;
}


.footer-div{
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 5em;
  margin-top: 25em;
  margin-left: 1.3em;
}

}


/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 0 20px;
  }

  .hamburger {
      display: block;
  }

  .middle,
  .right {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      background-color: #FFF0E9;
      animation: slideDown 0.3s ease forwards;
      transform-origin: top;
      padding: 10px 30px;
      margin-top: 30px;
  }

  .middle ul {
      flex-direction: column;
      gap: 10px;
      padding: 0;
  }

  .middle ul li {
      margin: 8px 0;
  }

  .middle ul li a {
      display: block;
      text-align: left;
  }
.right{
  margin-top: -2px;
  margin-left: 20px;
}
 
  .right button {
      margin-top: 20px;
  }

  .middle.show,
  .right.show {
      display: flex;
  }
}
