/* ========================================
   MODERN PAGES GLOBAL CSS
   ========================================
   This file contains all common styles for modern pages like overview.html, affiliation.html
   and can be used for future pages to maintain consistency.
   ======================================== */

/* ========================================
   DESIGN VARIABLES & FOUNDATION
   ======================================== */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #ee7c59;
  --accent-color: #3b82f6;
  --dark-color: #121213;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --gray-light: #6b7280;
  --border-color: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  --gradient-secondary: linear-gradient(135deg, #ee7c59 0%, #f97316 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   GLOBAL BACKGROUND SYSTEM
   ======================================== */
body {
  position: relative;
  overflow-x: hidden;
}

/* Global Background Container */
.global-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

/* Subtle background pattern */
.global-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
  z-index: 0;
}

/* ========================================
   ANIMATED BACKGROUND ELEMENTS
   ======================================== */

/* Global Curve Animations */
.global-curve {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
  animation: global-float 8s ease-in-out infinite;
  filter: blur(0.2px);
  z-index: 1;
}

.global-curve-1 {
  width: 300px;
  height: 300px;
  top: 5%;
  left: -50px;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 70%, transparent 100%);
}

.global-curve-2 {
  width: 250px;
  height: 250px;
  top: 40%;
  right: -50px;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.08) 70%, transparent 100%);
}

.global-curve-3 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 15%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.06) 70%, transparent 100%);
}

.global-curve-4 {
  width: 180px;
  height: 180px;
  top: 25%;
  left: 60%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 70%, transparent 100%);
}

.global-curve-5 {
  width: 220px;
  height: 220px;
  bottom: 35%;
  right: 20%;
  animation-delay: 7s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0.06) 70%, transparent 100%);
}

.global-curve-6 {
  width: 160px;
  height: 160px;
  top: 75%;
  right: 30%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.06) 70%, transparent 100%);
}

/* Global Square Animations */
.global-square {
  position: absolute;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
  animation: global-float-square 10s ease-in-out infinite;
  filter: blur(0.2px);
  transform: rotate(45deg);
  z-index: 1;
}

.global-square-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 20%;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 70%, transparent 100%);
}

.global-square-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.08) 70%, transparent 100%);
}

.global-square-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 10%;
  animation-delay: 7s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.06) 70%, transparent 100%);
}

.global-square-4 {
  width: 90px;
  height: 90px;
  top: 35%;
  left: 10%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.06) 70%, transparent 100%);
}

.global-square-5 {
  width: 70px;
  height: 70px;
  top: 45%;
  left: 25%;
  animation-delay: 8s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.05) 70%, transparent 100%);
}

/* Global Floating Elements */
.global-floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
  animation: global-float 12s ease-in-out infinite;
  filter: blur(0.5px);
  z-index: 1;
}

.global-floating-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 5%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 70%, transparent 100%);
}

.global-floating-2 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 5%;
  animation-delay: 8s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.06) 70%, transparent 100%);
}

.global-floating-3 {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 30%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 70%, transparent 100%);
}

.global-floating-4 {
  width: 35px;
  height: 35px;
  top: 50%;
  left: 30%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 70%, transparent 100%);
}

.global-floating-5 {
  width: 45px;
  height: 45px;
  bottom: 10%;
  right: 15%;
  animation-delay: 10s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.16) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
}

.global-floating-6 {
  width: 35px;
  height: 35px;
  top: 30%;
  right: 40%;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.06) 70%, transparent 100%);
}

.global-floating-7 {
  width: 45px;
  height: 45px;
  bottom: 25%;
  left: 40%;
  animation-delay: 9s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
}

.global-floating-8 {
  width: 30px;
  height: 30px;
  top: 65%;
  left: 60%;
  animation-delay: 11s;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.04) 70%, transparent 100%);
}

/* Global Diamond Shapes */
.global-diamond {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  animation: global-float-diamond 15s ease-in-out infinite;
  filter: blur(0.3px);
  transform: rotate(45deg);
  z-index: 1;
}

.global-diamond-1 {
  top: 20%;
  left: 40%;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.08) 70%, transparent 100%);
}

.global-diamond-2 {
  bottom: 40%;
  right: 40%;
  animation-delay: 7s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0.07) 70%, transparent 100%);
}

.global-diamond-3 {
  top: 80%;
  left: 20%;
  animation-delay: 13s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.06) 70%, transparent 100%);
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */
@keyframes global-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.08);
    opacity: 1;
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.15);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.05);
    opacity: 1;
  }
}

@keyframes global-float-square {
  0%, 100% {
    transform: translateY(0px) rotate(45deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-15px) rotate(135deg) scale(1.05);
    opacity: 1;
  }
  50% {
    transform: translateY(-25px) rotate(225deg) scale(1.1);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-10px) rotate(315deg) scale(1.02);
    opacity: 1;
  }
}

@keyframes global-float-diamond {
  0%, 100% {
    transform: translateY(0px) rotate(45deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-10px) rotate(135deg) scale(1.03);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-20px) rotate(225deg) scale(1.06);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-8px) rotate(315deg) scale(1.02);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #2c3e50;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../admini.jpg') center/cover;
  opacity: 0.05;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  text-align: center;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #495057;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 25px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(102, 126, 234, 0.1);
  text-align: center;
}

