* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}


.sec1-hero {
  position: relative;
  padding: 24px 80px 0;
  background-image: url("../assets/gradient-bg-placeholder.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ================= BOTTOM FADE / BLUR OVERLAY ================= */

.sec1-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 140px;

  /* Gradient fade */
  background: linear-gradient(
    to top,
    #318efb 0%,
    #c3defe 65%,
    rgba(195, 222, 254, 0) 100%
  );

  /* Blur softness */
  filter: blur(40px);

  pointer-events: none;
  z-index: 1;
}


/* ================= HEADER ================= */

.sec1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec1-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec1-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sec1-logo span {
  font-size: 20px;
  font-weight: 500;
  color: #1d1f23;
}

.sec1-nav {
  display: flex;
  gap: 28px;
}

.sec1-nav a {
  text-decoration: none;
  font-size: 14px;
  color: #2d2e30;
  font-weight: 400;
}

/* ================= NAV HOVER ================= */

.sec1-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.sec1-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #1d6ecb;
  transition: width 0.3s ease;
}

.sec1-nav a:hover {
  color: #1d6ecb;
}

.sec1-nav a:hover::after {
  width: 100%;
}

/* ================= BUTTON HOVER ================= */

.sec1-btn {
  transition: 
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sec1-btn:hover {
  background-color: #256fbe;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(50, 129, 220, 0.45);
}


/* ================= HAMBURGER BUTTON ================= */

.sec1-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.sec1-hamburger span {
  width: 22px;
  height: 2px;
  background-color: #2d2e30;
  border-radius: 2px;
}

/* ================= HAMBURGER ANIMATION ================= */

.sec1-hamburger span {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Active state */
.sec1-hamburger.sec1-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sec1-hamburger.sec1-active span:nth-child(2) {
  opacity: 0;
}

.sec1-hamburger.sec1-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ================= CONTENT ================= */

.sec1-content {
  max-width: 720px;
  margin: 120px auto 0;
  text-align: center;
}

.sec1-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #1d6ecb;
  margin-bottom: 20px;
}

.sec1-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3c40;
  margin-bottom: 30px;
}

.sec1-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #3281dc;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(50, 129, 220, 0.3);
}

/* ================= DASHBOARD ================= */

.sec1-dashboard {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: sec1-fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}


.sec1-dashboard img {
  width: 100%;
  max-width: 1000px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ================= SHADOW EFFECT ================= */

.sec1-shadow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25),
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .sec1-hero {
    padding: 20px 40px 0;
  }

  .sec1-content h1 {
    font-size: 32px;
  }
}


@media (max-width: 768px) {

  /* Header alignment */
  .sec1-header {
    flex-direction: row;
  }

  /* Hide nav, show hamburger */
  .sec1-nav {
    display: none;
  }

  .sec1-hamburger {
    display: flex;
  }

  /* Center hero content properly */
  .sec1-content {
    margin-top: 72px;
    padding: 0 10px;
  }

  /* Dashboard stays at bottom */
  .sec1-dashboard {
    margin-top: 40px;
    margin-bottom: 0;
    align-items: flex-end;
  }

  .sec1-dashboard img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
  }

   .sec1-nav.sec1-nav-open {
    display: flex;
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    z-index: 99;
  }

  .cloud-monitor {
    bottom: 215px !important;
}

.request {
    bottom: 30% !important;
}

}


@media (max-width: 480px) {
  .sec1-hero {
    padding: 16px 20px 0;
  }

  .sec1-content h1 {
    font-size: 24px;
  }

  .sec1-content p {
    font-size: 14px;
  }
}


/* ================= FADE UP ANIMATION ================= */

@keyframes sec1-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec1-animate {
  opacity: 0;
  animation: sec1-fadeUp 0.8s ease forwards;
}

/* Stagger effect */
.sec1-delay-1 { animation-delay: 0.2s; }
.sec1-delay-2 { animation-delay: 0.4s; }
.sec1-delay-3 { animation-delay: 0.6s; }

