/* =========================
   HERO SLIDER (FINAL)
========================= */

.hero-slider {
  /* padding-top: 80px;        */
  /* margin-bottom: 4rem;      */
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.8s ease;

}

/* SLIDE */
.slide {
  min-width: 100%;
  height: 50vh;
  /* reduced height */
  min-height: 500px;
  /* safe minimum */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  /* IMPORTANT: prevents cutting */
}

/* OVERLAY */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
      rgba(15, 23, 42, 0.65),
      rgba(15, 23, 42, 0.25));
}

/* CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-inline: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

/* BADGE */
.slide-badge {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  /* border-radius: 999px; */
  border-radius: 23px;

  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  /* background: black; */
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* TITLE */
.slide-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #f9fafb;
}

/* DESCRIPTION */
.slide-description {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

/* BUTTONS */
.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* BASE BUTTON RESET */
.btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: 16px;
}

/* PRIMARY BUTTON */
.slider-btn.primary {
  background: black;
  color: #ffffff;
  border-radius: 23px;
}

.slider-btn.primary:hover {
  background: rgba(15, 23, 42, 1);
}

/* SECONDARY BUTTON (FIXED WHITE ISSUE) */
.slider-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.slider-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* INDICATORS */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

.indicator.active {
  background: #ffffff;
}

/* ARROWS */
/* .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
} */


.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}



.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}


.slider-btn.primary {
  margin-top: 0px;
}

/* SHOW ARROWS ON DESKTOP HOVER */
/* @media (min-width: 769px) {
  .slider-container:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
  }
} */

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .slide {
    height: 52vh;
    min-height: 380px;
  }

  .slide-content {
    padding-inline: 1.5rem;
  }

  .slider-arrow {
    display: none;
  }
}





/* DESKTOP SAFE CONTENT OFFSET (prevents arrow overlap) */
@media (min-width: 1024px) {
  .slide-content {
    padding-left: 7rem;
    /* space for arrow + breathing room */
  }
}

/* hero slider end */








/* business online start */

/* ===================================
   GET YOUR BUSINESS ONLINE – FINAL
   PURE HTML + CSS
   =================================== */




.gbo-final {
  margin: 25px;
  border-radius: 23px;
  position: relative;


  /* padding: 140px 20px 120px; */
  padding: 50px;

  /* background: linear-gradient(180deg, #f5f6ff 0%, #ffffff 60%); */
 
   background: linear-gradient(135deg, #fff4ec 0%, #ffd6b8 48%, #ffffff 89%);



  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

}


.gbo-final {
    font-family: "Century Gothic", "Montserrat", "Poppins", "Segoe UI", Arial, sans-serif;
    
}





/* luxury glow */
.gbo-final::before,
.gbo-final::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.55;
}

.gbo-final::before {
  background: #7c83ff;
  top: -160px;
  left: -180px;
}

.gbo-final::after {
  background: #b6baff;
  bottom: -160px;
  right: -180px;
}

.gbo-final-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* badge */
.gbo-final-badge {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f77ff, #8f96ff);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 34px;
  box-shadow: 0 14px 36px rgba(111, 119, 255, 0.45);
}

/* heading */
.gbo-final-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  color: #0f1220;
  margin-bottom: 26px;
}

