@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#landing-section {
    width: 100%;
    min-height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Background pattern for visual interest */
#landing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, #7877c61a 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #0000001a 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #0000001a 0%, transparent 50%);
    pointer-events: none;
}

.landing-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    width: 90%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main-heading {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

/* Add subtle glow effect */
.main-heading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    filter: blur(20px);
    z-index: -1;
    opacity: 0.5;
}

/* Subtitle for better context */
.landing-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 400;
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out 0.2s both;
    opacity: 0;
}

/* Call to action button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    animation: fadeInUp 1.2s ease-out 0.4s both;
    opacity: 0;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.cta-button:active {
    transform: translateY(0);
}

/* Feature highlights for mobile */
.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    color: #e0e0e0;
    backdrop-filter: blur(10px);
}

.feature-item ion-icon {
    color: #007bff;
    font-size: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    #landing-section {
        padding: 60px 0 40px 0;
        min-height: calc(100vh - 55px); /* Account for navbar */
    }
    
    .landing-content {
        max-width: 95%;
        padding: 20px 15px;
        gap: 25px;
    }
    
    .main-heading {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
    
    .landing-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        width: auto;
        min-width: 200px;
        justify-content: center;
    }
    
    .feature-highlights {
        gap: 12px;
        margin-top: 15px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: clamp(0.75rem, 3vw, 0.85rem);
    }
}

@media (max-width: 480px) {
    #landing-section {
        padding: 50px 0 30px 0;
    }
    
    .landing-content {
        max-width: 98%;
        padding: 15px 10px;
        gap: 20px;
    }
    
    .main-heading {
        font-size: clamp(2.5rem, 9vw, 2.5rem);
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .landing-subtitle {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: clamp(0.8rem, 4vw, 0.95rem);
        min-width: 180px;
    }
    
    .feature-highlights {
        gap: 8px;
        margin-top: 12px;
    }
    
    .feature-item {
        padding: 5px 10px;
        font-size: clamp(0.7rem, 3.5vw, 0.8rem);
    }
}

