
p {
	padding-top: 15px;
	padding-bottom: 10px;
}


/* Shake Animation Keyframes */
@keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-2px, -2px) rotate(-1deg); }
    20% { transform: translate(2px, -2px) rotate(1deg); }
    30% { transform: translate(-2px, 2px) rotate(0deg); }
    40% { transform: translate(2px, 2px) rotate(1deg); }
    50% { transform: translate(-2px, -2px) rotate(-1deg); }
    60% { transform: translate(2px, -2px) rotate(0deg); }
    70% { transform: translate(-2px, 2px) rotate(-1deg); }
    80% { transform: translate(-2px, -2px) rotate(1deg); }
    90% { transform: translate(2px, 2px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Apply to navbar links */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
    display: inline-block; /* Required for transform to work */
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optional: Pause animation on click */
.navbar-nav .nav-link:active {
    animation: none;
}

/* Make dropdown items shake too */
.navbar-nav .dropdown-item {
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-nav .dropdown-item:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,.25);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Other Custom Sttyles for Improvements */
.sfl-text-element {
    margin: 0.5rem 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Heading Styles */
.sfl-heading {
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.sfl-heading-1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sfl-heading-2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.sfl-heading-3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.sfl-heading-4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.sfl-heading-5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sfl-heading-6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Paragraph Styles */
.sfl-paragraph {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Center Container */
.sfl-center-container {
    text-align: center;
    margin: 1rem auto;
}

/* Variants */
.sfl-primary { color: #2563eb; }
.sfl-success { color: #059669; }
.sfl-warning { color: #d97706; }
.sfl-danger { color: #dc2626; }
.sfl-light { color: #6b7280; }

/* Decorations */
.sfl-underline { 
    border-bottom: 2px solid currentColor;
    padding-bottom: 0.2rem;
}

.sfl-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfl-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.ph2024-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}

.ph2024-header__title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0000, #ff6666, #ffffff, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ph2024-gradientMove 8s ease infinite;
    background-size: 300% 300%;
}

.ph2024-header__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.ph2024-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes ph2024-gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ph2024-header__content {
    position: relative;
    z-index: 2;
}

.ph2024-header__decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, transparent);
    margin: 1rem auto;
}

/* For the Call for Actions Button */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #3a8dff, #6b5bff);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-content {
    max-width: 60%;
}

.cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #3a8dff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.cta-button .arrow {
    margin-left: 5px;
    font-size: 14px;
}

.cta-graphic {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-placeholder {
    /* This would be replaced with actual graphic or icon */
    width: 100px;
    height: 100px;
    background-color: #4CAF50; /* Just a placeholder color */
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-graphic {
        width: 100%;
        margin-top: 20px;
    }
}




/* Changes made on 0405-2025 */
/* Enhanced visual styling */
body {
    line-height: 1.6;
    color: #333;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
  
  .container {
    padding: 2rem 1.5rem;
  }
  
  /* Enhanced hero section */
  .hero-section {
    position: relative;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-section .content {
    position: relative;
    z-index: 2;
  }
  
  /* Service cards styling */
  .service-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .service-card .content {
    padding: 1.5rem;
    flex-grow: 1;
  }
  
  .service-card .btn {
    margin-top: auto;
    align-self: flex-start;
  }
  
  /* Enhanced spacing */
  .section {
    padding: 4rem 0;
    position: relative;
  }
  
  .section-divider {
    margin: 3rem 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  }
  
  /* Better shadows */
  .shadow-element {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Improved buttons */
  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }