/* ==========================================================================
   Shivay Prints & Associates - Custom Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary-color: #de0202;
    --primary-hover: #b80202;
    --primary-light: rgba(222, 2, 2, 0.1);
    --secondary-color: #111111;
    --dark-color: #1c1c1c;
    --body-color: #555555;
    --bg-light: #fcfcfc;
    --bg-dark-accent: #151515;
    --border-color: #eaeaea;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-body);
    color: var(--body-color);
    background-color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* --- Utilities --- */
.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background-color: var(--bg-light);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.btn-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 2, 2, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 2, 2, 0.3);
}

/* --- Section Titles --- */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-start h2::after {
    left: 0;
    transform: none;
}

.section-title p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.section-title.text-start p {
    margin: 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* --- Topbar --- */
.topbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.topbar a {
    color: var(--body-color);
}

.topbar a:hover {
    color: var(--primary-color);
}

.topbar-contact i {
    color: var(--primary-color);
    margin-right: 6px;
}

.topbar-social a {
    margin-left: 15px;
    font-size: 14px;
}

/* --- Navbar --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand img {
    max-height: 55px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 25px 15px !important;
    color: var(--secondary-color);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

/* --- Dropdown Styling --- */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 0;
}

.navbar-nav .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 20px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* ==========================================================================
   Hero Section with Background Video
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    z-index: -50;
}

.hero-content {
    z-index: 10;
    color: #ffffff;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
}

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */
.cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 35px 0;
}

.cta-section h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.cta-section .btn-cta {
    background-color: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
}

.cta-section .btn-cta:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Achievements & About Us
   ========================================================================== */
.about-section {
    position: relative;
}

.counter-grid {
    margin-top: 30px;
}

.counter-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    border-bottom: 3px solid var(--border-color);
    transition: var(--transition);
}

.counter-card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.counter-card .icon-box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.counter-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.counter-card p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
}

.about-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.about-img-box img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-img-box:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-card .service-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(222, 2, 2, 0.2);
}

.service-info {
    padding: 30px 25px;
}

.service-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 14px;
    color: var(--body-color);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.why-choose-section h2 {
    color: #ffffff;
}

.why-choose-section p {
    color: rgba(255,255,255,0.7);
}

.why-card {
    padding: 20px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.03);
    transition: var(--transition);
    height: 100%;
    border-left: 3px solid transparent;
}

.why-card:hover {
    background-color: rgba(255,255,255,0.06);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.why-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 13.5px;
    margin-bottom: 0;
    line-height: 1.6;
}

.why-video-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    height: 100%;
    min-height: 350px;
}

.why-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.play-btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #ffffff;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(222, 2, 2, 0.5);
    animation: pulsePlay 1.6s infinite;
}

.play-btn:hover {
    color: #ffffff;
    background-color: var(--primary-hover);
}

@keyframes pulsePlay {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(222, 2, 2, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(222, 2, 2, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(222, 2, 2, 0); }
}

/* ==========================================================================
   Product Gallery (Filterable portfolio with Lightbox)
   ========================================================================== */
.gallery-filters {
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background-color: transparent;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(-15px);
    transition: var(--transition);
}

.gallery-overlay p {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.gallery-icon:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* ==========================================================================
   Clients Section (Swiper carousel)
   ========================================================================== */
.client-logo-wrapper {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.client-logo-wrapper:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary-light);
}

.client-logo-wrapper img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    position: relative;
    margin: 15px 0;
}

.testimonial-card::after {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(222,2,2,0.05);
    pointer-events: none;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    color: var(--body-color);
    margin-bottom: 25px;
}

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

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-user-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-user-info span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-box {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 30px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 14.5px;
    margin-bottom: 0;
}

.contact-form-box {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px;
}

.contact-form-box .form-control {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form-box textarea.form-control {
    min-height: 130px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--secondary-color);
    color: #b0b0b0;
    padding-top: 80px;
}

.footer h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

.footer-widget-logo img {
    max-height: 60px;
    margin-bottom: 25px;
}