.gbo-final-title span {
  background: linear-gradient(135deg, #6f77ff, #9aa0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* description */
.gbo-final-desc {
  max-width: 600px;
  margin: auto;
  font-size: 18px;
  line-height: 1.65;
  color: #6b6f85;
  margin-bottom: 40px;
}

/* CTA */
.gbo-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
 
  padding: 13px 26px;
  border-radius: 50px;
  background: #0066ff;
  color: white;
  font-weight: 600;
  font-size: large;
  text-decoration: none;

   
}


.gbo-final-btn:hover {
  background-color: #0055ff; /* hover color */
}





/* .gbo-final-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 85px rgba(59, 76, 255, 0.38),
    inset 0 0 0 1px rgba(59, 76, 255, 0.18);
} */

/* features */
.gbo-final-features {
  margin-top: 74px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.gbo-final-card {
  min-width: 220px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  text-align: center;
  transition: transform 0.35s ease;
}

.gbo-final-card:hover {
  transform: translateY(-10px);
}

.gbo-final-card .icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.gbo-final-card p {
  font-size: 14px;
  font-weight: 600;
  color: #0f1220;
}

/* mobile */
@media (max-width: 640px) {
  .gbo-final {
    /* padding: 110px 16px 90px; */
     padding: 50px;
  }
}



/* business online end */







/* explore start */


/* ===== Ultra Premium Products Section ===== */
.ppx-section {
  padding: 140px 24px;
  background:
    radial-gradient(circle at top, #f4f6ff, #ffffff 60%);
  font-family: 'Inter', system-ui, sans-serif;
}

.ppx-container {
  max-width: 1240px;
  margin: auto;
}

/* Header */
.ppx-header {
  text-align: center;
  margin-bottom: 90px;
}

.ppx-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b61ff, #9b8cff);
  color: #fff;
  margin-bottom: 18px;
}

.ppx-title {
  font-size: 44px;
  font-weight: 700;
  color: #0f1220;
  margin-bottom: 14px;
}

.ppx-subtitle {
  font-size: 16px;
  color: #5f6375;
  max-width: 640px;
  margin: auto;
}

/* Grid */
.ppx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}

/* Card */
.ppx-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 24px;
  box-shadow:
    0 30px 80px rgba(15, 18, 32, 0.08);
  transition: all 0.45s cubic-bezier(.22, .61, .36, 1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.ppx-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, transparent, rgba(123, 97, 255, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ppx-card:hover::before {
  opacity: 1;
}

.ppx-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 50px 120px rgba(123, 97, 255, 0.22);
}

/* Image */
.ppx-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
}

.ppx-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ppx-card:hover img {
  transform: scale(1.12);
}

/* Text */
.ppx-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #0f1220;
  margin-bottom: 10px;
}

.ppx-card p {
  font-size: 14.5px;
  color: #5f6375;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Tags */
.ppx-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ppx-tags span {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(123, 97, 255, 0.1);
  color: #6a5cff;
}

/* Button */
.ppx-btn {
  margin-top: auto;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #7b61ff, #9b8cff);
  transition: all 0.35s ease;
}

.ppx-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(123, 97, 255, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .ppx-title {
    font-size: 34px;
  }
}

/* explore end */












/* ai video start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Roboto, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
}

/* HERO SECTION WRAPPER */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* padding: 120px 2rem 4rem; */
 padding: 0px 25px 25px 25px;
margin-top: -25px;
  position: relative;
  overflow: hidden;
}


.hero-section {
  font-family: "Century Gothic", "Poppins", "Segoe UI", Arial, sans-serif;
}


/* =========================
   HERO CONTAINER – MAIN FIX
========================= */

.hero-container {
  background: linear-gradient(135deg,
      #ff9a9e 0%,
      #fad0c4 25%,
      #fbc2eb 50%,
      #a18cd1 75%,
      #ffffff 100%);

  border-radius: 23px;

  width: 100%;           /* critical zoom fix */
  max-width: 100%;       /* same behavior as cards */

  margin: 25px auto;     /* fluid center margin */
  padding: 50px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: clamp(20px, 4vw, 60px);

  align-items: center;

  overflow: hidden;      /* prevents layout breaks on zoom */
}

/* HERO CONTENT */
.hero-content {
  width: 100%;
  max-width: 100%;
}

/* HERO TITLE */
.hero-title {
  font-size:  clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;

  background: linear-gradient(135deg,
      #1a1a1a 0%,
      #333 50%,
      #667eea 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO SUBTITLE – FIXED */
.hero-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.375rem);
  color: #52525b;
  line-height: 1.6;

  width: 100%;        /* important */
  max-width: 100%;    /* fills width on zoom */

  margin-bottom: 35px;
}

/* BUTTON AREA */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 13px 26px !important;

  border-radius: 50px;
  font-size: large !important;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;

  overflow: hidden;
  position: relative;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;

  /* box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.5); */
}

.btn-primary:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: 0 35px 60px -12px rgba(102, 126, 234, 0.7); */
  background: linear-gradient(135deg, #617cf8 0%, #7c4bad 100%);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #1a1a1a;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-secondary:hover {
  background: white;
  border-color: #667eea;
  transform: translateY(-2px);
}

/* LARGE BUTTON */
.btn-large {
  padding: clamp(16px, 3vw, 24px) clamp(28px, 5vw, 60px);
  font-size: clamp(1rem, 4vw, 1.25rem);
}

/* ARROW ICON */
.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* =========================
      HERO VISUAL SIDE
========================= */

