:root {
  /**
   * colors
   */
  /* --rozzbg:; */
  --background: #130026;
  --st-patricks-blue: #9965ff;
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(231, 68%, 21%);
  --chrome-yellow: hsl(39, 100%, 52%);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  --purple-navy: hsl(236, 26%, 43%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: hsl(335, 87%, 53%);
  --razzmatazz: hsl(335, 87%, 51%);
  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(29, 99%, 67%);
  --white: hsl(0, 0%, 100%);

  --gradient-1: linear-gradient(
    90deg,
    var(--royal-blue-dark) 0,
    var(--ksu-purple) 51%,
    var(--royal-blue-dark)
  );
  --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));

  /**
   * typography
   */

  --ff-source-sans-pro: "Source Sans Pro", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.2rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

img {
  height: auto;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--purple-navy);
  font-size: 1.6rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
      max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.h2,
.h3 {
  font-family: var(--ff-source-sans-pro);
}

.btn {
  background-color: var(--amaranth-purple);
  color: var(--white);
  padding: 15px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius:  25px;
  transition: var(--transition-2);
  text-align: center;
  width: 200px;
}

.btn:is(:hover, :focus) {
  background-position: right;
}

.w-100 {
  width: 100%;
}

.banner-animation {
  animation: waveAnim 2s linear infinite alternate;
}

@keyframes waveAnim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(2px, 2px) rotate(1deg);
  }
}

.section {
  padding-block: var(--section-padding);
}

.section-title {
  color: var(--background);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

.underline {
  position: relative;
}

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text {
  font-size: var(--fs-8);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 14px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background-color: var(--white);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  color: white;
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-8);
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

/* .navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 280px;
  min-height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
} */

.navbar.active {
  transform: translateX(280px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 30px;
}

.navbar-top .logo {
  color: var(--st-patricks-blue);
  font-size: 4.2rem;
  font-weight: var(--fw-700);
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) {
  border-bottom: 1px solid var(--platinum);
}

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-block: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg-bottom.png"),
    url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg.png"), var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: cover, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}


.hero-subtitle {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  margin-block-end: 15px;
}

.hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 20px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-8);
  margin-block-end: 30px;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
  margin-block-end: 30px;
}

.about .section-title {
  margin-inline: 0;
}

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.stats-list {
  display: grid;
  gap: 30px;
}

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text {
  font-size: var(--fs-8);
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  display: grid;
  gap: 30px;
}

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.service-card .card-icon {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(335, 87%, 53%, 0.12);
  aspect-ratio: 1 / 1;
  max-width: 165px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card:hover .card-icon {
  background-color: var(--winter-sky);
}

.service-card .card-icon ion-icon {
  font-size: 5rem;
  color: var(--winter-sky);
  --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
}

.service-card:hover .card-icon ion-icon {
  color: var(--white);
}

.service-card .title {
  text-align: center;
  margin-block-end: 15px;
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 1px solid var(--winter-sky);
  border-radius: 50%;
  color: var(--winter-sky);
  transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--winter-sky);
}

/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list > li:first-child {
  margin-block-end: 30px;
 
}

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
       box-shadow: var(--shadow);
    border-radius: var(--radius-12);
    padding: 20px;
        min-height: 178px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.features-card .title {
  margin-block-end: 10px;
}

.features-banner {
  margin-block: 40px;
}

.features-banner > img {
  max-width: max-content;
  margin-inline: auto;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  padding-block-end: 120px;
}

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.blog-card .banner {
  border-radius: var(--radius-12);
  overflow: hidden;
  margin-block-end: 15px;
}

.blog-card .banner img {
  transition: var(--transition-2);
}

.blog-card .banner a:is(:hover, :focus) img {
  transform: scale(1.1);
}

.blog-card .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  line-height: 1.2;
  margin-block-end: 15px;
}

.blog-card .title > a {
  color: inherit;
}

.blog-card .title > a:is(:hover, :focus) {
  color: var(--razzmatazz);
}

.blog-card .text {
  margin-block-end: 15px;
}

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-8);
  color: var(--purple-navy);
  font-weight: var(--fw-500);
  padding-block-end: 10px;
}

.blog-card .meta ion-icon {
  color: var(--winter-sky);
  font-size: 22px;
  --ionicon-stroke-width: 35px;
}

.publish-date,
.comment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment {
  color: inherit;
  margin-inline-start: auto;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  font-size: var(--fs-8);
}

.footer a {
  color: inherit;
}

.footer-top {
  background-image: url("https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/footer-bg.png"), var(--gradient-1);
  background-repeat: no-repeat;
  background-size: auto, 200%;
  background-position: center, center;
  color: var(--white);
}

.footer-brand {
  margin-block-end: 30px;
}

