/* ========== ABOUT US FULL SCREEN (prefix 'au-', 'ab-') ========== */

/* Full Screen Sections */
.au-hero-full,
.ab-section-full {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Alternating background colors for visual separation */
.ab-section-full:nth-child(even) {
  background: var(--bg-color-sepration);
}

/* Full Width Containers */
.au-container-full,
.container-full {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* AU Hero Section */
.au-hero-full {
  background: linear-gradient(145deg, var(--bg-color), var(--bg-color-sepration));
}

.au-badge-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.au-badge {
  background:  var(--primary-navy);
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
}

.au-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.au-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  color:  var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.au-heading-sub {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-slate);
  line-height: 1.2;
}

.au-content-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  background: var(--white-color);
  border-radius: 40px;
  padding: 3.5rem;
  box-shadow: 0 30px 50px -30px var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.au-content-left-full {
  border-right: 1px solid var(--border-color);
  padding-right: 3rem;
}

.au-content-right-full {
  padding-left: 1.5rem;
}

.au-paragraph-full {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.au-paragraph-full:last-child {
  margin-bottom: 0;
}

.au-highlight-box-full {
  background:  var(--primary-navy);
  color: var(--white-color);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.au-highlight-box-full p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.au-highlight-box-full i {
  margin-right: 0.75rem;
}

.au-dots-full {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 200px;
  height: 200px;
  background-image: radial-gradient( var(--primary-navy) 2px, transparent 2px);
  background-size: 25px 25px;
  opacity: 0.03;
  z-index: 1;
}

/* AB Section Styles */
.ab-section-header-full {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.ab-section-label-full {
  color:  var(--primary-navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.ab-section-title-full {
  font-size: 2.0rem;
  font-weight: 700;
  color:  var(--primary-navy);
  line-height: 1.3;
}

.ab-grid-3-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-card-full {
  background: var(--white-color);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.ab-card-full:hover {
  border-color:  var(--primary-navy);
  box-shadow: 0 25px 45px -25px var(--shadow-card);
  transform: translateY(-5px);
}

.ab-icon-full {
  width: 64px;
  height: 64px;
  background: rgba(19,41,75,0.05);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:  var(--primary-navy);
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}

.ab-card-title-full {
  font-size: 1.3rem;
  font-weight: 700;
  color:  var(--primary-navy);
  margin-bottom: 1rem;
}

.ab-card-text-full {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.ab-highlight-full {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 2.5rem;
  background: var(--grey-soft);
  border-radius: 100px;
  font-size: 1.1rem;
}

/* Mission Vision */
.ab-grid-2-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-mission-card-full {
  background:  var(--primary-navy);
  color: var(--white-color);
  border-radius: 40px;
  padding: 3.5rem;
  text-align: center;
  height: 100%;
}

.ab-vision-card-full {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  padding: 3.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 25px 45px -25px var(--shadow-light);
}

.ab-card-label-full {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.4rem 1.5rem;
  border-radius: 30px;
}

.ab-mission-card-full .ab-card-label-full {
  background: rgba(255,255,255,0.15);
  color: var(--white-color);
}

.ab-vision-card-full .ab-card-label-full {
  background: rgba(19,41,75,0.05);
  color:  var(--primary-navy);
}

.ab-card-content-full {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 450px;
  margin: 0 auto;
}

.ab-vision-sub-full {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* What You Gain Section - NEW UNIQUE CLASSES */
.ab-gain-full {
  background: var(--bg-color-sepration);
  border-radius: 50px;
  padding: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-gain-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.ab-gain-item-full {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--white-color);
  border-radius: 60px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.ab-gain-item-full:hover {
  border-color:  var(--primary-navy);
  transform: translateX(5px);
}

.ab-gain-item-full i {
  color:  var(--primary-navy);
  font-size: 1.1rem;
  width: 1.5rem;
}

.ab-gain-insight-full {
  text-align: center;
  max-width: 800px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: var(--white-color);
  border-radius: 60px;
  border: 1px solid var(--border-color);
  font-size: 1.1rem;
}

/* Track Record */
.ab-track-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-track-item-full {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 2rem;
  background: var(--bg-color-sepration);
  border-radius: 60px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  font-size: 1rem;
}

.ab-track-item-full:hover {
  border-color:  var(--primary-navy);
  background: var(--white-color);
}

.ab-track-item-full i {
  color:  var(--primary-navy);
  font-size: 1.3rem;
  width: 2rem;
  text-align: center;
}

/* CTA */
.ab-cta-full {
  background:  var(--primary-navy);
  border-radius: 50px;
  padding: 3rem;
  text-align: center;
  color: var(--white-color);
  max-width: 1100px;
  margin: 0 auto;
}

.ab-cta-title-full {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ab-cta-text-full {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ab-cta-buttons-full {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.ab-btn-white-full {
  background: var(--white-color);
  color:  var(--primary-navy);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ab-btn-white-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px var( --shadow-button);
}

.ab-btn-outline-full {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ab-btn-outline-full:hover {
  background: var(--white-color);
  color:  var(--primary-navy);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .au-container-full,
  .container-full {
    padding: 0 2rem;
  }
  
  .au-heading-main {
    font-size: 2.8rem;
  }
  
  .au-heading-sub {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .au-content-grid-full {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  
  .au-content-left-full {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.5rem;
  }
  
  .au-content-right-full {
    padding-left: 0;
  }
  
  .ab-grid-3-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ab-track-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ab-gain-grid-full {
    grid-template-columns: 1fr;
  }
  
  .ab-cta-full {
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .au-hero-full,
  .ab-section-full {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .au-container-full,
  .container-full {
    padding: 0 1.5rem;
  }
  
  .au-heading-main {
    font-size: 2.2rem;
  }
  
  .au-heading-sub {
    font-size: 1.8rem;
  }
  
  .au-content-grid-full {
    padding: 2rem;
  }
  
  .ab-grid-3-full {
    grid-template-columns: 1fr;
  }
  
  .ab-grid-2-full {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ab-gain-full {
    padding: 2rem;
  }
  
  .ab-track-grid-full {
    grid-template-columns: 1fr;
  }
  
  .ab-cta-buttons-full {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ab-btn-white-full,
  .ab-btn-outline-full {
    width: 100%;
    text-align: center;
  }
  
  .ab-mission-card-full,
  .ab-vision-card-full {
    padding: 2.5rem;
  }
}
/* ========== ATTRACTIVE ABOUT US - PREMIUM DESIGN ========== */

.au-content-premium {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--white-color), #fff);
    border-radius: 50px;
    padding: 4rem;
    box-shadow: 0 40px 70px -30px rgba(19, 41, 75, 0.25);
    border: 1px solid rgba(19, 41, 75, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decorative accent line */
.au-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-navy), #4a6fa5, var(--primary-navy));
}

/* Statement block */
.au-statement-block {
    margin-bottom: 3.5rem;
    position: relative;
}

.au-statement-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 2rem;
    border-left: 6px solid var(--primary-navy);
    margin-bottom: 0;
}

/* Feature grid */
.au-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.au-feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.au-feature-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-navy);
    border-radius: 50%;
    margin-top: 0.7rem;
    flex-shrink: 0;
    position: relative;
}

.au-feature-dot::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(19, 41, 75, 0.1);
    border-radius: 50%;
    top: -6px;
    left: -6px;
    z-index: -1;
}

.au-feature-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Partner card */
.au-partner-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3a5f 100%);
    border-radius: 30px;
    padding: 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 40px -20px var(--primary-navy);
}

.au-partner-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.au-partner-text {
    flex: 1;
}

.au-partner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.au-partner-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Meta footer */
.au-meta-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
}

.au-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.au-meta-item i {
    color: var(--primary-navy);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .au-content-premium {
        padding: 3rem;
    }
    
    .au-statement-text {
        font-size: 1.4rem;
    }
    
    .au-feature-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .au-content-premium {
        padding: 2.5rem 1.8rem;
        border-radius: 40px;
    }
    
    .au-statement-text {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }
    
    .au-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .au-partner-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.8rem;
    }
    
    .au-partner-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .au-partner-text p {
        font-size: 1rem;
    }
    
    .au-meta-footer {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .au-content-premium {
        padding: 2rem 1.2rem;
    }
    
    .au-statement-text {
        font-size: 1.2rem;
    }
    
    .au-meta-footer {
        flex-direction: column;
        gap: 0.8rem;
    }
}
/* ========== ATTRACTIVE WHY CHOOSE SECTION ========== */

/* Section header with underline */
.ab-section-header-full {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ab-section-title-full {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.ab-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), #4a6fa5, var(--primary-navy));
    margin: 0 auto;
    border-radius: 4px;
}

/* Card grid */
.ab-grid-3-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Attractive cards */
.ab-card-attractive {
    perspective: 1500px;
    height: 100%;
}

.ab-card-inner {
    background: linear-gradient(145deg, #ffffff, #f8fafd);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(19, 41, 75, 0.1);
    box-shadow: 0 20px 40px -15px rgba(19, 41, 75, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ab-card-attractive:hover .ab-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px var(--primary-navy);
    border-color: rgba(19, 41, 75, 0.2);
    background: white;
}

/* Shine effect */
.ab-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.ab-card-attractive:hover .ab-card-shine {
    transform: translateX(100%);
}

/* Icon styling */
.ab-icon-attractive {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a5f);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 15px 30px -10px var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
}

.ab-icon-attractive::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(19, 41, 75, 0.1);
    border-radius: 30px;
    z-index: -1;
    transition: all 0.3s ease;
}

.ab-card-attractive:hover .ab-icon-attractive::after {
    width: 100px;
    height: 100px;
    background: rgba(19, 41, 75, 0.15);
}

.ab-card-attractive:hover .ab-icon-attractive {
    transform: scale(1.05) rotate(5deg);
}

/* Card title */
.ab-card-title-attractive {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ab-card-attractive:hover .ab-card-title-attractive {
    color: #1e3a5f;
}

/* Card text */
.ab-card-text-attractive {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
    flex-grow: 1;
}

/* Premium highlight box */
.ab-highlight-premium {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3a5f 100%);
    border-radius: 100px;
    padding: 0.5rem;
    box-shadow: 0 25px 45px -20px var(--primary-navy);
}

.ab-highlight-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ab-highlight-content i {
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
}

.ab-highlight-content p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .ab-grid-3-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ab-highlight-content {
        padding: 1.2rem 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .ab-section-title-full {
        font-size: 2rem;
    }
    
    .ab-grid-3-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ab-card-inner {
        padding: 2rem;
    }
    
    .ab-icon-attractive {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .ab-highlight-premium {
        border-radius: 50px;
    }
    
    .ab-highlight-content {
        border-radius: 50px;
        padding: 1.5rem;
    }
    
    .ab-highlight-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ab-section-title-full {
        font-size: 1.8rem;
    }
    
    .ab-card-title-attractive {
        font-size: 1.2rem;
    }
    
    .ab-highlight-content p {
        font-size: 0.95rem;
    }
}
/* ========== ATTRACTIVE TRACK RECORD SECTION ========== */

.ab-section-label-attractive {
    color: var(--primary-navy);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, rgba(19,41,75,0.05), rgba(19,41,75,0.02));
    border-radius: 50px;
    border: 1px solid rgba(19,41,75,0.1);
}

.ab-title-underline-small {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-navy), #4a6fa5, transparent);
    margin: 1rem auto 0;
    border-radius: 3px;
}

/* Premium track grid */
.ab-track-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

/* Track cards */
.ab-track-card {
    background: white;
    border-radius: 30px;
    padding: 2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    border: 1px solid rgba(19,41,75,0.08);
    box-shadow: 0 15px 30px -15px rgba(19,41,75,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ab-track-card-large {
    grid-column: span 1;
}

/* Make the first card span 2 columns on large screens for better balance */
.ab-track-card:nth-child(3) {
    grid-column: span 1;
}

/* Special styling for longer text cards */
.ab-track-card-large .ab-track-text {
    font-size: 0.95rem;
}

/* Icon styling */
.ab-track-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a5f);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -8px var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ab-track-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(19,41,75,0.1);
    border-radius: 22px;
    z-index: -1;
    transition: all 0.3s ease;
}

/* Text styling */
.ab-track-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    flex: 1;
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Glow effect */
.ab-track-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(19,41,75,0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Hover effects */
.ab-track-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(19,41,75,0.15);
    box-shadow: 0 25px 45px -20px var(--primary-navy);
    background: linear-gradient(145deg, white, #fafcff);
}

.ab-track-card:hover .ab-track-icon {
    transform: scale(1.1) rotate(3deg);
}

.ab-track-card:hover .ab-track-icon::after {
    width: 70px;
    height: 70px;
    background: rgba(19,41,75,0.15);
}

.ab-track-card:hover .ab-track-text {
    color: var(--primary-navy);
}

.ab-track-card:hover .ab-track-glow {
    opacity: 1;
}

/* Background pattern */
.ab-track-pattern {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary-navy) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
    .ab-track-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .ab-track-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .ab-track-card-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .ab-section-label-attractive {
        font-size: 0.8rem;
        padding: 0.4rem 1.5rem;
    }
    
    .ab-track-grid-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ab-track-card:nth-child(3) {
        grid-column: span 1;
    }
    
    .ab-track-card {
        padding: 1.5rem;
    }
    
    .ab-track-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 15px;
    }
    
    .ab-track-icon::after {
        width: 55px;
        height: 55px;
        border-radius: 18px;
    }
    
    .ab-track-text {
        font-size: 0.95rem;
    }
    
    .ab-track-card-large .ab-track-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ab-track-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .ab-track-icon {
        margin-bottom: 0.5rem;
    }
    
    .ab-track-pattern {
        width: 200px;
        height: 200px;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ab-track-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.ab-track-card:nth-child(1) { animation-delay: 0.1s; }
.ab-track-card:nth-child(2) { animation-delay: 0.2s; }
.ab-track-card:nth-child(3) { animation-delay: 0.3s; }
.ab-track-card:nth-child(4) { animation-delay: 0.4s; }
.ab-track-card:nth-child(5) { animation-delay: 0.5s; }