* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-green: #2E7D32;
    --secondary-green: #66BB6A;
    --white: #FFFFFF;
    --light-gray: #D3D3D3;
    --dark-gray: #1A1A1A;
    --text-gray: #333;
    --background-gray: #F5F5F5;
}

/* Page-Load Animation */
body {
    opacity: 0;
    animation: fadeInPage 1.5s ease-in-out forwards;
}

/* Header styling */
header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: fadeIn 1s ease-in-out;
    min-height: 120px;
}

.top-section {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white);
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 25px;
    font-size: 14px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
    font-size: 16px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding-top: 10px;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    flex-shrink: 0;
}

nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    font-size: 18px;
    text-align: center;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-green);
    background-color: var(--white);
    border-radius: 5px;
}

.search-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.search-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.search-container input {
    padding: 8px 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 14px;
    background-color: var(--white);
    color: var(--primary-green);
    width: 120px;
}

.search-container button {
    padding: 8px 12px;
    background-color: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: var(--light-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 5px;
}

.social-icons a:hover {
    color: var(--primary-green);
    background-color: var(--white);
    border-radius: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 150px 20px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/circuit.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.hero h1 span {
    color: var(--secondary-green);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--light-gray);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.3s forwards;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.content-left {
    width: 50%;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.6s forwards;
}

.content-left h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.content-left ul {
    list-style: none;
    padding: 0;
}

.content-left ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--light-gray);
}

.content-left ul li i {
    margin-right: 10px;
    color: var(--secondary-green);
}

.content-right {
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.9s forwards;
}

.content-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
}

.form-group label {
    width: 120px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.form-group input,
.form-group select {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid var(--light-gray);
    background: transparent;
    color: var(--dark-gray);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--secondary-green);
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: var(--light-gray);
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2366BB6A" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 10px center;
    background-size: 12px;
}