@media (max-width: 360px) {
    .landing-content {
        gap: 15px;
    }
    
    .main-heading {
        font-size: clamp(1.6rem, 10vw, 2.2rem);
    }
    
    .cta-button {
        min-width: 160px;
        padding: 10px 20px;
    }
    
    .feature-highlights {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (min-width: 1200px) {
    .landing-content {
        max-width: 1000px;
        gap: 40px;
    }
    
    .main-heading {
        font-size: 5rem;
    }
    
    .landing-subtitle {
        font-size: 1.25rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    #landing-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .landing-content {
        gap: 15px;
    }
    
    .main-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .feature-highlights {
        margin-top: 10px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-heading {
        background: #ffffff;
        -webkit-text-fill-color: #ffffff;
        background-clip: unset;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        background: #007bff;
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .main-heading,
    .landing-subtitle,
    .cta-button,
    .feature-highlights {
        animation: none;
        opacity: 1;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .landing-subtitle {
        color: #b0b0b0;
    }
    
    .feature-item {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

/* Team showcase section */
.team-showcase {
  background: #0a0a0a;
  color: #e9e9e9;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 56px) clamp(16px, 5vw, 72px);
}

.team-showcase__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.team-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  filter: saturate(1.05);
}

/* Play badge in top-left */
.team-showcase__play-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 84px;
  height: 64px;
  background: #ff6a3d;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255, 106, 61, 0.35);
}

.team-showcase__play-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.team-showcase__copy {
  max-width: 640px;
  margin-inline: auto;
}

.team-showcase__header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.team-showcase__avatar {
  width: 94px;
  height: 54px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  object-fit: contain;
}

.team-showcase__avatar img {
    width: 65px;
}

.team-showcase__arrow-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.team-showcase__arrow-badge ion-icon {
  font-size: 20px;
}

.team-showcase__text {
  margin: 20px 0 28px;
  color: #cfcfcf;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.9vw, 1.1rem);
}

.team-showcase__stat {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.team-showcase__stat-value {
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 2px;
}

.team-showcase__stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: #bdbdbd;
}

/* Responsive behavior */
@media (max-width: 1024px) {
  .team-showcase {
    grid-template-columns: 1fr;
    padding: clamp(20px, 3vw, 40px) clamp(12px, 4vw, 24px);
  }
  .team-showcase__media {
    order: 1;
  }
  .team-showcase__copy {
    order: 2;
    text-align: left;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .team-showcase {
    padding: 16px 12px 32px;
    gap: 16px;
  }
  .team-showcase__text {
    font-size: clamp(0.9rem, 4vw, 1rem);
    margin: 16px 0 20px;
  }
  .team-showcase__stat-value {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }
  .team-showcase__stat-label {
    font-size: 0.8rem;
  }
  .team-showcase__avatar {
    width: 80px;
    height: 46px;
  }
  .team-showcase__avatar img {
    width: 55px;
  }
}

@media (max-width: 640px) {
  .team-showcase {
    padding: 12px 8px 24px;
    gap: 12px;
  }
  .team-showcase__play-badge {
    width: 60px;
    height: 45px;
    top: 8px;
    left: 8px;
  }
  .team-showcase__play-badge::after {
    border-left: 14px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .team-showcase__avatar {
    width: 70px;
    height: 40px;
  }
  .team-showcase__avatar img {
    width: 48px;
  }
  .team-showcase__arrow-badge { 
    width: 36px; 
    height: 36px; 
  }
  .team-showcase__arrow-badge ion-icon {
    font-size: 16px;
  }
  .team-showcase__header {
    gap: 8px;
  }
  .team-showcase__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .team-showcase {
    padding: 8px 6px 20px;
  }
  .team-showcase__play-badge {
    width: 50px;
    height: 38px;
    top: 6px;
    left: 6px;
  }
  .team-showcase__play-badge::after {
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  .team-showcase__avatar {
    width: 60px;
    height: 34px;
  }
  .team-showcase__avatar img {
    width: 42px;
  }
  .team-showcase__arrow-badge { 
    width: 32px; 
    height: 32px; 
  }
  .team-showcase__arrow-badge ion-icon {
    font-size: 14px;
  }
  .team-showcase__stat-value {
    font-size: clamp(1.5rem, 12vw, 2.5rem);
  }
  .team-showcase__stat-label {
    font-size: 0.75rem;
    width: 100%;
  }
  .team-showcase__text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 12px 0 16px;
  }
}

@media (max-width: 360px) {
  .team-showcase {
    padding: 6px 4px 16px;
    gap: 8px;
  }
  .team-showcase__play-badge {
    width: 40px;
    height: 30px;
    top: 4px;
    left: 4px;
  }
  .team-showcase__play-badge::after {
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .team-showcase__avatar {
    width: 50px;
    height: 28px;
  }
  .team-showcase__avatar img {
    width: 35px;
  }
  .team-showcase__arrow-badge { 
    width: 28px; 
    height: 28px; 
  }
  .team-showcase__arrow-badge ion-icon {
    font-size: 12px;
  }
  .team-showcase__stat-value {
    font-size: clamp(1.2rem, 14vw, 2rem);
  }
  .team-showcase__stat-label {
    font-size: 0.7rem;
  }
  .team-showcase__text {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 10px 0 14px;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .team-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 12px 16px;
  }
  .team-showcase__media {
    order: 1;
  }
  .team-showcase__copy {
    order: 2;
  }
  .team-showcase__text {
    font-size: 0.85rem;
    margin: 12px 0 16px;
  }
  .team-showcase__stat-value {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}


/* Logo section styling */
#our-logo-section {
  width: 100%;
  background-color: #ffffff;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  padding: clamp(60px, 8vw, 120px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #000000;
}

/* Add subtle pattern to the background */
#our-logo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

#our-logo-section img {
  max-width: clamp(200px, 40vw, 400px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

#our-logo-section img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.15));
}

/* Logo section styling */
#our-logo-section {
  width: 100%;
  background-color: #ffffff;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
  color: #000000;
}

/* Add subtle pattern to the background */
#our-logo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.01) 50%, transparent 100%);
  pointer-events: none;
}

.logo-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: logoFloat 6s ease-in-out infinite;
}

.logo-container::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  animation: logoGlow 4s ease-in-out infinite alternate;
  z-index: -1;
}

#our-logo-section img {
  max-width: clamp(180px, 35vw, 440px);
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 2;
}

#our-logo-section img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.18));
}

.logo-text-content {
  opacity: 0;
  animation: slideInRight 1.2s ease-out 0.3s forwards;
}

.logo-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 clamp(15px, 3vw, 25px) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.logo-section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #666666;
  line-height: 1.6;
  margin: 0 0 clamp(30px, 6vw, 50px) 0;
  font-weight: 400;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(30px, 6vw, 50px);
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.stat-item {
  text-align: center;
  padding: clamp(15px, 3vw, 25px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #007bff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 3vw, 25px);
  justify-content: flex-start;
  animation: fadeInUp 1.2s ease-out 1.2s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 123, 255, 0.1);
  padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 18px);
  border-radius: 25px;
  border: 1px solid rgba(0, 123, 255, 0.2);
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #1a1a1a;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.trust-item ion-icon {
  color: #007bff;
  font-size: clamp(14px, 3vw, 18px);
}

/* Animations */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes logoGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  100% { text-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 123, 255, 0.1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for logo section */
@media (max-width: 768px) {
  #our-logo-section {
    padding: clamp(40px, 6vw, 80px) 20px;
  }
  
  #our-logo-section img {
    max-width: clamp(150px, 50vw, 300px);
  }
}

