*{
  margin: 0;
  padding: 0;
  font-family: arial, helvetica, sans-serif;
  list-style: none; /* removes any default markers, bullets, etc. */
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  background: #cccccc;
  display: block;
  justify-content: center; /* Horizontally center */
  background-image: url('images/cloud.png'); /* Replace with your image URL */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps the background fixed while scrolling */
  background-position: center top; /* Aligns the image to the top */
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 320 =====================================
* ==================================================================== */
.container{
  min-width: 320px;
  max-width: 599px;
}
/* HEADER Section Begins */
/* Position the <h1> on top of the navigation background */
header h1 {
  position: absolute;
  color: #FFF44F;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 40px;
  margin: 0 10px;
  z-index: 1;
}
/* NAV Begins */
nav{
  background: #4169E1;
  height: 40px;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
nav ul{
  display: grid;
  grid-template-columns: repeat(2, 50%); /* Two equal columns */
  column-gap: 0px;
  position: absolute;
  width: 100%;
  height: auto;
  background: #4169E1;
  border-radius: 0px 0px 10px 10px;
  top: 40px;
  left: -100%;
  text-align: center;
  transition: all .5s;
}
/* Align left column items */
nav ul li:nth-child(odd) {
  text-align: left;
}
/* Align right column items */
nav ul li:nth-child(even) {
  text-align: right;
}
nav ul li{
  display: block;
  margin: 10px 0;
  text-align: left;
  line-height: 16px;
}
nav ul li a{
  color: #FFF44F;
  font-size: calc(13px + 0.390625vw);
  padding: 6px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
}
.makeActive{
  background: #CC6633;
}
.makeActive:hover{
  background: #be4c23;
  color: #cfbc1a;
  transition: .2s;
}
nav ul a:hover {
  background: #CC6633;
  transition: .2s;
}
/* Style hamburger */
.checkbtn{
  font-size: 20px;
  color: #FFF44F;
  float: right;
  line-height: 40px;
  margin-right: 10px;
  cursor: pointer;
  display: block;
}
#check{
  display: none;
}
/* Make nav visible by moving from -100px to 0px */
#check:checked ~ ul{
  left: 0;
}
/* NAV Section Ends */
#logoContainer{
  display: flex;  
  align-items: top; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  width: 100%;
  height: 150px;  
}
#logo{
  max-width: 120px;
  max-height: 120px;
  z-index: 0;
}
.headline-container {
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  height: 40px;
  width: 100%;
  margin: 2px;
}
#headline{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  position: relative;
  font-weight: bold;
  font-size: calc(18px + 0.390625vw);
  color: #000;
}
#headline::before {
  content: ""; /* Create a pseudo-element to apply the background color */
  display: inline-block;
  background-color: #FFF44F; /* Set your desired background color */
  border-radius: 5px;
  height: 100%; /* Adjust the height as needed */
  width: 100%; /* Make the background span the entire width of the text */
  position: absolute; /* Position the pseudo-element relative to the text */
  width: calc(100% + 10px); /* Make the background slightly wider than the text */
  z-index: -1; /* Place the pseudo-element behind the text */
}
.main h1 {
  color: blue;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 30px;
  text-align: center; /* Horizontally center */
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

/* Pricing Carousel Starts*/

*, *::after, *::before{
  box-sizing: border-box;
}
:root{
  --img-gap: .25rem;
}
.slider-row{
  max-width: 90%;
  margin: auto;
  padding: 40px 5px;
}
.slider-container{
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.pricing-slider{
  --items-per-screen: 1;
  --slider-index: 0;
  display: flex;
  flex-grow: 1;
  margin: 0 auto;
  transform: translateX(calc(var(--slider-index) * -100%));
  transition: transform 250ms ease-in-out;
  width: 80%;
}
.pricing-slider > .pricing-card{
  flex: 0 0 calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen));
  aspect-ratio: 16 / 9;
  padding: var(--img-gap);
  border-radius: 1rem;
  border-radius: 25px;
  background-color: #FFF;
}
.pricing-arrow{
  border: none;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: transparent;
  z-index: 10;
  margin: var(--img-gap) 0;
  width: 3rem;
  cursor: pointer;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 0;
}
.pricing-left-arrow{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-width: 3rem;
}
.pricing-right-arrow{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-width: 3rem;
}
.arrow-text{
  transition: transform 150ms ease-in-out;
}
.pricing-arrow:hover .arrow-text,
.pricing-arrow:focus .arrow-text{
  transform: scale(1.2);
  cursor: pointer;
}
.slider-header{
  display: flex;
  justify-content: space-between;
  padding: .5rem 3.5rem;
  align-items: center;
}
.slider-title{
  font-size: calc(24px + 0.390625vw);
  margin: 0;
}
.progress-bar{
  display: flex;
  gap: .25rem;
}
.progress-item{
  flex: 0 0 1.5rem;
  min-width: 1.5rem;
  height: .5rem;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 1em;
}
.progress-item.active{
  background-color: rgba(255, 255, 255, .9)
}
@media screen and (min-width: 1px) and (max-width: 599px) {
  .pricing-slider {
      --items-per-screen: 1;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .pricing-slider {
      --items-per-screen: 2;
  }
}
@media screen and (min-width: 900px) {
  .pricing-slider {
      --items-per-screen: 4;
  }
}

/* Card styling */
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  /* row-gap: 5px; unnecessary? */
  padding: 25px 0;
}
.card-overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color:#4070F4;
  border-radius: 25px 25px 0 0px;
}
.card-overlay::before,
.card-overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 100%;
  background-color:#4070F4;
}
.card-overlay::after{
  border-radius: 25px 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  position: relative;
  /* max-height: calc(100% / var(--items-per-screen));
  max-width: calc(100% / var(--items-per-screen)); */
  height: 125px;
  width: 125px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%; 
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}
.card-title{
  font-size: 18px;
  font-weight: 900;
  color: #000;
  z-index: 9;
}
.card-time{
  font-size: 18px;
  font-weight: 800;
  color: #333;
  z-index: 9;
}
.card-price{
  font-size: 18px;
  font-weight: 900;
  color: blue;
  z-index: 9;
}
.card-description{
  font-size: 14px;
  color: #707070;
  text-align: center;
  z-index: 9;
}
.card-description-bullets{
  font-size: 14px;
  color: #707070;
  text-align: left;
  z-index: 9;
}