/* ================= SCROLL FADE UP ================= */

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* ================= CARD SCROLL ANIMATION ================= */

.sec2-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.9s ease;
}

.sec2-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* section 2 start here  */

.sec2-wrapper {
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.sec2-container {
  text-align: center;
  max-width: 800px;
  padding: 20px;
  padding-top: 100px;
}

.sec2-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  color: #666;
  margin-bottom: 20px;
}

.sec2-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin: 10px 0 15px;
}

.sec2-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}


.sec2-cards-wrapper {
  width: 100%;
  padding: 60px 20px;
}

.sec2-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sec2-card {
  background: #f1f4f7;
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 25px;
}

.sec2-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.sec2-card-top {
  justify-content: flex-start;
}

.sec2-card-bottom {
  justify-content: flex-end;
}

.sec2-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.sec2-card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Visual Card */
.sec2-card-visual {
  position: relative;
  overflow: hidden;
}

/* Sales chart image */
.sales-chart-img {
  width: 90%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Floating mini card */
.cloud-monitor {
  position: absolute;
  right: 20px;
  bottom: 150px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  width: 210px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 2;
  transition: transform 0.3s ease;
}

.cloud-monitor:hover {
  transform: translateY(-4px);
}

.cloud-monitor h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

/* Status */
.status {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.online-text {
  color: #22c55e;
  font-weight: 500;
}

/* Glow animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Uptime */
.uptime {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  align-items: center;
}

.uptime-value {
  background: #e9f7ef;
  color: #0A59B3;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 600;
}

/* Stats Card Layout */
.sec2-card-stats {
  flex-direction: column;
  position: relative;
}

/* Heading */
.stats-heading {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* Gauge wrapper */
.gauge-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Gauge image */
.stats-gauge-img {
  width: 100%;
  max-width: 260px;
  transition: transform 0.4s ease;
}

/* Floating popup */
.stats-popup {
  position: absolute;
  bottom: 10px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.35s ease;
  pointer-events: none;
}

.stats-popup p {
  margin: 4px 0;
  color: #444;
}

/* Hover interactions */
.sec2-card-stats:hover .stats-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sec2-card-stats:hover .stats-gauge-img {
  transform: scale(1.03);
}

/* Percentage number */
.stats-number {
  text-align: center;
  margin: 10px 0 6px;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

/* Legend */
.stats-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: #555;
}

.stats-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
  /* Card structure */
  .sec2-card-stats {
    flex-direction: column;
  }

/* Inner white analytics card */
.revenue-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  width: 80%;
  margin: 0px auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Heading */
.stats-heading {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

/* Gauge */
.gauge-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.stats-gauge-img {
  width: 100%;
  max-width: 260px;
  padding-bottom: 65px;
}


.stats-popup {
  position: absolute;
  bottom: 18px;
  background: #f4f4f4;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  color: #444;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Show on hover */
.revenue-card:hover .stats-popup {
  opacity: 1;
  transform: translateY(0);
}

/* Legend */
.stats-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

.stats-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dots */
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot.blue { background: #4f9cff; }
.dot.purple { background: #7c6cf6; }
.dot.green { background: #c9f75a; }


/* Image section */
.sec2-card-image {
  position: relative;
 
  overflow: hidden;
}

.sec2-card-image img {
  width: 65%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0px auto;
}

/* Fade + blur overlay */
.image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0.85) 100%, #ffffff 100%);
    backdrop-filter: blur(4px);
}

/* Content */
.sec2-card-content {
  padding: 20px;
}

.sec2-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.sec2-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.sec2-card-image-wrapper {
  position: relative;
  margin-top: 24px;
}

.sec2-card-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Floating Cards Base */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  animation: float 4s ease-in-out infinite;
}

/* Icons */
.float-card .icons {
  display: flex;
  gap: 8px;
  margin-left: 8px;
  color: #94a3b8;
  font-weight: 700;
}

/* Dots */
.float-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Individual Cards */
.done {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}
.done .dot {
  background: #facc15;
}

.progress {
  top: 30%;
  left: -10px;
  animation-delay: 1s;
}
.progress .dot {
  background: #3b82f6;
}

.request {
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}
.request .dot {
  background: #ef4444;
}

.review {
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}
.review .dot {
  background: #22c55e;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .sec2-cards-grid {
    grid-template-columns: 1fr;
  }

  .sec2-card {
    min-height: 240px;
  }
}


/* faq section start  */
.sec3-faq-wrapper {
  padding: 80px 20px;
  background: #ffffff;
}

/* Header */
.sec3-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sec3-faq-badge {
  display: inline-block;
    padding: 6px 18px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    color: #666;
    margin-bottom: 20px;
}

.sec3-faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sec3-faq-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ================= FAQ LIST ================= */

.sec3-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= FAQ ITEM ================= */

.sec3-faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #c2defe, #a3cdfe89);
  transition: background 0.4s ease;
}

/* ================= QUESTION ================= */

.sec3-faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.sec3-faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ================= ANSWER ================= */

.sec3-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: linear-gradient(180deg, #c2defe, #a3cdfe);
  color: #000000;
  opacity: 0;
  transition:
    max-height 0.6s ease,
    padding 0.35s ease,
    opacity 0.3s ease;
}

.sec3-faq-answer ul {
  padding-left: 18px;
}

.sec3-faq-answer li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.sec3-faq-answer p {
  font-size: 14px;
  line-height: 1.6;
}

/* ================= ACTIVE (OPEN) STATE ================= */

/* Question becomes solid blue */
.sec3-faq-item.active .sec3-faq-question {
  background: #5087c6;
  color: #ffffff;
}

/* Answer expands with gradient */
.sec3-faq-item.active .sec3-faq-answer {
  max-height: 700px;
  padding: 18px 22px 22px;
  opacity: 1;
}

/* Icon rotate */
.sec3-faq-item.active .sec3-faq-icon {
  transform: rotate(180deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .sec3-faq-title {
    font-size: 28px;
  }

  .sec3-faq-question {
    font-size: 14px;
  }
}

/* section 4 start  */
/* ================= SECTION 4 ================= */

.sec4-wrapper {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* Rotated background image */
.sec4-bg {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  transform: rotate(180deg);
  opacity: 0.85;
  z-index: 0;
}

/* Container */
.sec4-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

/* Main card */
.sec4-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #318efb, #0058c5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* ================= LEFT ================= */

.sec4-left {
  flex: 1;
  color: #ffffff;
}

.sec4-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}


.sec4-logo img {
  width: 200px;
  max-width: 100%;
}

/* ================= RIGHT ================= */

.sec4-right {
  flex: 1;
}

.sec4-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Inputs */
.sec4-input,
.sec4-textarea {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
}

/* Placeholder */
.sec4-input::placeholder,
.sec4-textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* Textarea */
.sec4-textarea {
  min-height: 110px;
  resize: none;
}

/* Button */
.sec4-btn {
  align-self: flex-start;
  margin-top: 10px;
  padding: 10px 28px;
  background: #ffffff;
  color: #0058c5;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sec4-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* ================= BOTTOM MENUS ================= */

.sec4-bottom-menu {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.sec4-menu-link {
  font-size: 13px;
  color: black;
  text-decoration: none;
  transition: color 0.25s ease;
  z-index: 1000;
}

.sec4-menu-link:hover {
  color: #0058c5;
}

/* Mobile spacing */
@media (max-width: 480px) {
  .sec4-bottom-menu {
    gap: 16px;
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .sec4-card {
    padding: 40px;
    gap: 40px;
  }

  .sec4-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .sec4-card {
    flex-direction: column;
    text-align: center;
  }

  .sec4-left,
  .sec4-right {
    width: 100%;
  }

  .sec4-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .sec4-wrapper {
    padding: 80px 16px;
  }

  .sec4-title {
    font-size: 24px;
  }
}