.footer-brand .logo {
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-brand .text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-top .social-link {
  background-color: var(--white);
  color: var(--winter-sky);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
  background-image: var(--gradient-2);
  color: var(--white);
}

.footer-list:not(:last-child) {
  margin-block-end: 25px;
}

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link {
  padding-block: 5px;
}

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) {
  text-decoration: underline;
}

.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.footer-item-icon {
  background-image: var(--gradient-2);
  padding: 13px;
  border-radius: 50%;
}

.footer-bottom {
  background-color: var(--background);
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: none;
}

/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--background);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  /* box-shadow: -3px 3px 15px var(--winter-sky_50); */
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title {
    --fs-3: 3.6rem;
  }

  /**
   * HEADER
   */

  .header .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
  }

  /**
   * ABOUT
   */

  .stats-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner {
    margin-block-end: 0;
  }

  .blog-card .banner a {
    height: 100%;
  }

  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) {
    margin-block-end: 0;
  }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }



  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * FEATURES
   */

  .features-list > li:first-child {
    margin-block-end: 0;
  }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 950px;
  }

  /**
   * HEADER
   */

  .header {
    padding-block: 20px;
  }

  .overlay,
  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  /* .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  } */

  .header .btn {
    margin-inline-start: 0;
  }

  .navbar-list {
    display: flex;
    gap: 25px;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--color);
  }

  /**
   * HERO
   */

  .hero {
    min-height: 700px;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * FEATURES
   */

  .features-list {
    grid-template-columns: 1fr;
  }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title {
    grid-column: 1 / 4;
  }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
  }

  .footer-brand .text {
    max-width: 45ch;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }

  .section-title {
    --fs-3: 4.6rem;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
  }

  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card {
    height: 100%;
  }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}


 .coming-soon-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  .coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .logo-animation {
    margin-bottom: 30px;
  }
  
  .logo-animation img {
    height: 80px;
    animation: pulse 2s infinite alternate;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #64b5f6);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
  }
  
  .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
  }
  
  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  
  .timer-box {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 80px;
    backdrop-filter: blur(5px);
  }
  
  .timer-box span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
  }
  
  .signup-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
    backdrop-filter: blur(5px);
  }
  
  .form-group {
    display: flex;
    margin: 20px 0 10px;
  }
  
  .form-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    background-color: white;
  }
  
  .form-group button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
  }
  
  .form-group button:hover {
    background: #388e3c;
  }
  
  .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  .trusted-by {
    margin-top: 40px;
  }
  
  .trusted-by span {
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
  }
  
  .trusted-by .logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .trusted-by .logos img {
    height: 30px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
  }
  
  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }
  
  .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
  }
  
  .shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
  }

  .stats-section {
  background: var(--background);
  color: white;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  min-height: 35vh;
  padding: 40px 20px;
  background-image:  url(https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/hero-bg.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: -280px bottom, center center, center center;
    background-size: cover, cover, auto;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.stat-box {
  flex: 1 1 200px;
  margin: 10px 20px;
  min-width: 240px;
  text-align: center;
}

.stat-value {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background-color: #f8f9fa;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 5rem;
  font-weight: 700;
  color: #1e1e1e;
    font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 2rem;
  color: #4b4b4b;
  margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  margin: 0px 10px;
}

.btn {
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
  background: #190032;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0px 20px;
    /* height: 12vh; */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-primary a {
  text-decoration: none;
  color: #fff;
  width: 100%;
  text-align: center;
  display: block;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
 background-image: var(--background);
  color: #fff;
  /* cursor: not-allowed; */
}

/* Footer Section */
.footer-rozzpay {
  /* background-image: url(https://raw.githubusercontent.com/codewithsadee/desinic/master/assets/images/footer-bg.png); */
  background-color: var(--background);
    background-repeat: no-repeat;
    background-size: auto, 200%;
    background-position: center;
  color: white;
  padding: 50px 20px 30px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-col {
  max-width: 300px;
}

.footer-col h3 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-col p {
  font-size: 1.5rem;
  line-height: 1.6;
    font-family: 'Poppins', sans-serif;
  color: #ccc;
}

.footer-bottom {
  font-size: 1.85rem;
  color: #bbb;
}

.footer-rozzpay hr {
  max-width: 90%;
  margin: 30px auto;
  border: 0;
  height: 1px;
  background: #444;
}



.why-rozzpay {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  text-align: center;
}

.section-title span {
  font-size: 4rem;
  font-weight: 700;
  color: var(--background);
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.benefit-card {
  background: #f1f4f9;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  transition: transform 0.3s ease;
}

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

.benefit-card .icon {
  margin-bottom: 20px;
  background: var(--background);
  display: inline-block;
  padding: 16px;
  border-radius: 20px;
}

.benefit-card img {
  width: 36px;
  height: 36px;
}

.benefit-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--background);
}

.benefit-card p {
  font-size: 1.25rem;
  color: var(--background);
  line-height: 1.6;
}

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

/* Hero Section */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/* background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpolygon fill='%23ffffff' fill-opacity='0.05' points='0,0 1000,300 1000,1000 0,700'/%3E%3C/svg%3E"); */
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.hero-section {

    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* background: linear-gradient(135deg, #5c00c3 0%, #764ba2 100%); */
    background-color: var(--background);
    overflow: hidden;
    justify-content: center;

}

/* Navbar */
.navbar {
  background-color: var(--background);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999999999;
    transition: all 0.3s ease;  
    
}

.navbar .logo {
  font-size: 2.8rem;
  font-weight: 700;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar nav ul li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
}

/* Content */
.hero-content {
    display: flex;
    justify-content: space-between;
      align-items: center;
    z-index: 9999;
    width: 80%;
  }

/* Left */
.left-content {
  flex: 1;
  max-width: 600px;
}

.coming-soon-btn {
     background: #190032;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.left-content h1 {
   font-family: "Poppins", sans-serif;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--st-patricks-blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}


.left-content h2 {
  color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}


.left-content p {
  color: white;
 font-size: 2.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.buttons {
  display: flex;
  gap: 20px;
}

.waitlist-btn {
  background: #3ed3c7;
  color: white;
  font-weight: 600;
  border: none;
  padding: 24px 34px;
  border-radius: 40px;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.waitlist-btn:hover {
  opacity: 0.9;
}

.learn-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
    padding: 24px 34px;
  border-radius: 40px;
  font-size: 2rem;
  transition: 0.3s;
}

.learn-btn:hover {
  background: white;
  color: #7f52c1;
}

/* Right */
.right-content {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}


.logo-circle {
    width: 80px;
    height: 80px;
    background: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}

.app-desc {
  font-size: 1.525rem;
  line-height: 1.5;
}
.st{
  display: flex;
  justify-content: space-between;
  height: 8vh;
  align-items: center;
}

.phone-mockup{
    width: 300px;
    height: 600px;
    /* background: #190032; */
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); */
    overflow: hidden;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.mobile-ui {
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  bottom: 40px;
  border-radius: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 80px);
  object-fit: cover;
  object-position: center;
}



@media (max-width: 768px) {
  .coming-soon-btn {
  
   padding: 10px 20px;
   width: 250px;

}
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
.left-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
  .hero-content {
    flex-direction: column;
    padding-top: 80px;
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
  }

  .left-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  .left-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .left-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-btn,
  .learn-btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
    font-size: 1.5rem;
  }

  .right-content {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    margin: 0 auto;
  }

  .mobile-ui {
    top: 30px;
    left: 15px;
    right: 15px;
    bottom: 30px;
    width: calc(100% - 30px);
    height: calc(100% - 60px);
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
  }

  .navbar.active nav ul {
    display: flex;
  }

  .logo-circle {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .app-desc {
    font-size: 1.2rem;
  }

  /* Stats Section Mobile Styles */
  .stats-section {
    min-height: auto;
    padding: 40px 15px;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box {
    flex: none;
    margin: 0;
    min-width: auto;
    max-width: 100%;
    padding: 20px;
  }

  .stat-value {
    font-size: 3.5rem;
    margin-bottom: 8px;
  }

  .stat-desc {
    font-size: 1.3rem;
    padding: 0 10px;
  }

  /* CTA Buttons Mobile Styles */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0px 15px;
  }

  .btn-primary {
    margin: 0;
    padding: 15px 30px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 280px;
    min-height: 50px;
  }

  .cta-subtitle {
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 3rem;
  }

  .left-content h2 {
    font-size: 1.5rem;
  }

  .waitlist-btn,
  .learn-btn {
    font-size: 1.2rem;
  }

  .coming-soon-btn {
    font-size: 1.5rem;
    padding: 12px 20px;
  }

  .navbar .logo {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .mobile-ui {
    top: 25px;
    left: 12px;
    right: 12px;
    bottom: 25px;
    width: calc(100% - 24px);
    height: calc(100% - 50px);
  }

  /* Stats Section Small Mobile Styles */
  .stats-section {
    padding: 30px 10px;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-box {
    padding: 15px 10px;
  }

  .stat-value {
    font-size: 2.8rem;
    margin-bottom: 6px;
  }

  .stat-desc {
    font-size: 1.1rem;
    padding: 0 5px;
  }

  /* CTA Buttons Small Mobile Styles */
  .cta-buttons {
    margin: 0px 10px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 1.2rem;
    max-width: 250px;
    min-height: 45px;
  }

  .cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
