/* ===== HERO SECTION ===== */
.sg-hero-wrap {
  padding: 100px 20px 60px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),
    url(../images/bnnn-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}

/* INNER CONTENT */
.sg-hero-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.sg-hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}

.sg-hero-title span {
  color: #8ab4ff;
}

/* DESCRIPTION */
.sg-hero-desc {
  font-size: 16px;
  color: #cfd8ff;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* BUTTONS */
.sg-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.sg-btn-primary {
  background: #8ab4ff;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.sg-btn-primary:hover {
  background: #6ea8fe;
}

/* OUTLINE BUTTON */
.sg-btn-outline {
  border: 1px solid #8ab4ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.sg-btn-outline:hover {
  background: #8ab4ff;
  color: #000;
}

/* ===== STATS ===== */
.sg-stats-container {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.sg-stat-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  transition: 0.3s;
}

.sg-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(100,150,255,0.3);
}

/* NUMBER */
.sg-stat-card h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #8ab4ff;
}

/* TEXT */
.sg-stat-card p {
  font-size: 14px;
  color: #cfd8ff;
}

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

/* Tablet */
@media (max-width: 992px) {
  .sg-hero-title {
    font-size: 38px;
  }

  .sg-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sg-hero-title {
    font-size: 28px;
  }

  .sg-hero-desc {
    font-size: 14px;
  }

  .sg-stats-container {
    grid-template-columns: 1fr;
  }
}



/* ===== SECTION ===== */
.sgx-services-wrap {
  padding: 80px 20px;
  /*background: #050816;*/
}

/* CONTAINER */
.sgx-services-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.sgx-service-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(210, 210, 210, 0.79);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.sgx-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(120,160,255,0.3);
}

/* ICON */
.sgx-icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* TITLE */
.sgx-service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
}

/* TEXT */
.sgx-service-card p {
  font-size: 14px;
  color:#8e95b3;
  line-height: 1.6;
}

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

/* Tablet */
@media (max-width: 992px) {
  .sgx-services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sgx-services-container {
    grid-template-columns: 1fr;
  }
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Section */
.ww-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

/* Wrapper (instead of container) */
.ww-wrapper {
  max-width: 1200px;
  margin: auto;
}

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

.ww-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.ww-header p {
  color: #666;
  margin-top: 10px;
}

/* Grid */
.ww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.ww-card {
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  transition: 0.3s ease;
}

.ww-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.ww-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.ww-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.ww-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.ww-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Button */
.ww-card button {
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Colors */
.ww-dark {
  background: #888224;
}

.ww-blue {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
}

.ww-light {
  background: #cbd5e1;
  color: #000;
}

.ww-light button {
  background: #2563eb;
  color: #fff;
}

/* Hover */
.ww-card:hover {
  transform: translateY(-8px);
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .ww-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ww-header h2 {
    font-size: 32px;
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .ww-section {
    padding: 50px 15px;
  }

  .ww-grid {
    grid-template-columns: 1fr;
  }

  .ww-header h2 {
    font-size: 26px;
  }

  .ww-header p {
    font-size: 14px;
  }

  .ww-card {
    padding: 20px;
  }

  .ww-card h3 {
    font-size: 18px;
  }

  .ww-card p,
  .ww-card ul li {
    font-size: 13px;
  }

  .ww-card button {
    width: 100%;
    text-align: center;
  }
}