@media (max-width: 480px) {
  #our-logo-section {
    padding: clamp(30px, 5vw, 60px) 15px;
  }
  
  #our-logo-section img {
    max-width: clamp(120px, 60vw, 250px);
  }
}

@media (max-width: 360px) {
  #our-logo-section {
    padding: clamp(25px, 4vw, 50px) 10px;
  }
  
  #our-logo-section img {
    max-width: clamp(100px, 70vw, 200px);
  }
}

/* Responsive adjustments for logo section */
@media (max-width: 1024px) {
  .logo-section-content {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 50px);
    text-align: center;
  }
  
  .logo-container {
    order: 1;
  }
  
  .logo-text-content {
    order: 2;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #our-logo-section {
    padding: clamp(50px, 8vw, 90px) 0;
  }
  
  .logo-section-content {
    padding: 0 clamp(15px, 4vw, 30px);
    gap: clamp(25px, 5vw, 40px);
  }
  
  #our-logo-section img {
    max-width: clamp(140px, 45vw, 280px);
  }
  
  .company-stats {
    gap: clamp(15px, 3vw, 25px);
  }
  
  .stat-item {
    padding: clamp(12px, 2.5vw, 20px);
  }
  
  .stat-number {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  
  .trust-indicators {
    gap: clamp(10px, 2vw, 15px);
  }
}