.footer-widget-logo p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links-list i {
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-contact-list li {
    display: flex;
    margin-bottom: 18px;
    font-size: 13.5px;
}

.footer-contact-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #b0b0b0;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

/* --- Tag Cloud --- */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.tag-cloud a {
    font-size: 12px;
    color: #b0b0b0;
    border: 1px solid #333333;
    padding: 6px 12px;
    margin: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* --- Social Icons --- */
.footer-social {
    padding: 30px 0;
    border-top: 1px solid #222222;
    margin-top: 60px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-social-icons li {
    margin: 0 10px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #222222;
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    transition: var(--transition);
}

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

/* --- Copyright --- */
.copyright {
    background-color: #0b0b0b;
    color: #888888;
    padding: 20px 0;
    font-size: 13px;
    border-top: 1px solid #1a1a1a;
}

.copyright-inner p {
    margin-bottom: 0;
}

/* ==========================================================================
   Sticky Mobile Footer (WhatsApp / Call)
   ========================================================================== */
.stick_footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 50px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.stick_footer .part1 {
    width: 50%;
    background-color: #25d366; /* WhatsApp Green */
    float: left;
    height: 100%;
    text-align: center;
}

.stick_footer .part2 {
    width: 50%;
    background-color: var(--primary-color);
    float: left;
    height: 100%;
    text-align: center;
}

.stick_footer a {
    color: #ffffff;
    display: block;
    line-height: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stick_footer a i {
    margin-right: 6px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }
    .navbar-nav .nav-link::before {
        display: none;
    }
    .hero-section {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .footer-widget-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    .topbar {
        display: none;
    }
    .hero-section {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .cta-section {
        text-align: center;
    }
    .cta-section .btn-cta {
        margin-top: 20px;
    }
    .counter-card {
        margin-bottom: 20px;
    }
    .testimonial-card {
        padding: 25px;
    }
    .testimonial-card::after {
        display: none;
    }
    .contact-form-box {
        padding: 25px;
        margin-top: 40px;
    }
    body {
        padding-bottom: 50px; /* Space for mobile sticky footer */
    }
    .stick_footer {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 22px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .gallery-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Floating Call Button (Right Edge)
   ========================================================================== */
.floating-call-btn {
    position: fixed;
    right: 0; /* Flush to the edge */
    top: 50%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0 6px 6px 0; /* Visually top-left and bottom-left when rotated 180deg */
    color: #ffffff !important;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
    border: none;
    
    /* Vertical Text Flow (Read bottom-to-top) */
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    
    /* Animations & Transitions */
    animation: blinkBlackToRed 2.5s infinite ease-in-out;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.floating-call-btn:hover {
    transform: translateY(-50%) rotate(180deg) scale(1.08);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.25);
}

.floating-call-btn i {
    font-size: 15px;
    transform: rotate(90deg); /* Rotate icon to align with vertical text */
    animation: phoneShake 0.8s infinite ease-in-out;
}

@keyframes blinkBlackToRed {
    0%, 100% {
        background-color: #111111; /* Sleek Black */
    }
    50% {
        background-color: #de0202; /* Primary Red */
    }
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(90deg) scale(1); }
    15% { transform: rotate(75deg) scale(1.1); }
    30% { transform: rotate(105deg) scale(1.1); }
    45% { transform: rotate(80deg) scale(1.1); }
    60% { transform: rotate(100deg) scale(1.1); }
    75% { transform: rotate(85deg) scale(1); }
    90% { transform: rotate(95deg) scale(1); }
}

/* Responsive adjustments for mobile screen sizes */
@media (max-width: 767.98px) {
    .floating-call-btn {
        padding: 18px 8px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Left Side Fixed Social Media Sidebar
   ========================================================================== */
.fixed-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}

.social-fix-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #de0202; /* Primary Red */
    color: #ffffff !important;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-fix-btn:last-child {
    border-bottom: none;
}

.social-fix-btn:hover {
    width: 56px;
    padding-left: 12px;
    background-color: #111111; /* Sleek Black on Hover */
}

/* ==========================================================================
   Bottom Left Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    left: 65px; /* Centered above the 140px Google rating image */
    bottom: 80px; /* Positioned above the Google rating image */
    width: 50px;
    height: 50px;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite ease-in-out;
}

.floating-whatsapp-btn:hover {
    animation: none; /* Pause animation on hover */
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hide Left Social Sidebar & WhatsApp float on mobile to respect the sticky footer */
@media (max-width: 767.98px) {
    .fixed-social-sidebar {
        display: none;
    }
    .floating-whatsapp-btn {
        display: none;
    }
}

/* ==========================================================================
   Dedicated About Us Page Styles
   ========================================================================== */

/* --- About Hero Banner --- */
.about-hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%), 
                url('../img/about-press.png') no-repeat center center / cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: var(--primary-color);
}

.about-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.about-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.about-hero .breadcrumb-item.active {
    color: #ffffff;
}

.about-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Who We Are Section --- */
.about-intro-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.about-intro-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-intro-img:hover img {
    transform: scale(1.03);
}

/* --- Mission Cards --- */
.mission-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary-color);
}

.mission-card .icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.mission-card:hover .icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

.mission-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.mission-card p {
    font-size: 14.5px;
    color: var(--body-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Genesis & Assets --- */
.genesis-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    height: 100%;
}

.genesis-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

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

.genesis-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-color);
    margin-bottom: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 991.98px) {
    .about-hero h1 {
        font-size: 38px;
    }
    .about-hero {
        padding: 70px 0;
    }
}

/* ==========================================================================
   Dedicated Printing Capability Page Styles
   ========================================================================== */

/* --- Capability Hero --- */
.capability-hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%), 
                url('../img/lithrone-press.png') no-repeat center center / cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.capability-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.capability-hero h1 span {
    color: var(--primary-color);
}

