
/* style.css */

/* ======= Base Styles ======= */
:root {
  /* Primary color palette */
  --primary: #0056b3;
  --primary-dark: #004494;
  --primary-light: #3378c5;
  --secondary: #6c757d;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --light: #f8f9fa;
  --dark: #343a40;
  
  /* Security-themed accent colors */
  --secure-green: #2ecc71;
  --alert-amber: #f39c12;
  --critical-red: #e74c3c;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000000;
  
  /* Typography */
  --font-family-sans-serif: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-monospace: 'Roboto Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  /* Border radius */
  --border-radius-sm: 0.2rem;
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  
  /* Box shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Transitions */
  --transition-base: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
  --transition-fast: all 0.1s ease-in-out;
}

body {
  font-family: var(--font-family-sans-serif);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn {
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* ======= Layout Components ======= */

/* Header & Navigation */
.header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  transition: var(--transition-base);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 1rem 1rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link.btn {
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--gray-100);
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/security-pattern.png');
  background-size: cover;
  opacity: 0.1;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.text-warning {
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-security-badge {
  position: absolute;
  bottom: -30px;
  right: 5%;
  width: 120px;
  height: 120px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.section-title p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header */
.page-header {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/security-pattern.png');
  background-size: cover;
  opacity: 0.1;
}

/* Media query for smaller screen */
@media (max-width: 767.98px) {
    /* For hero section */
    .hero::before {
        background-image: url('/static/images/security-pattern-mobile.png');
        background-size: cover; 
        background-position: center;
    }
    
    /* For page header */
    .page-header::before {
        background-image: url('/static/images/security-pattern-mobile.png');
        background-size: cover; 
        background-position: center;
    }
}


/* Page Title Animation Styles */
.page-title-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.95); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.animated-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 2rem;
    }
}


/* Cards */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow);
}

.card-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-body {
  padding: 1.5rem;
}

/* Service Cards */
.service-card {
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-benefits {
  margin: 1rem 0;
}

.service-benefits .badge {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-sm);
}

/* Portfolio Items */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}


/* ===== Industry Badge Styles ===== */
/* For case study pages - inline badge */
.case-study-content .industry-badge,
.section .industry-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 2rem;
  font-weight: 500;
  color: var(--bs-primary);
  position: static; /* Override absolute positioning */
}

/* For portfolio cards - absolute positioned badge */
.card .industry-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

/* For hero sections with light text */
.bg-primary .industry-badge,
.text-white .industry-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}


.industry-badge-large {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
}


.page-header .industry-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}



/* Testimonial carousel styling */
.testimonial-carousel-item {
    padding: 2rem 0;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem 2rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.testimonial:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    margin: 0 auto 1.5rem;
    display: block;
}

.testimonial .quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    color: var(--gray-200);
    font-size: 1.5rem;
}

.testimonial .quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  padding-left: 1.5rem;
}

.testimonial .quote::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: -1rem;
  color: var(--gray-300);
  font-family: Georgia, serif;
}

.testimonial .name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial .company {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.testimonial .industry-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-light);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-indicators {
    bottom: -10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}


/* Additional styles for multi-testimonial carousel */
.testimonial {
    height: 100%;  /* Make all testimonials the same height in a row */
    margin-bottom: 2rem;  /* Add space between rows if needed */
}

/* Adjust carousel controls for multi-testimonial layout */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-base);
}

#testimonialCarousel:hover .carousel-control-prev,
#testimonialCarousel:hover .carousel-control-next {
    opacity: 0.7;
}

#testimonialCarousel .carousel-control-prev {
    left: -20px;
}

#testimonialCarousel .carousel-control-next {
    right: -20px;
}

/* Ensure equal height cards */
.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.row.equal-height .testimonial {
    flex: 1;
}

/* Adjust spacing for mobile */
@media (max-width: 767px) {
    .testimonial {
        margin-bottom: 1.5rem;
    }
    
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        display: none;
    }
}


/* Team Members */
.team-member {
  text-align: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.team-member:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--gray-100);
}

.team-member h4 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.team-member .social {
  margin-bottom: 1rem;
}