@media (max-width: 480px) {
  #our-logo-section {
    padding: clamp(40px, 6vw, 70px) 0;
  }
  
  .logo-section-content {
    padding: 0 clamp(10px, 3vw, 20px);
    gap: clamp(20px, 4vw, 30px);
  }
  
  #our-logo-section img {
    max-width: clamp(120px, 55vw, 220px);
  }
  
  .logo-section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  
  .logo-section-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }
  
  .company-stats {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3vw, 20px);
    max-width: 300px;
    margin: 0 auto clamp(25px, 5vw, 40px) auto;
  }
  
  .stat-item {
    padding: clamp(10px, 2vw, 15px);
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
  }
  
  .trust-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  #our-logo-section {
    padding: clamp(30px, 5vw, 60px) 0;
  }
  
  .logo-section-content {
    padding: 0 clamp(8px, 2vw, 15px);
    gap: clamp(15px, 3vw, 25px);
  }
  
  #our-logo-section img {
    max-width: clamp(100px, 60vw, 180px);
  }
  
  .logo-section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  
  .logo-section-subtitle {
    font-size: clamp(0.85rem, 4.5vw, 1rem);
  }
  
  .stat-number {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }
  
  .stat-label {
    font-size: clamp(0.7rem, 3vw, 0.85rem);
  }
  
  .trust-item {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    padding: clamp(6px, 1.5vw, 10px) clamp(10px, 2.5vw, 14px);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .logo-container {
    animation: none;
  }
  
  .logo-container::before {
    animation: none;
    opacity: 0.4;
  }
  
  .logo-text-content,
  .logo-section-title,
  .logo-section-subtitle,
  .company-stats,
  .trust-indicators {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .stat-item:hover,
  .trust-item:hover,
  #our-logo-section img:hover {
    transform: none;
  }
}

/* Systems Showcase Section - Logo Only */
#our-systems-showcase {
    width: 100%;
    background-color: #000000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
#our-systems-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, #7877c61a 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #0000001a 0%, transparent 50%);
    pointer-events: none;
}

.systems-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.systems-logos-grid img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.systems-logos-grid img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    #our-systems-showcase {
        padding: 40px 0;
    }
    
    .systems-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
    }
    
    .systems-logos-grid img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .systems-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .systems-logos-grid img {
        max-height: 50px;
    }
}

/* Data Protection Section Styles */
.data-protection-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.data-protection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.protection-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Protection Cards Grid */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.protection-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.protection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.protection-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.security-card .card-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.compliance-card .card-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.backup-card .card-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.card-description {
    color: #6c757d;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #495057;
    font-size: 0.9rem;
}

.feature-list ion-icon {
    color: #28a745;
    font-size: 16px;
}

/* Dependencies Section */
.dependencies-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.dependencies-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 10px 0;
}

.dependencies-subtitle {
    color: #6c757d;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.dependencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dependency-category {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dependency-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.category-title ion-icon {
    color: #007bff;
    font-size: 20px;
}

.dependency-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dependency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.dependency-item:hover {
    background-color: #f8f9fa;
}

.dependency-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.dependency-item span {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Security Guarantees */
.security-guarantees {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.guarantees-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.guarantee-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.guarantee-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .data-protection-section {
        padding: 60px 15px;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .protection-card {
        padding: 30px 20px;
    }
    
    .dependencies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dependency-category {
        padding: 25px 20px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .protection-card {
        padding: 25px 15px;
    }
    
    .dependency-category {
        padding: 20px 15px;
    }
    
    .guarantee-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How It Works Section Styles */
.how-it-works-section {
    background-color: #000000;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Subtle background pattern for visual interest */
.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, #7877c61a 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #007bff1a 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #0000001a 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.how-it-works-section .section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.how-it-works-section .section-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.step-description {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Step Connectors */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #007bff, #28a745);
    margin-bottom: 10px;
    border-radius: 1px;
}

.step-connector ion-icon {
    color: #007bff;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Process Benefits */
.process-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.benefit-item ion-icon {
    color: #007bff;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: 100px;
        height: auto;
        margin: 0 auto;
    }
    
    .connector-line {
        width: 40px;
        height: 2px;
        margin-bottom: 0;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 15px;
    }
    
    .how-it-works-section .section-header {
        margin-bottom: 40px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .steps-container {
        margin-bottom: 40px;
        gap: 30px;
    }
    
    .step-connector {
        display: none; /* Hide connectors on mobile */
    }
    
    .process-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 50px 10px;
    }
    
    .step-item {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .process-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .how-it-works-section {
        padding: 40px 8px;
    }
    
    .step-item {
        padding: 20px 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
    
    .benefit-item {
        max-width: 240px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .step-item,
    .how-it-works-section .section-header,
    .steps-container,
    .process-benefits {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .step-item:hover,
    .benefit-item:hover {
        transform: none;
    }
    
    .step-connector ion-icon {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .how-it-works-section .section-title {
        background: #ffffff;
        -webkit-text-fill-color: #ffffff;
        background-clip: unset;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .step-item {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .step-number {
        background: #007bff;
        border: 2px solid #ffffff;
    }
}

/* ========================================
   STUDENT ATTENDANCE SECTION STYLES
======================================== */

.student-attendance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.student-attendance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.attendance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Attendance Features Grid */
.attendance-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.attendance-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.attendance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.attendance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.attendance-card:hover::before {
    transform: scaleX(1);
}

/* Card Type Specific Styling */
.primary-card::before {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.primary-card .card-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.notification-card::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.notification-card .card-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.analytics-card::before {
    background: linear-gradient(90deg, #17a2b8, #138496);
}

.analytics-card .card-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.security-card::before {
    background: linear-gradient(90deg, #6f42c1, #5a2d91);
}

.security-card .card-icon {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
}

/* Card Highlights */
.card-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
}

.card-highlight ion-icon {
    font-size: 16px;
}

/* SMS Preview */
.notification-example {
    margin-top: 20px;
}

.sms-preview {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fdf0 100%);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #155724;
}

.sms-preview ion-icon {
    color: #28a745;
    font-size: 18px;
    margin-top: 2px;
}

/* Institutions Showcase */
.institutions-showcase {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.showcase-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.institution-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.institution-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.institution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.institution-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.institution-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Summary */
.benefits-summary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.summary-item ion-icon {
    color: #007bff;
    font-size: 18px;
}

.summary-item span {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* Call to Action */
.attendance-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: white;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.attendance-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.attendance-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: 2px solid transparent;
}

.cta-button.secondary:hover {
    background: transparent;
    border-color: #007bff;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .student-attendance-section {
        padding: 80px 0;
    }
    
    .attendance-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .attendance-card {
        padding: 30px 25px;
    }
    
    .institutions-showcase {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .institutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-summary {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .summary-item {
        padding: 12px 20px;
    }
    
    .attendance-cta {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .attendance-card {
        padding: 25px 20px;
    }
    
    .institutions-showcase {
        padding: 30px 20px;
    }
    
    .institution-item {
        padding: 25px 15px;
    }
    
    .summary-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .attendance-cta {
        padding: 30px 20px;
    }
}

/* ========================================
   MOBILE APP SECTION STYLES
======================================== */

.mobile-app-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mobile-app-section .section-title {
    color: white;
    text-align: center;
}

.mobile-app-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.app-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.app-feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Card Types */
.primary-feature::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.platform-feature::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.dashboard-feature::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.integration-feature::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
}

.primary-feature .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.platform-feature .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.dashboard-feature .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.integration-feature .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

/* Notification Types */
.notification-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-type {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.notification-type ion-icon {
    color: #3b82f6;
    font-size: 18px;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.platform-badge ion-icon {
    font-size: 24px;
}

.android ion-icon {
    color: #34d399;
}

.ios ion-icon {
    color: #ffffff;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.badge-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Dashboard Features */
.dashboard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.dashboard-features ion-icon {
    color: #8b5cf6;
    font-size: 16px;
}

/* Integration Systems */
.integration-systems {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.system-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.system-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.system-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.system-item span {
    font-weight: 500;
    color: white;
}

/* App Preview Section */
.app-preview-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.preview-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.preview-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.app-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item ion-icon {
    color: #3b82f6;
    font-size: 24px;
    margin-top: 2px;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px 20px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.indicators {
    display: flex;
    gap: 5px;
}

.indicators ion-icon {
    font-size: 16px;
}

.app-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-title h4 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.app-content {
    flex: 1;
    padding: 20px;
}

.notification-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.notification-item.new {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notification-item ion-icon {
    color: #3b82f6;
    font-size: 20px;
}

.notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.notification-title {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.notification-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Download Section */
.download-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.download-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.download-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.download-btn ion-icon {
    font-size: 24px;
}

.android-btn ion-icon {
    color: #34d399;
}

.ios-btn ion-icon {
    color: #ffffff;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* App Stats */
.app-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.app-stats .stat-item {
    text-align: center;
}

.app-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.app-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-app-section {
        padding: 80px 0;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-feature-card {
        padding: 30px 25px;
    }
    
    .app-preview-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-frame {
        width: 80%;
        height: 600px;
        padding: 15px;
    }
    
    .download-section {
        padding: 40px 25px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-stats {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .app-feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .platform-badges,
    .notification-types,
    .integration-systems {
        gap: 10px;
    }
    
    .phone-frame {
        width: 100%;
        height: 600px;
        padding: 12px;
    }
    
    .app-header {
        padding: 12px 15px 15px;
    }
    
    .app-content {
        padding: 15px;
    }
    
    .download-section {
        padding: 30px 20px;
    }
    
    .app-stats .stat-number {
        font-size: 1.5rem;
    }
}

/* Industries We Serve Section */
.industries-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card.featured {
    border: 2px solid #007bff;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
}

.industry-card.featured::before {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.industry-description {
    font-size: 1rem;
    color: #6c757d;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.industry-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(0, 123, 255, 0.12);
    transform: translateX(5px);
}

.benefit-tag ion-icon {
    font-size: 16px;
    color: #007bff;
}

.industry-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-stats .stat {
    font-size: 2rem;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 5px;
    line-height: 1;
}

.industry-stats .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Metrics */
.success-metrics {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.metrics-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #007bff, #0056b3);
    flex-shrink: 0;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 5px;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.4;
}

/* Call to Action */
.industries-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.industries-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.industries-cta p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0 0 35px 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.cta-button.primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.cta-button.primary:active {
    transform: translateY(0);
}

.cta-button.primary ion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover ion-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 80px 0;
    }
    
    .industries-container {
        padding: 0 15px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .industry-card {
        padding: 30px 25px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .industry-title {
        font-size: 1.3rem;
    }
    
    .success-metrics {
        padding: 40px 30px;
        margin-bottom: 50px;
    }
    
    .metrics-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-item {
        padding: 20px;
    }
    
    .industries-cta {
        padding: 40px 30px;
    }
    
    .industries-cta h3 {
        font-size: 1.8rem;
    }
    
    .industries-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industry-card {
        padding: 25px 20px;
    }
    
    .industry-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .industry-title {
        font-size: 1.2rem;
    }
    
    .industry-description {
        font-size: 0.95rem;
    }
    
    .benefit-tag {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .industry-stats {
        padding: 15px;
    }
    
    .industry-stats .stat {
        font-size: 1.6rem;
    }
    
    .success-metrics {
        padding: 30px 20px;
    }
    
    .metrics-title {
        font-size: 1.6rem;
    }
    
    .metric-item {
        padding: 15px;
        gap: 15px;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .industries-cta {
        padding: 30px 20px;
    }
    
    .industries-cta h3 {
        font-size: 1.6rem;
    }
    
    .cta-button.primary {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .industry-card {
        padding: 20px 15px;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .benefit-tag {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .metric-item {
        padding: 12px;
        gap: 12px;
    }
    
    .metric-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

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

/* Hover effects for different industry types */
.industry-card:nth-child(1) .industry-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.industry-card:nth-child(2) .industry-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.industry-card:nth-child(3) .industry-icon {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.industry-card:nth-child(4) .industry-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.industry-card:nth-child(5) .industry-icon {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
}

.industry-card:nth-child(6) .industry-icon {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .industry-card,
    .metric-item,
    .benefit-tag {
        transition: none;
    }
    
    .industry-card:hover {
        transform: none;
    }
    
    .industry-card:hover .industry-icon {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .industry-card {
        border: 2px solid #000;
    }
    
    .benefit-tag {
        border: 1px solid #007bff;
    }
    
    .metric-item {
        border: 2px solid #000;
    }
}