.hero-visual {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-mockup {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.video-screen {
  background: linear-gradient(145deg, #1e1e1e, #171717);
  border-radius: 32px;
  padding: clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 100%;
}

.video-placeholder {
  width: 100%;
  height: clamp(180px, 28vw, 300px);

  background: linear-gradient(135deg,
      #667eea 0%,
      #764ba2 50%,
      #f093fb 100%);

  border-radius: 20px;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI SPARKLES */
.ai-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent);

  animation: sparkle 2s linear infinite;
}

@keyframes sparkle {
  100% {
    transform: translateX(100px) translateY(50px) rotate(180deg);
    opacity: 0;
  }
}

/* PLAY BUTTON */
.play-button {
  width: clamp(50px, 10vw, 80px);
  height: clamp(50px, 10vw, 80px);

  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  cursor: pointer;

  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.05);
}

/* GLOW EFFECT */
.device-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20px;
  left: -20px;

  background: radial-gradient(circle,
      rgba(102, 126, 234, 0.3) 0%,
      transparent 70%);

  border-radius: 40px;

  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* =========================
     FLOATING CARDS
========================= */

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);

  border-radius: 24px;
  padding: 1.5rem;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

  text-align: center;
  font-weight: 600;
  color: #1a1a1a;

  min-width: 140px;
}

/* FLOAT ANIMATIONS */
.float-1 {
  top: 10%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation: float2 7s ease-in-out infinite;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
  0%,100% {transform: translateY(0px) rotate(0deg);}
  33% {transform: translateY(-20px) rotate(2deg);}
  66% {transform: translateY(-10px) rotate(-1deg);}
}

@keyframes float2 {
  0%,100% {transform: translateY(0px) rotate(0deg);}
  33% {transform: translateY(-15px) rotate(-2deg);}
  66% {transform: translateY(-25px) rotate(1deg);}
}

@keyframes float3 {
  0%,100% {transform: translateY(0px) rotate(0deg);}
  50% {transform: translateY(-20px) rotate(1deg);}
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .floating-cards {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    /* padding: 90px 1rem 3rem; */
     /* padding: 10px 10px 10px 10px; */
      padding: 10px;
  }

  .hero-container {
    margin: 15px;
    padding: 50px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 26px !important;
    /* width: 100%; */
    /* max-width: 280px; */
    margin: 0 auto;
    margin-bottom: 23px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    margin: 10px;
    padding: 20px;
  }

  .video-placeholder {
    height: 200px;
  }
}

/* FOOTER */
.site-footer {
  margin-top: 5rem;
}



/* ai video end */


















/* blog start */


.blog-banner {
  margin: -25px 25px 25px 25px;
  /* border: 1px solid grey; */
  border-radius: 23px;
  /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
  background: linear-gradient(135deg, #e0f2ff, #ffdee9);
  padding: 50px;
  position: relative;
  overflow: hidden;

 
}


.blog-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-family: 'Inter', sans-serif;
}

.banner-content {
  flex: 1;
}

