/* CSS Variables */
:root {
    --primary-color: #c62828;
    --primary-color-dark: #b71c1c;
    --primary-color-light: #ef5350;
    --secondary-color: #ffffff;
    --accent-color: #212121;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --info-color: #ce123b;
    --danger-color: #f44336;
    --purple-color: #9c27b0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

p {
    margin-bottom: 1rem;
}

ul {
    padding-left: 20px;
}

.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

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

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

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.875rem;
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    color: var(--accent-color);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(198, 40, 40, 0.1);
}

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

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

/* Mega Menu Styles */
.mega-menu {
    width: 100%;
    padding: 30px;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 10px;
}

.mega-menu ul li a {
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mega-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: rgba(198, 40, 40, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.mega-menu ul li a:hover::before {
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.95), rgba(183, 28, 28, 0.95)),
                url('/assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--secondary-color);
    padding: 120px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 254, 254, 0.1) 0%, transparent 50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1), rgba(198, 40, 40, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(198, 40, 40, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Test Cards */
.test-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    background-color: var(--secondary-color);
}

.test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.test-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.test-card:hover .card-img-top {
    transform: scale(1.05);
}

.test-card .card-body {
    padding: 25px;
}

.test-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.test-card .card-text {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.test-card .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Package Cards */
.package-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    background-color: var(--secondary-color);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.3);
}

.package-header {
    background: linear-gradient(135deg, var(--light-gray), #ffffff);
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.package-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.package-body {
    padding: 35px 25px;
}

.package-body ul {
    list-style: none;
    padding: 0;
}

.package-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
}

.package-body ul li:last-child {
    border-bottom: none;
}

.package-body ul li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.package-footer {
    padding: 25px;
    text-align: center;
    background-color: var(--light-gray);
}

/* Certification Cards */
.certification-card {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.certification-card img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.certification-card:hover img {
    transform: scale(1.1);
}

.certification-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Testimonial Cards */
.testimonial-card {
    padding: 35px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.author-info h5 {
    margin-bottom: 5px;
    color: var(--accent-color);
}

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

/* Contact Cards */
.contact-card {
    padding: 35px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Branch Cards */
.branch-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    background-color: var(--secondary-color);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.branch-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branch-header h4 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.badge {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.branch-body {
    padding: 25px;
}

.branch-body p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.branch-body i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.branch-footer {
    padding: 20px 25px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Service Category Cards */
.service-category-card {
    padding: 35px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-category-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.3);
}

.service-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    margin-bottom: 8px;
}

.service-list li a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.service-list li a:hover {
    color: var(--primary-color);
}

/* Service Items */
.service-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    background-color: var(--light-gray);
    transform: translateY(-5px);
}

.service-item a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
}

.service-item-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1), rgba(198, 40, 40, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.service-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Test Details Cards */
.test-details-card {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 30px;
}

.test-details-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.test-parameters {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.test-parameters h6 {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.test-parameters ul {
    list-style: none;
    padding: 0;
}

.test-parameters ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
}

.test-parameters ul li:last-child {
    border-bottom: none;
}

.test-parameters ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.test-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.test-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.test-info strong {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Rate List Table */
.rate-list-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.rate-list-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
}

.rate-list-table th {
    font-weight: 600;
    padding: 20px 15px;
    border: none;
    font-size: 1rem;
}

.rate-list-table td {
    padding: 18px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--medium-gray);
}

.rate-list-table tbody tr {
    transition: background-color 0.3s ease;
}

.rate-list-table tbody tr:hover {
    background-color: var(--light-gray);
}

/* Search and Filter */
.search-box {
    position: relative;
}

.search-box input {
    padding-left: 50px;
    border-radius: 50px;
    border: 2px solid var(--medium-gray);
    padding: 12px 20px 12px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
    outline: none;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.filter-box select {
    border-radius: 50px;
    border: 2px solid var(--medium-gray);
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
    outline: none;
}

/* Package Filter */
.package-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--medium-gray);
    background-color: var(--secondary-color);
    color: var(--dark-gray);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

/* Comparison Table */
.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
    font-weight: 600;
    padding: 15px;
    border: none;
}

.comparison-table td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--medium-gray);
}

/* Report Download Card */
.report-download-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

.report-download-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: var(--secondary-color);
    padding: 35px;
    text-align: center;
}

.report-download-card .card-header h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.report-download-card .card-body {
    padding: 40px;
}

.verification-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.form-check:hover {
    border-color: var(--primary-color);
    background-color: rgba(198, 40, 40, 0.05);
}

.form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 500;
}

.form-check-input:checked + .form-check-label::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

/* Status Check Card */
.status-check-card {
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background-color: var(--secondary-color);
}

.status-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    font-weight: 600;
    color: var(--accent-color);
}

.status-value {
    color: var(--primary-color);
    font-weight: 500;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: var(--warning-color);
    color: var(--secondary-color);
}

