@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #344CB7;
  --secondary-color: #000957;
  --accent-color: #FB4141;
  --light-color: #ECE852;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #000957 100%);
  --hover-color: #577BC1;
  --background-color: #FFFFFF;
  --text-color: #0F1021;
  --border-color: rgba(251, 65, 65, 0.2);
  --divider-color: rgba(15, 16, 33, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.1);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', serif;
}

/* Neuromorphism for light components */
.shadow-lg {
    box-shadow: 12px 12px 24px var(--shadow-color), 
               -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.shadow-2xl {
    box-shadow: 20px 20px 40px var(--shadow-color);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

/* Mobile Nav Toggle Logic */
#nav-trigger:checked + label + nav {
    display: block !important;
}

html {
    scroll-behavior: smooth;
}

/* Dark mode specific elements */
#testimonials {
    background-image: linear-gradient(30deg, #0F1021 12%, transparent 12.5%, transparent 87%, #0F1021 87.5%, #0F1021),
    linear-gradient(150deg, #0F1021 12%, transparent 12.5%, transparent 87%, #0F1021 87.5%, #0F1021),
    linear-gradient(30deg, #0F1021 12%, transparent 12.5%, transparent 87%, #0F1021 87.5%, #0F1021),
    linear-gradient(150deg, #0F1021 12%, transparent 12.5%, transparent 87%, #0F1021 87.5%, #0F1021),
    linear-gradient(60deg, #1a1b3a 25%, transparent 25.5%, transparent 75%, #1a1b3a 75%, #1a1b3a),
    linear-gradient(60deg, #1a1b3a 25%, transparent 25.5%, transparent 75%, #1a1b3a 75%, #1a1b3a);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}