/* ========================================
   CONTENT SECTION STYLES
   ======================================== */
.page-content {
  padding: 80px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.page-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.page-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
}

/* ========================================
   SECTION HEADER STYLES
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-secondary);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* ========================================
   HIGHLIGHT BOX STYLES
   ======================================== */
.highlight-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.highlight-box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========================================
   FEATURE CARD STYLES
   ======================================== */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-top: 4px solid #667eea;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

.feature-card h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ========================================
   TIMELINE STYLES
   ======================================== */
.timeline-item {
  position: relative;
  padding: 30px;
  background: rgba(248, 249, 250, 0.9);
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.timeline-item:hover {
  background: rgba(233, 236, 239, 0.95);
  transform: translateX(10px);
}

.timeline-item h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.timeline-item p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   STATS SECTION STYLES
   ======================================== */
.stats-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #2c3e50;
  padding: 60px 0;
  margin: 60px 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

.page-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  min-width: 140px;
}

.page-stats .stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.3);
}

.page-stats .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.page-stats .stat-item:hover .stat-icon {
  opacity: 0.9;
  background: rgba(245, 158, 11, 0.2);
}

.page-stats .stat-icon i {
  color: rgba(245, 158, 11, 0.8);
  font-size: 1rem;
}

.page-stats .stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.page-stats .stat-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(55, 65, 81, 0.9);
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-stats .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(107, 114, 128, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* ========================================
   MODERN TABLE STYLES
   ======================================== */
.modern-table {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.modern-table .table {
  margin-bottom: 0;
  background: transparent;
}

.modern-table .table th {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 20px 15px;
  font-size: 1rem;
  text-align: left;
  vertical-align: middle;
  position: relative;
}

.modern-table .table th:first-child {
  text-align: center;
  width: 80px;
}

.modern-table .table th:nth-child(2) {
  width: 40%;
}

.modern-table .table th:nth-child(3) {
  width: 45%;
}

.modern-table .table td {
  padding: 18px 15px;
  border: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.modern-table .table tr:hover td {
  background: rgba(248, 249, 250, 0.95);
  transform: translateX(5px);
}

.modern-table .table tr:last-child td {
  border-bottom: none;
}

.modern-table .table td:first-child {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(102, 126, 234, 0.05);
}

.modern-table .table td:nth-child(2) {
  font-weight: 500;
  color: #2c3e50;
}

.modern-table .table td:nth-child(3) {
  font-weight: 600;
  color: var(--primary-color);
}

/* ========================================
   STATUS BADGE STYLES
   ======================================== */
.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-approved {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.status-pending {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.status-not-applicable {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

/* ========================================
   DOCUMENT REFERENCE STYLES
   ======================================== */
.document-reference {
  background: rgba(102, 126, 234, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  color: var(--primary-color);
}

.document-reference strong {
  color: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .page-hero h1::after {
    width: 60px;
    height: 2px;
  }
  
  .page-hero p {
    font-size: 1rem;
    padding: 15px 20px;
    max-width: 95%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-section {
    padding: 25px;
  }

  .modern-table .table th,
  .modern-table .table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }

  .modern-table .table th:first-child {
    width: 60px;
  }

  .modern-table .table th:nth-child(2) {
    width: 35%;
  }

  .modern-table .table th:nth-child(3) {
    width: 40%;
  }

  .page-stats {
    gap: 15px;
    margin-top: 30px;
  }
  
  .page-stats .stat-item {
    padding: 12px 16px;
    min-width: 120px;
  }
  
  .page-stats .stat-icon {
    width: 32px;
    height: 32px;
  }
  
  .page-stats .stat-icon i {
    font-size: 0.8rem;
  }
  
  .page-stats .stat-number {
    font-size: 1.2rem;
  }
  
  .page-stats .stat-label {
    font-size: 0.65rem;
  }
  
  /* Mobile responsive background animations */
  .global-curve-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -30px;
  }
  
  .global-curve-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -30px;
  }
  
  .global-curve-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 10%;
  }
  
  .global-curve-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
  }
  
  .global-curve-5 {
    width: 140px;
    height: 140px;
    bottom: 40%;
    right: 15%;
  }
  
  .global-square-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
  }
  
  .global-square-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 15%;
  }
  
  .global-square-3 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 5%;
  }
  
  .global-square-4 {
    width: 65px;
    height: 65px;
    top: 40%;
    left: 5%;
  }
  
  .global-floating-1 {
    width: 40px;
    height: 40px;
    top: 15%;
    right: 2%;
  }
  
  .global-floating-2 {
    width: 30px;
    height: 30px;
    bottom: 35%;
    left: 2%;
  }
  
  .global-floating-3 {
    width: 35px;
    height: 35px;
    top: 80%;
    right: 25%;
  }
  
  .global-floating-4 {
    width: 25px;
    height: 25px;
    top: 55%;
    left: 25%;
  }
  
  .global-floating-5 {
    width: 30px;
    height: 30px;
    bottom: 15%;
    right: 10%;
  }
  
  .global-diamond-1 {
    top: 25%;
    left: 35%;
  }
  
  .global-diamond-2 {
    bottom: 45%;
    right: 35%;
  }
  
  .global-diamond-3 {
    top: 85%;
    left: 15%;
  }
}