.team-member .social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: var(--gray-100);
  color: var(--gray-700);
  border-radius: 50%;
  margin: 0 0.25rem;
  transition: var(--transition-base);
}

.team-member .social a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}


/* ===== Process Timeline Styles ===== */
.process-timeline {
  position: relative;
  padding-left: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--bs-primary);
}


.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-step:last-child {
  margin-bottom: 0;
}


.process-step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}


.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: -40px;
  width: 2px;
  background-color: var(--gray-300);
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

/* Approach Steps */
.approach-step {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.approach-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.step-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--gray-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  z-index: 2;
}

.timeline-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  width: 45%;
  margin-top: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

/* Industry Cards */
.industry-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.industry-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.industry-card h4 {
  margin-bottom: 1rem;
}

.industry-challenges {
  margin-top: 1.5rem;
}

.industry-challenges h6 {
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

/* Risk Cards */
.risk-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.risk-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.risk-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.risk-card h4 {
  margin-bottom: 1rem;
}

/* Expertise Cards */
.expertise-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.expertise-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.expertise-card h4 {
  margin-bottom: 1rem;
  text-align: center;
}

.expertise-features {
  margin-top: 1.5rem;
  text-align: center;
}

/* Stats */
.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

/* Contact Info */
.contact-info {
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.contact-info:hover .contact-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.contact-info h5 {
  margin-bottom: 0.25rem;
}

/* Map Container */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Accordion */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  background-color: var(--white);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--gray-100);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-300);
}

.accordion-button::after {
  background-size: 1rem;
  transition: var(--transition-base);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--white);
}

/* Package Cards */
.price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.discount {
  font-weight: 500;
}

/* Feature Items */
.feature-item, .benefit-item, .approach-item {
  margin-bottom: 1.5rem;
}

.feature-icon, .benefit-icon, .approach-icon {
  font-size: 1.25rem;
  color: var(--primary);
}

/* Security Features */
.security-features {
  margin: 1.5rem 0;
}

.security-features .badge {
  padding: 0.5rem 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Industry Applications */
.industry-application-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: var(--transition-base);
}

.industry-application-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.industry-benefits {
  margin-top: 1.5rem;
}

/* Outcome Cards */
.outcome-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.outcome-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.outcome-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.outcome-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Case Study styling */
.case-study-content h2 {
  margin-bottom: 1rem;
}

.case-study-content .lead {
  margin-bottom: 2rem;
  color: var(--gray-600);
}


.case-study-featured {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.case-study-stats {
    margin: 2rem 0;
}

.stat-box {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--gray-100);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}


.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}



.challenge-solution h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}



/* Trust Indicators */
.trust-item {
  margin-bottom: 2rem;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-badges .badge-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-base);
}

.trust-badges .badge-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

/* Newsletter */
.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}


/* Thank you message animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.thank-you-message {
    animation: fadeIn 0.5s ease-out forwards;
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Success icon pulse animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.thank-you-message .fa-check-circle {
    animation: successPulse 1.5s ease-in-out infinite;
}



/* Footer Styles */
.footer {
  background-color: var(--dark);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
}

/* Headings */
.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* List items spacing */
.footer ul li {
  margin-bottom: 0.75rem;
}

/* Basic link styling */
.footer a {
  color: var(--gray-300);
  transition: var(--transition-base);
  display: inline-block;
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

/* Social icons styling */
.footer .social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: var(--transition-base);
}

.footer .social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Navigation links styling (Quick Links and Services) */
.footer ul.list-unstyled a {
  padding: 0.25rem 0.5rem;
  margin-left: -0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer ul.list-unstyled a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

/* Contact links styling */
.footer address a {
  padding: 0.25rem 0.5rem;
  margin-left: -0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer address a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

/* Button styling in footer */
.footer .btn {
  position: relative;
  overflow: hidden;
}

/* Custom animated underline effect */
.footer ul.list-unstyled a::after,
.footer address a::after,
.footer .btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0.5rem;
  background-color: var(--white);
  transition: width 0.3s ease;
  opacity: 0.8;
}

.footer ul.list-unstyled a:hover::after,
.footer address a:hover::after,
.footer .btn:hover::after {
  width: calc(100% - 1rem);
}

/* Exclude underline from social icons */
.footer .social-icons a::after {
  display: none;
}

/* Divider styling */
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}





