/*==========================================
          GSR UNIVERSE PREMIUM UI
              PART - 1
         HERO SECTION ONLY
==========================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef4ff;
  color: #222;
  overflow-x: hidden;
  line-height: 1.7;
}

/*============================
BACKGROUND
============================*/

body::before {
  content: "";
  position: fixed;
  left: -250px;
  top: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(25, 118, 210, 0.08);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  right: -200px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  z-index: -2;
}

/*============================
HERO
============================*/

.hero {
  max-width: 1400px;
  margin: 40px auto;
  padding: 70px 50px;

  border-radius: 35px;

  background: linear-gradient(135deg, #001b4d, #003b95, #0b63d1);

  position: relative;
  overflow: hidden;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

/*============================
TOP LIGHT
============================*/

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: "";

  position: absolute;

  bottom: -170px;
  left: -120px;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(255, 193, 7, 0.12);
}

/*============================
BADGE
============================*/

.case-badge {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  padding: 12px 28px;

  border-radius: 60px;

  background: linear-gradient(90deg, #ff9800, #ffc107);

  font-weight: 700;

  font-size: 15px;

  color: #fff;

  letter-spacing: 0.5px;

  box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);

  margin-bottom: 35px;
}

/*============================
TITLE
============================*/

.hero h1 {
  font-size: 54px;

  line-height: 1.18;

  font-weight: 800;

  color: #fff;

  max-width: 900px;

  margin-bottom: 25px;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/*============================
PARAGRAPH
============================*/

.hero p {
  font-size: 22px;

  line-height: 1.9;

  color: #edf5ff;

  max-width: 900px;

  margin-bottom: 45px;
}

.hero strong {
  color: #ffd54f;

  font-weight: 700;
}

/*============================
META GRID
============================*/

.case-meta {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;

  margin-bottom: 40px;
}

/*============================
META CARD
============================*/

.case-meta div {
  background: #ffffff;

  border-radius: 20px;

  padding: 28px;

  transition: 0.35s;

  border: 2px solid transparent;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  position: relative;

  overflow: hidden;
}

.case-meta div::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  height: 5px;

  width: 100%;

  background: linear-gradient(90deg, #1565c0, #42a5f5, #ffb300);
}

.case-meta div:hover {
  transform: translateY(-10px);

  border-color: #1976d2;

  box-shadow: 0 20px 45px rgba(25, 118, 210, 0.25);
}

/*============================
ICON
============================*/

.case-meta span {
  font-size: 32px;

  display: block;

  margin-bottom: 12px;
}

/*============================
TEXT
============================*/

.case-meta strong {
  display: block;

  font-size: 18px;

  margin-bottom: 8px;

  color: #0d47a1;
}

.case-meta small {
  display: block;

  font-size: 15px;

  color: #666;

  line-height: 1.7;
}

/*============================
TAGS
============================*/

.case-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.case-tags span {
  padding: 12px 26px;

  border-radius: 40px;

  font-size: 15px;

  font-weight: 600;

  background: #ffffff;

  color: #0d47a1;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  transition: 0.3s;

  cursor: pointer;
}

.case-tags span:hover {
  background: #ffc107;

  color: #111;

  transform: translateY(-4px);
}

/*============================
RESPONSIVE
============================*/

@media (max-width: 1100px) {
  .case-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 45px 25px;

    margin: 20px 15px;

    border-radius: 25px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .case-tags {
    justify-content: center;
  }

  .case-tags span {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;

    line-height: 1.7;
  }

  .case-badge {
    font-size: 13px;

    padding: 10px 18px;
  }
}

/* ===========================
   CONTENT AREA
=========================== */

.main-content {
  flex: 1;
  padding: 24px;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-top: 50px;
  padding: 40px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d47a1;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2563eb;
  border-radius: 4px;
  margin-top: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.card-title i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2563eb;
}

/* ===========================
   LIST STYLE
=========================== */

.info-list {
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
  font-size: 14px;
}

.info-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

/* ===========================
   COLOR VARIANTS
=========================== */

.blue {
  border-top: 5px solid #2563eb;
}

.green {
  border-top: 5px solid #16a34a;
}

.orange {
  border-top: 5px solid #f59e0b;
}

.red {
  border-top: 5px solid #dc2626;
}

.purple {
  border-top: 5px solid #7c3aed;
}

/* ===========================
   NOTICE BOX
=========================== */

.notice-box {
  background: #fff8e1;
  border-left: 5px solid #ff9800;
  border-radius: 12px;
  padding: 16px;
  margin-top: 15px;
}

.notice-box h4 {
  color: #e65100;
  margin-bottom: 8px;
}

.notice-box p {
  color: #5d4037;
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   TABLE
=========================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.data-table th {
  background: #1e3a8a;
  color: #fff;
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.data-table td {
  padding: 12px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
}

.data-table tr:nth-child(even) {
  background: #fafafa;
}

.data-table tr:hover {
  background: #eef5ff;
}

/* ===========================
   TIMELINE
=========================== */

.timeline {
  position: relative;
  margin-top: 15px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #2563eb;
}

.timeline-item {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 9px;
  top: 4px;
}

.timeline-item h4 {
  color: #1e3a8a;
  margin-bottom: 5px;
}

.timeline-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */

.footer {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #071a52, #122d87, #071a52);
  color: #fff;
  text-align: center;
  padding: 30px 22px;
}

.footer .section-title {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  line-height: 1.2;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 24px;
  white-space: normal;
}

.footer .section-title::after {
  display: none;
}

.footer p {
  opacity: 0.95;
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
}

.related {
  margin-top: 40px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(13, 71, 161, 0.12);
  border-radius: 18px;
}

.related a {
  display: block;
  color: #0d47a1;
  text-decoration: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: 0.2s;
}

.related a:last-child {
  margin-bottom: 0;
}

.related a:hover {
  color: #fff;
  background: #2563eb;
  text-decoration: none;
}
/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1100px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .main-content {
    padding: 15px;
    width: 100%;
  }

  .container {
    width: 100%;
  }

  .hero {
    padding: 25px 20px;
    margin: 20px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .case-tags {
    justify-content: center;
  }

  .case-tags span {
    width: 100%;
    text-align: center;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }

  .related {
    padding: 18px;
  }

  .footer {
    padding: 28px 20px;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 22px;
  }

  .card-title {
    font-size: 16px;
  }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 54px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .hero-image {
    width: 420px;
  }

  .cards {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 20px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-image {
    width: 100%;
    max-width: 350px;
  }

  .section-title {
    font-size: 34px;
  }

  .card {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 14px 18px;
  }

  .logo {
    font-size: 22px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .stat h3 {
    font-size: 28px;
  }

  .card {
    padding: 24px;
  }

  .footer {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================
   SMOOTH ANIMATION
========================== */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   CUSTOM SCROLLBAR
========================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

/* ==========================
   SELECTION
========================== */

::selection {
  background: #4f46e5;
  color: #fff;
}

/* ==========================
   IMAGE STYLE
========================== */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================
   REMOVE DEFAULT
========================== */

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  outline: none;
}

/* ==========================
   END CSS
========================== */
