/* Book an Appointment Button Animation */
.btn-gold.book-animate {
    position: relative;
    overflow: hidden;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    z-index: 1;
}
.btn-gold.book-animate::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(.36,.07,.19,.97), height 0.4s cubic-bezier(.36,.07,.19,.97);
    z-index: -1;
}
.btn-gold.book-animate:hover::before {
    width: 250%;
    height: 600%;
}
.btn-gold.book-animate:hover {
    color: #b71c1c;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.18);
    background: linear-gradient(90deg, #FFD700 60%, #FFB300 100%);
}
/* Urgent Animated Call Now Button */
@keyframes callnow-urgent {
    0%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 4px 16px rgba(255, 0, 0, 0.12); }
    10% { transform: scale(1.08) rotate(-2deg); box-shadow: 0 6px 24px rgba(255, 0, 0, 0.18); }
    20% { transform: scale(1.12) rotate(2deg); }
    30% { transform: scale(1.08) rotate(-2deg); }
    40% { transform: scale(1.12) rotate(2deg); }
    50% { transform: scale(1.08) rotate(-2deg); }
    60% { transform: scale(1.12) rotate(2deg); }
    70% { transform: scale(1.08) rotate(-2deg); }
    80% { transform: scale(1.04) rotate(1deg); }
    90% { transform: scale(1.02) rotate(-1deg); }
}
.btn-gold.callnow-animate {
    animation: callnow-urgent 1.2s infinite cubic-bezier(.36,.07,.19,.97);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.12);
    transition: box-shadow 0.3s, transform 0.2s;
    will-change: transform, box-shadow;
}
.btn-gold.callnow-animate:hover {
    animation-play-state: paused;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.22);
    transform: scale(1.08);
}
/* Animated Call Now Button */
@keyframes callnow-bounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-8px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-4px); }
    80% { transform: translateY(0); }
}

.btn-gold.callnow-animate {
    animation: callnow-bounce 1.2s infinite;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
    transition: box-shadow 0.3s;
}
.btn-gold.callnow-animate:hover {
    animation-play-state: paused;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.25);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tai+Heritage+Pro:wght@400;700&display=swap');

:root {
    --gold-1: #FFD96C;
    --gold-2: #d6a437;
    --gold-3: #C39500;
    --ink: #0a1a1f;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(10, 26, 31, .08);
}

/* Reset and ensure proper sizing */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    /* Base font size */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Ensure headings have proper sizes */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* Ensure paragraphs and text have readable sizes */
p {
    font-size: 1rem;
    line-height: 1.6;
}

li {
    font-size: 1rem;
    line-height: 1.6;
}

span {
    font-size: inherit;
}

/* Prevent any unwanted scaling or zoom */
body {
    transform: none !important;
    zoom: 1 !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
}

/* Ensure all text elements have minimum readable sizes */
.navbar-brand {
    font-size: 1.25rem !important;
}

.nav-link {
    font-size: 1rem !important;
}

.btn-gold {
    font-size: 0.95rem !important;
}

.hero-list li {
    font-size: 0.95rem !important;
}

.social-icons-hero p {
    font-size: 1rem !important;
}

.font-tai {
    font-family: "Tai Heritage Pro", serif;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: #fff;
    transition: box-shadow .2s ease, background-color .2s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.navbar-brand {
    font-size: 1.25rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
}

.btn-gold {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-3), var(--gold-1));
    color: #000;
    font-weight: 700;
    border: none;
    padding: 13px 27px;
    font-size: 0.95rem;
}

.bg-glod {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-3), var(--gold-1));
    padding: 20px 0;
}

.social-icons-hero p {
    font-weight: 700;
    font-size: 1rem;
}

.btn-gold:hover {
    filter: brightness(.97);
    color: #000;
}

.rounded-xl {
    border-radius: var(--radius);
}

.shadow-soft {
    box-shadow: var(--shadow);
}