.capability-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.capability-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.capability-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.capability-hero .breadcrumb-item.active {
    color: #ffffff;
}

.capability-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Machinery Specs --- */
.machine-spec-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.machine-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-light);
}

.machine-spec-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.spec-table {
    width: 100%;
    margin-bottom: 0;
}

.spec-table td {
    padding: 10px 15px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table td.spec-name {
    font-weight: 700;
    color: var(--secondary-color);
    width: 40%;
}

.spec-table td.spec-val {
    color: var(--body-color);
}

/* Responsive adjustments for Capability page */
@media (max-width: 991.98px) {
    .capability-hero h1 {
        font-size: 38px;
    }
    .capability-hero {
        padding: 70px 0;
    }
}

.machine-spec-img {
    border-radius: 6px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.machine-spec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.machine-spec-img:hover img {
    transform: scale(1.04);
}

/* --- Services Hero --- */
.services-hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%), 
                url('../img/lithrone-press.png') no-repeat center center / cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.services-hero h1 span {
    color: var(--primary-color);
}

.services-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.services-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.services-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.services-hero .breadcrumb-item.active {
    color: #ffffff;
}

.services-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for Services page */
@media (max-width: 991.98px) {
    .services-hero h1 {
        font-size: 38px;
    }
    .services-hero {
        padding: 70px 0;
    }
}

/* Floating Google Rating (Bottom Left) */
.floating-google-rating {
    position: fixed;
    left: 20px; /* Attached to the left side */
    bottom: 20px; /* Attached to the bottom */
    z-index: 99999;
    transition: all 0.3s ease;
    display: inline-block;
    animation: jump-bounce 5s infinite ease-in-out;
}

.floating-google-rating img {
    width: 140px; /* Clean, premium sizing */
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: block;
    background-color: #ffffff;
    padding: 3px;
    transition: all 0.3s ease;
}

.floating-google-rating:hover {
    animation: none; /* Pause animation on hover */
    transform: translateY(-3px);
}

.floating-google-rating:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Hide on mobile to avoid cluttering small screens */
@media (max-width: 767.98px) {
    .floating-google-rating {
        display: none;
    }
}
/* Keyframe Animations for Floating Elements */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@keyframes jump-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-12px); /* Jump up */
    }
    20% {
        transform: translateY(2px); /* Squash land */
    }
    30% {
        transform: translateY(-5px); /* Bounce up slightly */
    }
    40% {
        transform: translateY(0); /* Return to flat */
    }
}