.banner-badge {
  display: inline-flex;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(102, 126, 234, 0.2);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.banner-title {
  font-size: clamp(4rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1e293b;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-text {
  font-size: 1.125rem;
  color: #64748b;
  line-line: 1.6;
  max-width: 26rem;
  font-weight: 400;
}

.banner-cta {
  flex-shrink: 0;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 13px 26px;
  background: rgb(0, 110, 255);
  color: white;
  border-radius: 50px;
  font-size: large;
  font-weight: 600;
  text-decoration: none;
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); */
  font-family: 'Inter', sans-serif;
}

.explore-btn:hover {
  /* transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6); */
  background: rgb(0, 81, 255);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.explore-btn:hover .arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-banner {
    margin-top: 0px;
    /* padding: 3rem 1.5rem; */
    padding: 50px;
    text-align: center;
  }

  .explore-btn{
    margin-top: 5px;
  }

  .banner-title{
    font-size: 43px;
  }

  .banner-container {
    flex-direction: column;
    gap: 2rem;
  }

  .banner-text {
    max-width: 100%;
  }
}



/* blog end */







/* create now */


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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.launch-banner {
  margin: 0px 25px 0px 25px;
  border-radius: 23px;


/* background: linear-gradient(140deg,
  #b39ef7 0%,     
  #4f96f8 50%,    
  #f58ac2 100%    
); */

/* background: linear-gradient(135deg, #18181b, #27272a); */

background: #2e7770;




  padding: 50px;      /* REDUCED PADDING */
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: block;
  /* align-items: center; */
}

.launch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.launch-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.launch-content {
  text-align: center;
  margin-bottom: 1.5rem;              /* REDUCED BOTTOM GAP */
}

.launch-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.8rem;              /* REDUCED TITLE GAP */
  background: rgba(255, 255, 255, 0.95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launch-subtitle {
  font-size: 1.2rem;                  /* SLIGHTLY SMALLER TEXT */
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  /* margin: 0 auto 1.2rem;              */
   margin: 0 auto ;             
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px !important;
}

.launch-cta {
  text-align: center;
}

.launch-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;               /* SMALLER BUTTON PADDING */
  background: rgb(0, 106, 255);
  color: white;
  border-radius: 50px;
  font-size: large;                  /* REDUCED FONT SIZE */
  font-weight: 700;
  text-decoration: none;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease; */
  font-family: "Century Gothic", "AppleGothic", "Futura", "Segoe UI", Arial, sans-serif;

}

.launch-btn:hover {
  /* transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4); */
  background: #0055ff;
}

/* Responsive */

@media (max-width: 768px) {
  .launch-banner {
    padding: 50px !important;   /* MOBILE REDUCED */
  }

  .launch-title {
    /* font-size: 2.5rem; */
    font-size: 42px;
  }

  .launch-subtitle {
    font-size: 1rem;
   margin-top: 23px;
   margin-bottom: 20px !important;
   max-width: 300px;
  }

  .launch-btn {
    padding: 13px 26px;
    font-size: large;
   
  }
}













/* subscribe */
/* ===== Google Premium Subscribe Section (CLEANED + CENTERED) ===== */

.gps-section {
 margin-top: 25px;
  padding: 50px;                /* Slightly reduced */
  /* background: #ffffff; */
  /* font-family: 'Inter', system-ui, sans-serif; */
  
  font-family: 'Poppins', 'Century Gothic', Arial, sans-serif;

  text-align: center;               /* MAIN CENTER FIX */
}

.gps-container {
  max-width: 1100px;
  margin: auto;
}

/* Card Layout */

.gps-card {
 /* background: linear-gradient(140deg, #ede9fe 0%, #dbeafe 30%, #ecfdf5 60%, #fff1f2 100%); */
/* background: linear-gradient(140deg,
  #d6cffa 0%,    
  #bcd4f8 30%,   
  #c6f0db 60%,    
  #f5c6d2 100%   
); */

/* background: linear-gradient(135deg,
  #f8fafc 0%,
  #e0e7ff 35%,
  #fae8ff 65%,
  #fce7f3 100%
); */

background: linear-gradient(128deg,
  #fff1e6 0%,
  #f6d0b0 46%,
  #e6d9cf 100%
);




  backdrop-filter: blur(16px);
  border-radius: 23px;
  padding: 50px;
  margin: -50px -65px -25px -65px;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gps-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(33, 150, 243, 0.15));
  opacity: 0;
  transition: opacity 0.5s ease;
   pointer-events: none;
}

/* .gps-card:hover::before {
  opacity: 1;
} */

/* Content Structure */

.gps-content {
  /* max-width: 1000px; */
  margin: auto;                     /* CENTER CONTAINER */
}

.gps-heading {
  font-size: 43px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;

}

.gps-text {
  font-size: 20px;
  color: #475569;
  margin-top: 23px;
  margin-bottom: 30px;
  line-height: 1.7;
  
}

/* Button */

.gps-button {
  background: #0077ff;
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: large;
  font-weight: 600;
  cursor: pointer;
  /* transition: all 0.35s ease; */
  display: inline-block;           /* Better centering */
  text-decoration: none !important;



}

.gps-button:hover {
  background: rgb(0, 94, 255);
}

/* Responsive */

@media (max-width: 768px) {

  .gps-card {
   
    padding: 50px;
  }

  .gps-heading {
    font-size: 36px;
  }

  .gps-text {
    font-size: 16px;
    margin-bottom: 35px;
    margin-top: 29px;
  }

  .gps-button {
    padding: 13px 26px;
    font-size: large;
  }
}


@media (max-width: 900px) {

  .gps-card {
    margin: -50px -25px -25px -25px;
  }
}


@media (max-width: 768px) {
  .gps-heading {
    /* white-space: nowrap !important;    */
    max-width: 100% !important;
    font-size: 32px !important;       /* adjust size to fit */
  }
}