/* Section spacing */
section {
    padding: clamp(48px, 7vw, 96px) 0;
}

/* Hero */
.hero-img-wrap img {
    max-width: 100%;
    height: auto;
}

.hero-list li {
    margin-bottom: .35rem;
    font-size: 0.95rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.4;
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
}

p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
}

/* Video */
.video-wrapper {
    margin: 0 auto;
}

.video-wrapper .thumb {
    border-radius: 20px;
}

.play-btn {
    position: absolute;
    inset: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #000;
    font-size: 2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

/* Gold cards */
.gold-card {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    color: #000;
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

/* Strengths */
.strengths-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    margin-top: 100px;
}

.strengths-card .avatar {
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    margin-top: -100px;
    max-width: 200px;
    height: auto;
}

.highlight {
    color: #e6a92b;
    font-weight: 800;
}

/* Services (tabs) */
.service-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.service-tab {
    min-width: 180px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    background: #fff;
    transition: all .2s ease;
    font-size: 0.9rem;
}

.service-tab img {
    height: 40px;
    display: block;
    margin: 0 auto 6px;
}

.service-tab.active {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    border-color: transparent;
    color: #000;
}

.service-content {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.service-content.active {
    display: block;
}

.service-content img.media {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-text {
    padding: 24px;
}

.service-text h4 {
    margin-bottom: 1rem;
}

.service-text p {
    margin-bottom: 1rem;
}

.service-text ul {
    columns: 2;
    margin-top: .5rem;
    padding-left: 1.5rem;
}

.service-text li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Awards */
.awards-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    max-width: 940px;
    margin: 0 auto;
}

.awards-card ul {
    margin: 0;
    padding-left: 20px;
}

.awards-card li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Gallery */
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    width: 260px;
    height: 175px;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#friendships img {
    border-radius: 12px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#friendships img:hover {
    transform: scale(1.02);
}




/* Fullscreen Modal */
.modal-fullscreen .modal-content {
    background: rgba(0, 0, 0, 0.95) !important;
}

#imageModal .modal-body {
    padding: 0;
}

#imageModal img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

#prevBtn,
#nextBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#prevBtn:hover,
#nextBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Social bar */
.social-bar {
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    padding: 18px 0;
    text-align: center;
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 1rem;
}

.social-icons a {
    font-size: 28px;
    color: #000;
    margin: 0 10px;
}

.footer {
    color: #64748b;
    padding: 28px 0;
}

.title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.interests-text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-image {
    position: relative;
    text-align: center;
}

.tech-image img {
    max-width: 100%;
    height: auto;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #0b1b2b;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.tech-list li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 50px auto;
    border: 1px solid var(--gold-3);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold-3);
    box-shadow: 0 0 0 3px rgba(195, 149, 0, 0.1);
    outline: none;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-3), var(--gold-1));
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 149, 0, 0.3);
}