/* Pricing Carousel Ends */

footer{
  background: #4169E1;
  color: #FFF44F;
  font-size: calc(10px + 0.390625vw);
  font-weight: bold;
  height: 40px;
  width: 100%;
  line-height: 40px; /* Vertically center the text */
  text-align: center;
  border-radius: 10px 10px 0 0;
}
/* HEADER Section Ends */
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 600 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 600px) {
  #logo{
    max-width: 180px;
    max-height: 180px;
  }}
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 900 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 900px) {
  header h1 {
    font-size: calc(20px + 0.390625vw);
    line-height: 60px;
  }
  nav{
    height: 60px;
  }
  nav ul{
    top: 60px;
    left: 0;
  }
  /* Style hamburger */
  .checkbtn{
    display: none;
  }
  .main{
    background-image: linear-gradient(to left, #4169E1 20%, #9fb3e6 60%, #cccccc 80%);
    border-radius: 10px;
    border: 4px solid rgb(204, 102, 51);
    height: auto; 
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
  }
  footer{
    font-size: calc(12px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 600 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 600px) and (max-width: 899px) {
  .container{
    min-width: 600px;
    max-width: 899px;
  }
  nav ul li a{
    font-size: calc(14px + 0.390625vw);
  }
  /* Style hamburger */
  .checkbtn{
    font-size: 22px;
  } 
  .main h1 {
    font-size: calc(20px + 0.390625vw);
  }  
  footer{
    font-size: calc(12px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 900 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .container{
    min-width: 900px;
    max-width: 1199px;
  }
  nav ul li a{
    font-size: calc(16px + 0.390625vw);
  }
  /* Add styles for the phrases */
  .phrases-row {
    font-size: calc(16px + 0.390625vw);
  }
  .inspiration {
    font-size: calc(16px + 0.390625vw);
  }
  .main h1 {
    font-size: calc(22px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 1200 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 1200px) {
  .container{
    min-width: 1200px;
    max-width: 1599px;
    margin: auto;
  }
  nav ul li a{
    font-size: calc(12px + 0.390625vw);
  }
  .main h1 {
    font-size: calc(20px + 0.390625vw);
    margin-bottom: 40px;
  }
}