/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a365d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #d69e2e;
    color: white;
}

.btn-primary:hover {
    background-color: #b7791f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.btn-secondary:hover {
    background-color: #1a365d;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-subtitle {
    color: #d69e2e;
    font-size: 0.8rem;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d69e2e;
}

.nav-link.cta-button {
    background-color: #d69e2e;
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
}

.nav-link.cta-button:hover {
    background-color: #b7791f;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(26, 54, 93, 0.3), rgba(45, 55, 72, 0.3)), url('images/cover.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Lawyer Name Styling */
.lawyer-name {
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.lawyer-title {
    display: block;
    font-size: 1.8rem;
    color: #d69e2e;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lawyer-full-name {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
    line-height: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-highlight {
    color: #d69e2e;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Blocks Styling */
.hero-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d69e2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.block-number {
    color: #d69e2e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.block-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.block-description {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-contact-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.contact-item i {
    color: #d69e2e;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f7fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credential-item i {
    color: #d69e2e;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.credential-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: #4a5568;
}

.about-image {
    text-align: center;
}

.lawyer-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d, #d69e2e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lawyer-photo i {
    font-size: 4rem;
    color: white;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d69e2e;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #d69e2e;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #d69e2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.experience-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d69e2e;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.experience-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.experience-item p {
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f7fafc;
}

.contact-notice {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem auto 3rem;
    max-width: 900px;
    border-left: 4px solid #d69e2e;
}

.contact-notice h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-notice p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-notice .privacy-text {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item-large i {
    color: #d69e2e;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item-large h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-item-large p {
    color: #4a5568;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d69e2e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d69e2e;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d69e2e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #d69e2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #b7791f;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #e2e8f0;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a365d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Hero Animation Adjustments for Mobile */
    .justice-element {
        font-size: 1.2rem !important;
        opacity: 0.6 !important;
    }

    .hero-title-animated {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .btn-enhanced:hover {
        transform: none;
    }

    .hero-image-animated img {
        animation: none;
    }

    /* Mobile adjustments for lawyer name */
    .lawyer-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .lawyer-full-name {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    /* Reduce animation intensity on mobile for better performance */
    .hero-lawyer-animated .lawyer-title {
        animation: none;
        color: #d69e2e;
    }

    .hero-lawyer-animated .lawyer-full-name {
        animation: slideInLeft 1s ease-out;
        animation-delay: 0.8s;
        animation-fill-mode: both;
    }
}

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

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

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

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

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

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: #d69e2e;
    }
    51%, 100% {
        border-color: transparent;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dramaticEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
        text-shadow: 0 0 20px rgba(214, 158, 46, 0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.1);
        text-shadow: 0 0 25px rgba(214, 158, 46, 0.6);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 15px rgba(214, 158, 46, 0.3);
    }
}

@keyframes titleGlow {
    0% {
        color: #d69e2e;
        text-shadow: 0 0 5px rgba(214, 158, 46, 0.5);
    }
    50% {
        color: #f6d55c;
        text-shadow: 0 0 20px rgba(214, 158, 46, 0.8), 0 0 30px rgba(214, 158, 46, 0.4);
    }
    100% {
        color: #d69e2e;
        text-shadow: 0 0 5px rgba(214, 158, 46, 0.5);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Animation Classes */
.hero-lawyer-animated {
    animation: dramaticEntrance 1.5s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-lawyer-animated .lawyer-title {
    animation: titleGlow 3s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-lawyer-animated .lawyer-full-name {
    animation: dramaticEntrance 1.8s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-title-animated {
    overflow: hidden;
    border-right: 3px solid #d69e2e;
    animation: blink 1s infinite;
    animation-delay: 1.8s;
    animation-fill-mode: both;
}

.hero-title-animated .hero-highlight {
    animation: fadeIn 1s ease-in;
    animation-delay: 4.5s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-description-animated {
    animation: slideInLeft 1s ease-out;
    animation-delay: 5s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-buttons-animated {
    animation: fadeInUp 1s ease-out;
    animation-delay: 5.5s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-contact-animated {
    animation: slideInLeft 1s ease-out;
    animation-delay: 6s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-image-animated {
    animation: slideInRight 1.2s ease-out;
    animation-delay: 1s;
    animation-fill-mode: both;
    opacity: 0;
}

.hero-image-animated img {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Enhanced Button Animations */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 70px;
}

/* Justice-themed Floating Elements */
.hero-justice-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.justice-element {
    position: absolute;
    color: rgba(214, 158, 46, 0.3);
    font-size: 2rem;
    animation: justiceFloat linear infinite;
}

.justice-element i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Scales of Justice Animation */
.scale-justice {
    animation: scalesFloat 12s ease-in-out infinite;
}

.scale-justice:nth-child(1) {
    left: 15%;
    top: 20%;
    font-size: 2.5rem;
    color: rgba(214, 158, 46, 0.4);
    animation-delay: 0s;
}

.scale-justice:nth-child(6) {
    left: 80%;
    top: 60%;
    font-size: 2rem;
    color: rgba(214, 158, 46, 0.25);
    animation-delay: 6s;
}

/* Gavel Animation */
.gavel {
    animation: gavelRotate 8s ease-in-out infinite;
}

.gavel:nth-child(2) {
    left: 70%;
    top: 15%;
    font-size: 1.8rem;
    color: rgba(214, 158, 46, 0.35);
    animation-delay: 2s;
}

.gavel:nth-child(10) {
    left: 25%;
    top: 70%;
    font-size: 2.2rem;
    color: rgba(214, 158, 46, 0.3);
    animation-delay: 4s;
}

/* Law Book Animation */
.law-book {
    left: 10%;
    top: 50%;
    font-size: 2rem;
    color: rgba(214, 158, 46, 0.28);
    animation: bookFloat 15s ease-in-out infinite;
    animation-delay: 1s;
}

/* Shield Animation */
.shield {
    left: 85%;
    top: 30%;
    font-size: 2.3rem;
    color: rgba(214, 158, 46, 0.35);
    animation: shieldPulse 10s ease-in-out infinite;
    animation-delay: 3s;
}

/* Paragraph Symbol */
.paragraph {
    left: 60%;
    top: 80%;
    font-size: 1.5rem;
    color: rgba(214, 158, 46, 0.25);
    animation: paragraphDrift 14s linear infinite;
    animation-delay: 5s;
}

/* Legal Document */
.legal-doc {
    left: 40%;
    top: 10%;
    font-size: 1.8rem;
    color: rgba(214, 158, 46, 0.3);
    animation: documentSway 11s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* University/Court Building */
.university {
    left: 5%;
    top: 75%;
    font-size: 2.4rem;
    color: rgba(214, 158, 46, 0.4);
    animation: buildingStand 16s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Certificate */
.certificate {
    left: 90%;
    top: 75%;
    font-size: 1.7rem;
    color: rgba(214, 158, 46, 0.32);
    animation: certificateFloat 13s ease-in-out infinite;
    animation-delay: 4.5s;
}

/* Justice Animation Keyframes */
@keyframes scalesFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.6;
    }
}

@keyframes gavelRotate {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
        opacity: 0.35;
    }
    50% {
        transform: rotate(15deg) translateY(-20px);
        opacity: 0.7;
    }
}

@keyframes bookFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.28;
    }
    33% {
        transform: translateX(10px) translateY(-15px) rotate(2deg);
        opacity: 0.5;
    }
    66% {
        transform: translateX(-5px) translateY(-25px) rotate(-1deg);
        opacity: 0.7;
    }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.35;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes paragraphDrift {
    0% {
        transform: translateX(0px) translateY(0px);
        opacity: 0.25;
    }
    50% {
        transform: translateX(30px) translateY(-40px);
        opacity: 0.6;
    }
    100% {
        transform: translateX(60px) translateY(0px);
        opacity: 0.25;
    }
}

@keyframes documentSway {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
        opacity: 0.3;
    }
    25% {
        transform: rotate(3deg) translateY(-10px);
        opacity: 0.5;
    }
    75% {
        transform: rotate(-3deg) translateY(-15px);
        opacity: 0.7;
    }
}

@keyframes buildingStand {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

@keyframes certificateFloat {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
        opacity: 0.32;
    }
    50% {
        transform: rotate(10deg) translateY(-18px);
        opacity: 0.7;
    }
}