/* Contact form responsive improvements */
@media (max-width: 767px) {
    .contact-form {
        margin: 30px 15px;
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .contact-form {
        margin: 20px 10px;
        padding: 16px;
        border-radius: 12px;
    }

    .contact-form .form-control {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 8px;
        font-size: 0.9rem;
    }
}

.company-logo {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.company-logo:hover {
    transform: translateY(-5px);
}

.carousel-indicators [data-bs-target] {
    background-color: gold;
}

.nav-item .active {
    color: var(--gold-3) !important;
    font-weight: 700;
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .service-content.active {
        display: flex;
        flex-wrap: wrap;
    }

    .service-content img.media {
        flex: 1 1 380px;
    }

    .service-text {
        flex: 1 1 380px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .service-content.active {
        display: flex;
        flex-wrap: wrap;
    }

    .service-content img.media {
        flex: 1 1 350px;
    }

    .service-text {
        flex: 1 1 350px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-gold {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .title {
        font-size: 2rem;
    }

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

    .service-tab {
        min-width: 150px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .service-tab img {
        height: 35px;
    }

    .gold-card {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .strengths-card {
        padding: 24px;
        margin-top: 80px;
    }

    .strengths-card .avatar {
        max-width: 180px;
        margin-top: -80px;
    }

    .contact-form {
        max-width: 500px;
        padding: 25px;
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-gold {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .title {
        font-size: 1.75rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    .service-tabs {
        gap: 8px;
        margin-bottom: 18px;
    }

    .service-tab {
        min-width: 120px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .service-tab img {
        height: 30px;
    }

    .service-text {
        padding: 20px;
    }

    .service-text ul {
        columns: 1;
        padding-left: 1.25rem;
    }

    .gold-card {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .strengths-card {
        padding: 20px;
        margin-top: 60px;
        border-radius: 16px;
    }

    .strengths-card .avatar {
        max-width: 150px;
        margin-top: -60px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .contact-form {
        max-width: 100%;
        margin: 30px auto;
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.95rem;
    }

    .company-logo {
        padding: 12px;
    }

    .company-logo img {
        max-width: 100px;
        max-height: 50px;
    }

    .tech-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .tech-list li img {
        width: 18px;
        height: 18px;
    }

    .awards-card {
        padding: 20px;
        border-radius: 16px;
    }

    .awards-card li {
        font-size: 0.9rem;
    }

    .social-bar {
        padding: 15px 0;
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 24px;
        margin: 0 8px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .btn-gold {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.5rem;
    }

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .hero-list li {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .service-tabs {
        gap: 6px;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: center;
    }

    .service-tab {
        min-width: 200px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .service-tab img {
        height: 28px;
    }

    .service-text {
        padding: 16px;
    }

    .service-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-text p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .service-text ul {
        columns: 1;
        padding-left: 1.25rem;
    }

    .service-text li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .gold-card {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    .strengths-card {
        padding: 16px;
        margin-top: 50px;
        border-radius: 14px;
    }

    .strengths-card .avatar {
        max-width: 120px;
        margin-top: -50px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .contact-form {
        max-width: 100%;
        margin: 20px auto;
        padding: 16px;
        border-radius: 12px;
    }

    .contact-form .form-control {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 8px;
        font-size: 0.9rem;
    }

    .company-logo {
        padding: 10px;
        border-radius: 10px;
    }

    .company-logo img {
        max-width: 80px;
        max-height: 40px;
    }

    .tech-list li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .tech-list li img {
        width: 16px;
        height: 16px;
    }

    .awards-card {
        padding: 16px;
        border-radius: 14px;
    }

    .awards-card li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .social-bar {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 6px;
    }

    .interests-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .interest-icon img {
        max-width: 40px;
        height: auto;
    }

    .bg-glod {
        padding: 15px 0;
    }

    .social-icons-hero p {
        font-size: 0.9rem;
    }

    /* Fix for very small screens */
    .row {
        margin-left: -7px;
        margin-right: -7px;
    }

    .col-12,
    .col-6,
    .col-4,
    .col-3 {
        padding-left: 7px;
        padding-right: 7px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 375px) {


    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.25rem;
    }

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

    .service-tab {
        min-width: 180px;
        font-size: 0.75rem;
    }

    .gold-card {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .contact-form {
        padding: 12px;
    }

    .contact-form .form-control {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 6px;
        font-size: 0.85rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {

    .connect-btn {
        display: block;
    }

    .navbar {
        padding: 0.25rem 0;
    }

    .hero-img-wrap img {
        max-height: 200px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    section {
        padding: 30px 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .service-tab img,
    .tech-list li img,
    .interest-icon img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {

    .navbar,
    .btn-gold,
    .play-btn,
    .social-bar,
    .contact-form {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3,
    h4 {
        page-break-after: avoid;
    }

    .gold-card,
    .strengths-card,
    .awards-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}