/* Contact page social icons styling */
.contact-page .social-icons a,  /* If having a container class for the contact page */
.mt-4 .social-icons a {         /* If using the existing structure from your HTML */
  display: inline-block;
  width: 50px;                  /* Larger size to accommodate fa-2x */
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);  /* Lighter background for contact page */
  color: var(--dark);                     /* Dark color for icons */
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: var(--transition-base);
}

.contact-page .social-icons a:hover,
.mt-4 .social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  color: var(--white);          /* White text on hover */
}

/* Centering the icons within their circular backgrounds */
.mt-4 .social-icons a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}













/* Chat & WhatsApp */
.chat-privacy-notice {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  max-width: 300px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition-base);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  color: var(--white);
}

.chat-status {
  position: fixed;
  bottom: 90px;
  left: 20px;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  z-index: 998;
}

.chat-status.online {
  background-color: var(--secure-green);
  color: var(--white);
}

.chat-status.offline {
  background-color: var(--gray-500);
  color: var(--white);
}


/* Security-focused chat styling */
.chat-status-indicator {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: all 0.3s ease;
}


.chat-status-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Security badge for chat widget */
.security-chat-badge {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background-color: #f8f9fa;
    color: #0056b3;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 998;
    display: none; /* Initially hidden, shown when chat is active */
    align-items: center;
    justify-content: center;
}

.security-chat-badge i {
    margin-right: 5px;
}

/* Custom styling for Tawk.to widget */
.security-chat-active iframe[src*="tawk.to"] {
    border: 2px solid #28a745 !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Pulse animation for security indicator */
@keyframes securityPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.chat-status-indicator.pulse {
    animation: securityPulse 2s infinite;
}

/* Hover Effects */
.hover-effect {
  transition: var(--transition-slow);
}

.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animated-title {
  animation: fadeIn 1s ease-out;
}

/* Security Badge Animation */
.security-badge {
  animation: pulse 2s infinite;
}

/* Form Styling */
.form-control {
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  transition: var(--transition-base);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Spinner for form submission */
#formSpinner {
  width: 1.5rem;
  height: 1.5rem;
}

/* Badges */
.badge {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.badge-success {
  background-color: var(--secure-green);
}

/* Alert Styling */
.alert {
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
}

.alert-success {
  background-color: rgba(46, 204, 113, 0.15);
  color: var(--secure-green);
}

.alert-warning {
  background-color: rgba(243, 156, 18, 0.15);
  color: var(--alert-amber);
}

.alert-danger {
  background-color: rgba(231, 76, 60, 0.15);
  color: var(--critical-red);
}

/* Benefit Items */
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  margin-right: 1rem;
  color: var(--warning);
  font-size: 1.25rem;
}

/* Ideal For Items */
.ideal-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.ideal-icon {
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

/* Featured Badge */
.featured-badge {
  margin-top: 1rem;
}

.featured-badge .badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

/* Founder Section */
.founder-image img {
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--gray-100);
  color: var(--gray-700);
  border-radius: 50%;
  margin: 0 0.25rem;
  transition: var(--transition-base);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Specialist Network */
.specialist-expertise {
  margin-top: 1rem;
}

.specialist-expertise .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Portfolio Filters */
.portfolio-filters button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-base);
}

.portfolio-filters button.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Lightbox Customization */
.lb-data .lb-caption {
  font-size: 1rem;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-date {
    left: 30px;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-top: 2.5rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p.lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .process-step {
    padding-left: 50px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
  }
  
  .process-step::before {
    left: 17px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p.lead {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
  
  .testimonial img {
    width: 60px;
    height: 60px;
  }
  
  .chat-privacy-notice {
    left: 20px;
    right: 20px;
    max-width: none;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .chat-status {
    bottom: 80px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 1.5rem;
  }
  
  .timeline-date {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .process-step {
    padding-left: 40px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .process-step::before {
    left: 15px;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .cta-section, .whatsapp-button, .chat-privacy-notice, .chat-status {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
  }
  
  .col-lg-4, .col-md-6 {
    width: 100%;
  }
}

/* Accessibility Enhancements */
:focus {
  outline: 3px solid rgba(0, 86, 179, 0.5);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .navbar, .footer {
    /* These elements stay dark in dark mode */
  }
  
  /* Optional dark mode styles if you want to support it */
  /*
  :root {
    --primary: #3378c5;
    --primary-dark: #0056b3;
    --primary-light: #5a94d6;
    --white: #121212;
    --gray-100: #1e1e1e;
    --gray-200: #2d2d2d;
    --gray-300: #3d3d3d;
    --gray-800: #e0e0e0;
    --gray-900: #f0f0f0;
    --black: #ffffff;
  }
  
  body {
    background-color: #121212;
    color: #e0e0e0;
  }
  
  .card, .testimonial, .team-member {
    background-color: #1e1e1e;
  }
  */
}

/* Additional Security-Themed Elements */

/* Security Shield Badge */
.security-shield {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.security-shield::before {
  content: '\f3ed';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secure-green);
}

/* Security Status Indicators */
.security-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.security-status.secure {
  background-color: rgba(46, 204, 113, 0.15);
  color: var(--secure-green);
}

.security-status.warning {
  background-color: rgba(243, 156, 18, 0.15);
  color: var(--alert-amber);
}

.security-status.critical {
  background-color: rgba(231, 76, 60, 0.15);
  color: var(--critical-red);
}

/* Security Feature Highlight */
.security-feature-highlight {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.security-feature-highlight h5 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Lock Animation */
.animated-lock {
  display: inline-block;
  position: relative;
}

.animated-lock i {
  transition: var(--transition-base);
}

.animated-lock:hover i {
  transform: translateY(-3px);
  color: var(--secure-green);
}

/* Security Pulse Effect */
.security-pulse {
  position: relative;
}

.security-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secure-green);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.3;
  }
  80%, 100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Security Scan Animation */
.security-scan {
  position: relative;
  overflow: hidden;
}

.security-scan::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--secure-green), transparent);
  animation: security-scan 3s infinite;
}

@keyframes security-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}


/* Video Section Styles */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-section {
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/security-assessment-illustration.svg');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}


/* Media query for smaller screen */
@media (max-width: 767.98px) {
    /* For hero section */
    .video-section::before {
        background-image: url('/static/images/security-assessment-illustration.svg');
        background-size: cover;
        background-position: center; 
        
    }   
    
}


.video-highlights .highlight-item {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.video-highlights .highlight-item:hover {
    background-color: rgba(0, 86, 179, 0.05);
    transform: translateY(-5px);
}

.video-highlights .highlight-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-highlights .highlight-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-section .section-title {
    margin-bottom: 2.5rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Video Section */
.testimonial-video {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-video .video-container {
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-quote {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    margin-left: 2rem;
    margin-right: 2rem;
}

.testimonial-quote {
    position: relative;
    padding: 2rem;
}

.tech-item {
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

/* Portfolio card hover effect */
.portfolio-card {
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}



.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.testimonial-author-info p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}


/* Security Score Calculator Styles */
.bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, #4a6fdc 100%);
}

.assessment-question {
    transition: all 0.3s ease;
}

.assessment-question:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0%, var(--gray-300) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark);
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.score-circle::before {
    content: '';
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
}

.score-circle span {
    position: relative;
    z-index: 1;
}

.recommendation-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.recommendation-list li i {
    margin-right: 1rem;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
}

#scoreBadge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

/* Add animation for score reveal */
@keyframes scoreReveal {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.score-circle.animated {
    animation: scoreReveal 1s ease-out forwards;
}



/* Security Tip Styling */
.security-tip-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.security-tip-header {
    background-color: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.security-tip-header i {
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.security-tip-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.security-tip-body {
    padding: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#securityTip {
    transition: opacity 0.5s ease;
    font-size: 1.1rem;
    line-height: 1.6;
}

.security-tip-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

#newTipBtn i {
    transition: transform 1s ease;
}

#newTipBtn:hover i {
    transform: rotate(180deg);
}

.fa-spin {
    animation: fa-spin 1s linear;
}

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





