/* CSS/home.css */

/* --- Variables --- */
:root {
    --primary-green: #1a5f2a;
    --dark-green: #11401c;
    --light-green: #a3d977;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f7f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --award-green: #43B143;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    background-color: var(--primary-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.main-nav a.active {
    border-bottom: 2px solid var(--light-green);
}

.main-nav a:hover {
    color: var(--light-green);
}

/* =========================================
   MOBILE MENU BUTTON - ORIGINAL
   ========================================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    background-image: url('../MetroPlogo/SSC.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    min-height: 450px;
    background-color: #2c3e50;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--light-green);
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-green {
    color: var(--light-green);
}

.hero-desc {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-green);
    color: var(--primary-green);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #8bc763;
}

/* --- Features Bar --- */
.features-bar {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
}

.features-container {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.feature-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.feature-item:not(:first-child) {
    padding-left: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
}

/* --- Main Content Area --- */
.main-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 30px 15px 50px 15px;
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--primary-green);
}

.view-all {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: bold;
}

.section-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* --- SERVICE GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* =========================================
   AWARDS SECTION (2-Column, Portrait Cards)
   ========================================= */
.awards-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.awards-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
    max-width: 800px;
}

.info-box {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid var(--award-green);
    box-shadow: 0 8px 30px rgba(67, 177, 67, 0.12);
    display: flex;
    flex-direction: column;
    height: 480px;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #e8f5e9;
    cursor: pointer;
}

.info-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.info-box::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.info-box:hover::after {
    border-color: rgba(255, 255, 255, 0.25);
}

.info-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(67, 177, 67, 0.3);
    border-color: #2f8f2f;
}

.info-overlay {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.info-content {
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover .info-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-8px);
}

.info-box h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(to right, #79C679, #43B143);
    border-radius: 2px;
}

.view-details {
    display: inline-block;
    margin-top: 8px;
    color: #79C679;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.info-box:hover .view-details {
    color: #a8d5a8;
    transform: translateX(8px);
    letter-spacing: 2px;
}

/* =========================================
   MODAL - ENHANCED
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeIn 0.4s ease;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f5faf5);
    border-radius: 28px;
    max-width: 1200px;
    width: 95%;
    max-height: 92vh;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(67, 177, 67, 0.4);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.5);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close:hover {
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 50, 50, 0.8);
    border-color: #ff6666;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 550px;
}

.modal-image-container {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    min-height: 450px;
    border-right: 4px solid #43B143;
    position: relative;
    overflow: hidden;
}

.modal-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(67, 177, 67, 0.1), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(67, 177, 67, 0.05), transparent 40%);
    pointer-events: none;
}

#modalImage {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
    animation: fadeIn 0.6s ease;
    border-radius: 8px;
}

.modal-text {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

#modalTitle {
    color: #1a4a1a;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

#modalTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #43B143, #79C679);
    border-radius: 3px;
}

#modalDescription {
    color: #2a3a2a;
    font-size: 19px;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: 400;
}

/* --- Updates Sidebar --- */
.updates-sidebar {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
}

.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.updates-header h3 {
    font-size: 16px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.update-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e8f5e9;
    color: var(--primary-green);
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 50px;
    text-align: center;
}

.update-date .month {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.update-date .day {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.update-date .year {
    font-size: 9px;
}

.update-content h4 {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.update-content p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Holiday Notice */
.holiday-notice {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #ff4d4d;
    position: relative;
    overflow: hidden;
}

.holiday-icon {
    color: var(--primary-green);
    font-size: 24px;
}

.holiday-content h4 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.holiday-content p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.holiday-date {
    display: inline-block;
    background-color: #ff4d4d;
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.thanks {
    font-style: italic;
    color: var(--primary-green) !important;
    font-weight: bold;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact {
    display: flex;
    gap: 25px;
}

.footer-contact a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--light-green);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
}

.footer-tagline p {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    color: var(--light-green);
}

/* =========================================
   SPARKLE ANIMATION FOR SECTION HEADINGS
   ========================================= */
.section h2::before {
    content: '✦';
    color: #43B143;
    margin-right: 15px;
    font-size: 36px;
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(67, 177, 67, 0.3);
    position: relative;
    top: 2px;
}

@keyframes sparkle {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 20px rgba(67, 177, 67, 0.3);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1) rotate(45deg);
        text-shadow: 0 0 30px rgba(67, 177, 67, 0.5);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3) rotate(90deg);
        text-shadow: 0 0 40px rgba(67, 177, 67, 0.7);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.1) rotate(135deg);
        text-shadow: 0 0 30px rgba(67, 177, 67, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
        text-shadow: 0 0 20px rgba(67, 177, 67, 0.3);
    }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .features-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .feature-item {
        flex: 1 1 45%;
        border-right: none !important;
        padding: 10px 0 !important;
        justify-content: center;
    }

    .awards-box {
        max-width: 100%;
    }

    .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-image-container {
        min-height: 300px;
        padding: 30px;
        border-right: none;
        border-bottom: 4px solid #43B143;
    }

    #modalTitle {
        font-size: 28px;
    }

    #modalDescription {
        font-size: 16px;
    }
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 768px) {

    /* Header */
    .header-container {
        flex-wrap: wrap;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }

    /* Mobile nav — original dropdown style */
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }

    .main-nav.active {
        display: block;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    /* Features */
    .features-container {
        margin-top: 15px;
        padding: 10px 20px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .feature-item {
        flex: 1 1 100%;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 4px !important;
    }

    .feature-item:first-child {
        padding-top: 4px !important;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-top: 1px;
    }

    .feature-text {
        flex: 1;
        min-height: 42px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .feature-text h4 {
        font-size: 14px;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .feature-text p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-container {
        flex-direction: column;
    }

    /* Awards */
    .awards-box {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .info-box {
        height: 420px;
    }

    /* Modal */
    .modal-content {
        border-radius: 18px;
        max-height: 95vh;
    }

    .close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 32px;
    }

    .modal-text {
        padding: 30px 25px;
    }

    #modalTitle {
        font-size: 22px;
        padding-bottom: 15px;
    }

    #modalDescription {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* =========================================
   SERVICES TEXT (single block)
   ========================================= */
.services-text {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 25px 30px;
    border-left: 5px solid var(--primary-green);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.services-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: justify;
}

.services-text p:last-child {
    margin-bottom: 0;
}

.services-text p b {
    color: var(--primary-green);
    font-weight: 700;
}

/* =========================================
   SERVICE TEXT CARDS (3 Cards)
   ========================================= */
.service-text-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px 25px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-text-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 95, 42, 0.15);
    border-left-color: var(--award-green);
    background: rgba(255, 255, 255, 0.85);
}

.service-text-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(26, 95, 42, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-text-card:hover .service-text-icon {
    background-color: var(--award-green);
    transform: scale(1.1) rotate(-5deg);
}

.service-text-card h3 {
    font-size: 19px;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: -0.3px;
}

.service-text-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(to right, var(--award-green), var(--light-green));
    border-radius: 2px;
}

.service-text-card p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: justify;
}

.service-text-card p b {
    color: var(--primary-green);
    font-weight: 700;
}

/* =========================================
   SILENT PROTECTION
   ========================================= */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

img {
    -webkit-user-drag: none;
    pointer-events: auto;
    user-select: none;
}

body {
    cursor: default;
}

a, button, [onclick] {
    cursor: pointer;
}

::selection {
    background: transparent;
}
::-moz-selection {
    background: transparent;
}

@media print {
    body * {
        display: none !important;
        visibility: hidden !important;
    }

    html, body {
        background: white !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}