.form-btn {
    padding: 12px;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-btn:hover {
    background: linear-gradient(45deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.3s;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

.hero .btn:hover {
    background-color: var(--primary-green);
    transform: scale(1.05);
}

/* About Us Section */
.about-us {
    background: var(--background-gray);
    padding: 80px 20px;
    text-align: center;
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-image {
    width: 45%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    width: 55%;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out 0.3s forwards;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: 20px;
    color: var(--secondary-green);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text ul li i {
    color: var(--secondary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.about-text ul li .label {
    width: 120px;
    color: var(--dark-gray);
    font-weight: 700;
    flex-shrink: 0;
}

.about-text ul li .description {
    flex: 1;
    line-height: 1.5;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #eef2f5, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2e45;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.service-flip-card {
    perspective: 1000px;
    height: 400px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-flip-card.active .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-card-front {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flip-card-back {
    background: #1a2e45;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 2px solid #27ae60;
}

.flip-card-front h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a2e45;
    margin: 15px 0;
    padding: 0 10px;
}

.service-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.service-content {
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.service-flip-card.active .service-icon {
    opacity: 1;
    transform: scale(1);
}

.service-flip-card.active .service-content {
    opacity: 1;
    transform: translateY(0);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

.learn-more {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #27ae60;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-more:hover {
    background: #219150;
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f9fafb;
    padding: 80px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
}

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

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a2e45;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, #ffffff, #eef2f5);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
}

.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 340px;
    margin: 0 15px;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 10px rgba(39, 174, 96, 0.2);
    border: 2px solid #27ae60;
}

.student-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #27ae60;
    transition: transform 0.3s ease;
}

.student-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card:hover .student-image {
    transform: scale(1.1);
}

.quote-icon {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.1);
}

.testimonial-card p {
    font-size: 15px;
    color: #4b5e7a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.client-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a2e45;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 13px;
    color: #6b7280;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #27ae60;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    background: #219150;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

/* Call-to-Action Section */
.cta {
    background: linear-gradient(135deg, #27ae60, #1a2e45);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    pointer-events: none;
    animation: shimmer 6s infinite linear;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 18px;
    color: #e6f0fa;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
    background: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #e6f0fa;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Footer Styling */
.footer {
    background: var(--dark-gray);
    color: var(--light-gray);
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-brand h3.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0;
}

.footer-links ul li a, .footer-contact ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover, .footer-contact ul li a:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--secondary-green);
    font-size: 16px;
}

.footer .social-icons {
    display: flex;
    gap: 15px;
    opacity: 0;
}

.footer .social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--secondary-green);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-gray);
    opacity: 0;
}

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

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.active {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in.active {
    animation: slideIn 0.8s ease forwards;
}

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

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px;
        min-height: auto;
    }
    .top-section {
        justify-content: center;
        padding-bottom: 10px;
    }
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .main-content {
        flex-direction: column;
        padding-top: 0;
    }
    .logo {
        margin-bottom: 15px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    .search-social {
        align-items: center;
        width: 100%;
    }
    .search-container {
        width: 100%;
        margin-bottom: 15px;
    }
    .search-container input {
        width: 70%;
    }
    .search-container button {
        padding: 8px 12px;
    }
    .social-icons {
        justify-content: center;
    }
    .hero {
        padding: 100px 20px;
        margin-top: 200px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .content-left, .content-right {
        width: 100%;
        text-align: center;
    }
    .content-left h3, .content-right h3 {
        font-size: 24px;
    }
    .content-left p {
        font-size: 16px;
    }
    .content-left ul li {
        font-size: 14px;
    }
    .contact-form {
        padding: 20px;
    }
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .form-group label {
        width: auto;
    }
    .form-group input,
    .form-group select {
        font-size: 14px;
        width: 100%;
    }
    .form-btn {
        font-size: 14px;
        padding: 10px;
    }
    .hero .btn {
        padding: 10px 20px;
        margin: 5px;
    }
    .about-us-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-image, .about-text {
        width: 100%;
        text-align: center;
    }
    .about-image img {
        height: 300px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .about-text h3 {
        font-size: 18px;
    }
    .about-text p, .about-text ul li {
        font-size: 14px;
    }
    .about-text ul li {
        align-items: flex-start;
    }
    .about-text ul li .label {
        width: 100px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 30px;
    }
    .footer-links ul li a:hover, .footer-contact ul li a:hover {
        transform: none;
    }
    .footer .social-icons {
        justify-content: center;
    }
    .footer-contact ul li {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    .contact-info {
        font-size: 12px;
    }
    .contact-info i {
        font-size: 14px;
    }
    nav ul {
        font-size: 16px;
    }
    .search-container input,
    .search-container button {
        font-size: 12px;
    }
    .social-icons a {
        font-size: 18px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .content-left h3, .content-right h3 {
        font-size: 20px;
    }
    .content-left p {
        font-size: 14px;
    }
    .content-left ul li {
        font-size: 12px;
    }
    .contact-form {
        padding: 15px;
    }
    .about-text h2 {
        font-size: 24px;
    }
    .about-text h3 {
        font-size: 16px;
    }
    .about-image img {
        height: 250px;
    }
    .about-text ul li .label {
        width: 80px;
    }
    .footer-brand h3.footer-logo {
        font-size: 24px;
    }
    .footer-column h4 {
        font-size: 18px;
    }
    .footer-links ul li, .footer-contact ul li {
        font-size: 14px;
    }
    .footer .social-icons a {
        font-size: 18px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}

/*
     FILE ARCHIVED ON 14:20:35 Jul 13, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:03:39 Apr 08, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 0.372
  captures_list: 0.43
  exclusion.robots: 0.018
  exclusion.robots.policy: 0.012
  esindex: 0.009
  cdx.remote: 85.289
  LoadShardBlock: 56.674 (3)
  PetaboxLoader3.datanode: 156.991 (5)
  load_resource: 249.766
  PetaboxLoader3.resolve: 79.775
  loaddict: 158.099
*/