.status-badge.bg-success {
    background-color: var(--success-color);
}

.progress {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--medium-gray);
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transition: width 0.6s ease;
}

/* Delivery Option Cards */
.delivery-option-card {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.delivery-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.delivery-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.delivery-option-card:hover .delivery-icon {
    transform: scale(1.1) rotate(5deg);
}

.delivery-option-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.delivery-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.delivery-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

/* Price Info Card */
.price-info-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-section {
    margin-bottom: 30px;
}

.info-section h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.info-section ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
}

/* Mission & Vision Cards */
.mission-vision-card {
    padding: 35px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Value Cards */
.value-card {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1), rgba(198, 40, 40, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: var(--secondary-color);
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Quality Cards */
.quality-card {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Ethics Content */
.ethics-content {
    max-width: 800px;
    margin: 0 auto;
}

.ethics-points {
    margin-top: 40px;
}

.ethics-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.ethics-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.ethics-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Award Cards */
.award-card {
    padding: 25px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.award-card img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.award-card:hover img {
    transform: scale(1.1);
}

.award-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.award-card p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* Working Hours */
.working-hours {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.working-hours .table {
    margin-bottom: 0;
}

.working-hours .table td {
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.working-hours .table td:first-child {
    font-weight: 600;
    color: var(--accent-color);
}

/* FAQ Accordion */
.accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    box-shadow: none;
}

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

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-body {
    padding: 25px;
    background-color: var(--light-gray);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Indication Cards */
.indication-card {
    max-width: 800px;
    margin: 0 auto;
}

.indication-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.indication-item:hover {
    background-color: rgba(198, 40, 40, 0.1);
    transform: translateX(5px);
}

.indication-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.indication-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

/* Preparation Card */
.preparation-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.preparation-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.preparation-card ul {
    list-style: none;
    padding: 0;
}

.preparation-card ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.preparation-card ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Doctor Note Card */
.doctor-note-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--light-gray));
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.doctor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.doctor-header img {
    border: 3px solid var(--primary-color);
}

.doctor-info h5 {
    margin-bottom: 5px;
    color: var(--accent-color);
}

.doctor-content h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.doctor-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--medium-gray);
}

.doctor-signature p {
    margin-bottom: 5px;
}

/* Report Items */
.report-items {
    max-height: 400px;
    overflow-y: auto;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.report-item:hover {
    background-color: rgba(198, 40, 40, 0.1);
}

.report-info h6 {
    margin-bottom: 5px;
    color: var(--accent-color);
}

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

/* Technology Features */
.technology-features {
    margin-top: 30px;
}

.tech-feature {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.tech-feature:last-child {
    border-bottom: none;
}

.tech-feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Key Features */
.key-features {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.key-features h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.key-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Security Notice */
.security-notice {
    margin-top: 40px;
}

.security-notice .alert {
    border-radius: 12px;
    border: none;
    padding: 25px;
}

.security-notice h5 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.security-notice ul {
    list-style: none;
    padding: 0;
}

.security-notice ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.security-notice ul li i {
    color: var(--warning-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Statistics */
.stat-card {
    text-align: center;
    padding: 20px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Certification Detail Cards */
.certification-detail-card {
    display: flex;
    gap: 30px;
    padding: 35px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    align-items: center;
}

.cert-logo {
    flex-shrink: 0;
}

.cert-logo img {
    height: 150px;
    object-fit: contain;
}

.cert-content {
    flex: 1;
}

.cert-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cert-subtitle {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 20px;
}

.cert-features {
    list-style: none;
    padding: 0;
}

.cert-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.cert-features li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Quality Cards Extended */
.quality-card {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer address p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer address i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Floating Buttons */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float {
    right: 30px;
    background-color: #25d366;
}

.call-float {
    right: 100px;
    background-color: var(--primary-color);
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    border: none;
    padding: 25px;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border: none;
    padding: 20px 30px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid var(--medium-gray);
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 8px;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 20px;
}

.alert-warning {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning-color);
}

.alert-info {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--info-color);
}

.alert-success {
    background-color: rgba(175, 76, 97, 0.1);
    color: var(--success-color);
}

/* Pagination */
.pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 8px;
    color: var(--text-color);
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .mega-menu {
        padding: 20px;
    }
    
    .mega-menu .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .verification-options {
        flex-direction: column;
    }
    
    .form-check {
        width: 100%;
    }
    
    .indication-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ethics-point {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .doctor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .call-float {
        right: 70px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card,
    .test-card,
    .package-card,
    .service-category-card {
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .branch-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .branch-footer .btn {
        width: 100%;
    }
    
    .whatsapp-float,
    .call-float {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .call-float {
        right: 80px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .call-float,
    .btn {
        display: none !important;
    }
    
    .page-header {
        background: none !important;
        color: var(--text-color) !important;
        padding: 20px 0 !important;
    }
    
    .section {
        padding: 20px 0 !important;
    }
}