:root {
    --bg-color: #ffffff;
    --text-color: #333;
    --heading-color: #111;
    --footer-bg-color: #1a1a2e;
    --accent-orange: #ec9941;
    --accent-blue: #00bfff;
    --light-gray: #f7f7f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
	 /*font-family: 'Montserrat', sans-serif;*/
	
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    color: #06253b;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

section {
    padding: 3.1rem 0;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -3.5rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    opacity: 1;
    visibility: visible;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.ink-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.ink-drop {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: drop-fall 1.5s cubic-bezier(0.6, 0.04, 0.98, 0.335) infinite;
}

.ink-blot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: url('#blot-filter');
    animation: spread-out 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation-delay: 0.5s;
}

.loader-text {
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 1px;
}

@keyframes drop-fall {
    0% {
        top: -20px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    40% {
        top: 45%;
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        top: 45%;
        opacity: 0;
    }
}

@keyframes spread-out {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    80% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(6);
        opacity: 0;
    }
}

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 230px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo img {
    width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

/* For pages with dark hero images */
.main-header:not(.scrolled) .nav-links a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-header:not(.scrolled) .menu-toggle {
    color: white;
}

/* The homepage has a light background, so its links are dark by default */
body:has(.hero) .main-header:not(.scrolled) .nav-links a {
    color: #000;
    text-shadow: none;
}
body:has(.hero) .main-header:not(.scrolled) .menu-toggle {
    color: var(--heading-color);
}
/* Homepage specific header padding */
body:has(.hero) .main-header {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-image: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
    transition: width 0.3s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--heading-color);
}

/* 4. Page-Specific Headers */
/* Common vibrant header for inner pages */
.page-header-vibrant {
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0;
}
.about-page .page-header-vibrant { background: url('../img/image2.jpg') no-repeat center center/cover; }
.contact-page .page-header-vibrant { background: url('../img/image4.jpg') no-repeat center center/cover; }
.products-page .page-header-vibrant { background: url('../img/image5.jpg') no-repeat center center/cover; }
.industries-page .page-header-vibrant { background: url('../img/image3.jpg') no-repeat center center/cover; }


.page-header-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(236, 153, 65, 0.9), rgba(0, 191, 255, 0.6));
	/*background: linear-gradient(45deg, rgb(255 131 0 / 80%), rgba(0, 191, 255, 0.7));*/
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-vibrant h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-header-vibrant p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Hero Section for Homepage */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-content {
    z-index: 2;
    position: relative;
    min-height: 350px;
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
}


.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.3rem); /* Adjusts size based on screen */
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
	margin-bottom: 5px;
}

@media (max-width: 768px) {
    
	
	.hero { height: auto; padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    /* Ensure the container has enough height to house the absolute slides */
    .hero-content { 
        text-align: center; 
       
        min-height: 400px; 
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Restore transition properties for mobile */
    .hero-slide { 
        position: absolute; 
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0; 
        display: block; /* Overwrite the previous display: none */
        transform: translateY(20px);
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
        pointer-events: none; /* Prevent non-active slides from blocking clicks */
		
    }

    /* Active slide state */
    .hero-slide.active { 
        opacity: 1; 
        transform: translateY(0);
        pointer-events: auto;
        position: relative; /* Allows the active slide to define the height of the container */
		height:400px;
    }
    
    /* Ensure other active elements don't stack weirdly */
    .hero-slide.active ~ .hero-slide {
        position: absolute;
    }
}

.hero-image-container {
    position: relative;
    z-index: -989;
    height: 450px;
}

.hero-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.hero-image-container img.active {
    opacity: 1;
    transform: scale(1);
}

/* 5. Homepage Sections */

/* Hero Button */
.hero .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-image: linear-gradient(90deg, #ec9941, var(--accent-blue));
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 56, 162, 0.4);
    border: none;
    cursor: pointer;
	margin:5px;
}
.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.5);
}

/* Animated Waves */
.animated-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 250px;
    z-index: 0;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    fill: rgba(15, 81, 151, 0.6);
	
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    fill: rgba(241, 137, 64, 0.5);
	
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    fill: rgba(0, 191, 255, 0.4);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Story Section */
#story {
    background-color: var(--light-gray);
    padding: 4rem 0 0.5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: center;
    position: relative;
}

.story-image-wrapper {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper img {
    width: 100%;
    display: block;
}

.story-content-wrapper {
    grid-column: 7 / 11;
    grid-row: 1 / 3;
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pre-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.story-content-wrapper h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content-wrapper p {
    color: #555;
    margin-bottom: 2rem;
}

.story-btn {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 5px;
}

.story-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.story-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.story-btn:hover::after {
    transform: scaleX(1);
}

.story-btn:hover i {
    transform: translateX(5px);
}


/* Expertise Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }




/* ==========================================================================
   KEY HIGHLIGHTS - 3/2 LAYOUT WITH ICON SLIDE & ZOOM
   ========================================================================== */
.highlights-fancy-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.highlight-card {
    position: relative;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    overflow: hidden; 
    transition: transform 0.4s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 3 / 2 Column Positioning Logic */
.highlight-card:nth-child(1),
.highlight-card:nth-child(2),
.highlight-card:nth-child(3) { grid-column: span 2; }
.highlight-card:nth-child(4) { grid-column: 2 / span 2; } 
.highlight-card:nth-child(5) { grid-column: 4 / span 2; }

/* Background Zooming Circle */
.card-bg-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .card-bg-shape {
    transform: scale(6);
}

/* SQUARE ICON BOX & SLIDE ANIMATION */
.icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 12px; /* Square shape with slight rounding */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden; /* Important to hide the icon as it slides out */
}

.icon-box i {
    font-size: 1.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Define the "Slide Left to Right Once" Keyframe */
@keyframes iconSlideOnce {
    0% { transform: translateX(0); opacity: 1; }
    45% { transform: translateX(40px); opacity: 0; } /* Disappear to the right */
    50% { transform: translateX(-40px); opacity: 0; } /* Teleport to the left */
    100% { transform: translateX(0); opacity: 1; } /* Slide back to center */
}

/* Trigger animation on card hover */
.highlight-card:hover .icon-box i {
    animation: iconSlideOnce 0.6s ease forwards;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

/* Card Gradients & Icon Colors */
.pharma-grad { background: linear-gradient(135deg, #0f5197, #1e3c72); }
.water-grad { background: linear-gradient(135deg, #f18940, #d35400); }
.flexo-grad { background: linear-gradient(135deg, #00bfff, #2980b9); }
.special-grad { background: linear-gradient(135deg, #16a085, #00b09b); }
.adhesive-grad { background: linear-gradient(135deg, #2c3e50, #4ca1af); }

.pharma-grad i { color: #0f5197; }
.water-grad i { color: #f18940; }
.flexo-grad i { color: #00bfff; }
.special-grad i { color: #16a085; }
.adhesive-grad i { color: #2c3e50; }

.highlight-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.3rem; font-family: 'Montserrat', sans-serif; }
.highlight-card p { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .highlights-fancy-grid { grid-template-columns: repeat(4, 1fr); }
    .highlight-card:nth-child(n) { grid-column: span 2; }
    .highlight-card:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 768px) {
    .highlights-fancy-grid { display: block; }
    .highlight-card { width: 100%; margin-bottom: 20px; }
}












.icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-box i {
    font-size: 1.8rem;
}

/* Matching Icon Colors */
.pharma-grad i { color: #1e3c72; }
.water-grad i { color: #e67e22; }
.flexo-grad i { color: #2980b9; }
.special-grad i { color: #16a085; }
.adhesive-grad i { color: #2c3e50; }


/* ==========================================================================
   FOOTER MENU STYLES
   ========================================================================== */
.footer-links a {
    display: inline-block;
    padding: 4px 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
    margin-top: 10px;
}

.footer-main {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 3rem;
}



/* Footer Navigation 2-Column Grid */
.nav-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Professional Contact Widget */
.footer-contact-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box-sm {
    width: 38px;
    height: 38px;
    background: rgba(236, 153, 65, 0.1); /* Subtle theme color background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box-sm {
    background: var(--accent-orange);
    color: #fff;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text small {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 2px;text-align: left;
}

.contact-text a, .contact-text p {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-orange) !important;
}


/* Specific hover color for WhatsApp item */
.contact-item:hover .fa-whatsapp {
    color: #fff; 
}

/* Ensure icons are centered within the box */
.icon-box-sm i {
    transition: color 0.3s ease;
}

/* Responsive fix for Footer Nav */
@media (max-width: 480px) {
    .nav-2-col {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 768px) {
    .highlights-fancy-grid {
        grid-template-columns: 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        margin: 10px auto;
    }
}

/* Collection Section */
#collection h2.section-title {
    margin-bottom: 1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.ink-card {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease-out;
}
.ink-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ink-card:hover .card-bg-img {
    transform: scale(1.1);
}

/* CORRECTED: Specific selector for homepage cards */
.ink-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    transform: translateY(calc(100% - 116px));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ink-card:hover .card-content {
    transform: translateY(0);
}

.card-info {
    flex-grow: 1;
}

/* CORRECTED: Specific selector for homepage cards */
.ink-card .card-content h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0 0 0.5rem 0;
}

/* CORRECTED: Specific selector for homepage cards */
.ink-card .card-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
}

.ink-card:hover .card-content p {
    opacity: 1;
    transform: translateY(0);
}

.card-btn {
    display: inline-block;
    background: #269eb9;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out 0.25s;
}
.ink-card:hover .card-btn {
    opacity: 1;
    transform: translateY(0);
}
.card-btn:hover {
    background: var(--accent-orange);
    color: white;
}

/* Gallery Section */
#gallery {
    background-color: var(--light-gray);
}

.gallery-grid {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease-out, filter 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(236, 153, 65, 0.8), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
}

.gallery-overlay i {
    font-size: 2.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease-out;
}

.gallery-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease-out;
    transition-delay: 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 85vh;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--bg-color);
    overflow: hidden;
}

.testimonials-scroller {
    max-width: 100%;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.testimonials-scroller:hover .testimonials-grid {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    width: 350px;
    flex-shrink: 0;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.1;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    border: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
}

.author-title {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* 6. About Page Sections */
.about-creative {
    position: relative;
}

.about-creative .background-swoosh {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 80%;
    max-width: 800px;
    z-index: 0;
    opacity: 0.1;
}

.about-grid-creative {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-creative img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-content-creative h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content-creative .pre-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.about-content-creative p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.experience-counter {
    margin-top: 2rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    border-left: 5px solid var(--accent-orange);
}

.experience-counter .count {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--heading-color);
}

.experience-counter p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

#why-choose-colorful {
    background-color: var(--light-gray);
}

.features-colorful-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card-colorful {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-colorful:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.feature-card-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card-2 {
    background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.feature-card-3 {
    background: linear-gradient(135deg, #d299c2 0%, #6ea3b7 100%);
}

.feature-card-4 {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
}

.feature-card-5 {
    background: linear-gradient(135deg, #88ddc2 0%, #cba9b4 100%);
}

.feature-card-6 {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.feature-icon-colorful {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card-colorful:hover .feature-icon-colorful {
    transform: scale(1.1);
}

.feature-card-colorful h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card-colorful p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card-3 h3,
.feature-card-3 p,
.feature-card-5 h3,
.feature-card-5 p {
    color: #fff;
}

.vision-mission-split {
    display: flex;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.split-vision,
.split-mission {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-vision {
    background-color:#205692;
    color: white;
}

.split-mission {
    background: #ee8b44;
    color: white;
}

.split-vision h3,
.split-mission h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.split-vision h3 i {
    color: var(--accent-orange);
}

.split-mission h3 i {
    color: #205692;
}

.split-vision p,
.split-mission p {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
}

/* 7. Products Page Sections */
/* THIS SECTION IS NOW OBSOLETE AND REPLACED BY V2 STYLES BELOW */
/*
#products-showcase {
    background-color: var(--light-gray);
    position: relative;
}
... etc
*/

/* 8. Industries Page Sections */
/* THIS SECTION IS NOW OBSOLETE AND REPLACED BY V2 STYLES BELOW */
/*
#industries-pro {
    background-color: var(--light-gray);
    position: relative;
}
... etc
*/

/* 9. Contact Page Sections */
#contact-creative {
    position: relative;
}
#contact-creative .background-swoosh {
    position: absolute;
    top: 5%;
    right: -15%;
    width: 70%;
    max-width: 700px;
    z-index: 0;
    opacity: 0.08;
    transform: rotate(15deg);
}
.contact-grid-creative {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.contact-info-panel {
    background: linear-gradient(45deg, #195294, #35b9c3);
    padding: 3rem;
    color: #a9a9b3;
    display: flex;
    flex-direction: column;
}
.contact-info-panel h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    width: 30px;
    text-align: center;
    margin-top: 5px;
}
.info-item-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: white;
}
.info-item-text p, .info-item-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-item-text a:hover {
    color: var(--accent-orange);
}
.contact-socials {
    margin-top: auto;
}
.contact-socials h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.contact-form-panel {
    padding: 3rem;
}
.contact-form-panel h3 {
    font-size: 2rem;
    margin-bottom: 0.1rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(236, 153, 65, 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form-panel .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-image: linear-gradient(90deg, var(--accent-orange), #d17c2a);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(236, 153, 65, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.contact-form-panel .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.5);
}

#map-section {
    padding-top: 0;
}
.map-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}
.map-wrapper:hover iframe {
    filter: grayscale(0);
}
.custom-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.custom-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-orange);
    animation: pulse 2s infinite;
    pointer-events: none;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* 10. Footer Styles */
.main-footer {
    background-color: var(--footer-bg-color);
    color: #a9a9b3;
    position: relative;
    padding-top: 1rem;
}
/* Homepage Footer Wave */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-100%);
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}
.footer-wave .shape-fill {
    fill: var(--footer-bg-color);
}

.footer-main {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-col .logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-col.about-col p {
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;text-align:left;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #a9a9b3;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    padding: 0;
}

.social-icons a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--accent-blue);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #444;
    background: #2a2a45;
    color: white;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent-orange);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    border: none;
    background: var(--accent-orange);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #d4822a;
}

.footer-bottom {
    background-color: #111122;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.dev-logo {
    text-decoration: none;
    color: #a9a9b3;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.dev-logo span {
    color: var(--accent-blue);
}

/* 11. Responsive Design */

/* NEW: Scroll Down Arrow */
.scroll-down-arrow {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998; /* Below header but above most content */
    width: 45px;
    height: 45px;
    background-image: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out, transform 0.4s ease-out;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-down-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    animation-play-state: paused;
}

.scroll-down-arrow i {
    color: white;
    font-size: 1.2rem;
}

.scroll-down-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}


@media (max-width: 992px) {
	
	
    /* Homepage */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
		
    }
    .hero h1 {
        font-size: 4rem;
    }
    .hero p {
        margin: 0 auto 2.5rem;
    }
    .hero-image-container {
        display: none;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
    .story-image-wrapper, .story-content-wrapper {
        grid-column: 1 / -1;
    }
    .story-content-wrapper {
        margin-top: -4rem;
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .gallery-grid {
        columns: 2;
    }
    .animated-waves {
        height: 10vh;
        min-height: 80px;
    }
    /* About Page */
    .about-grid-creative {
        grid-template-columns: 1fr;
    }
    .about-image-creative {
        order: -1;
        margin-bottom: 2rem;
    }
    .about-content-creative h2 {
        text-align: center;
    }
    .experience-counter {
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
    }
    .vision-mission-split {
        flex-direction: column;
    }
    .page-header-vibrant h1 {
        font-size: 3rem;
    }
    /* Industries Page */
    .industries-grid-pro {
        grid-template-columns: 1fr;
    }
    /* Contact Page */
    .contact-grid-creative {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
	
	body:has(.hero) .main-header:not(.scrolled) .nav-links a {
    color: #fff;
    text-shadow: none;
}
	
	
    h2 {
        font-size: 2.5rem;
    }
    section {
        padding: 5rem 0;
    }
    /* Header */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links a,
    .main-header:not(.scrolled) .nav-links a {
        color: #fff;
        text-shadow: none;
    }
    .nav-links.nav-active {
        transform: translateX(0%);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
		background: linear-gradient(135deg, #219ab7 20%, #ed9a40 100%);
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .main-header.scrolled .menu-toggle {
        color: var(--heading-color);
    }
    
    /* Page Headers */
    .page-header-vibrant {
        min-height: 400px;
        height: 60vh;
		
    }
    .page-header-vibrant h1 {
        font-size: 2.5rem;
    }
    .page-header-vibrant p {
        font-size: 1.1rem;
    }
    /* Homepage */
    .hero {
        text-align: center;
    }
    .hero h1 {
        font-size: clamp(1.3rem, 3vw, 1.25rem);
    }
    .hero-content {
        min-height: 250px;
    }
    .hero-slide {
        text-align: center;
		padding: 15px 20px
		
    }
    #story {
        padding: 4rem 0;
    }
    .story-content-wrapper {
        padding: 2rem;
    }
    .story-content-wrapper h3 {
        font-size: clamp(1.3rem, 3vw, 1.25rem);
    }
    .gallery-grid {
        columns: 1;
    }
    /* Products Page */
    .products-grid {
        grid-template-columns: 1fr;
    }
    /* Contact Page */
    .background-swoosh {
        display: none;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem;
    }
    /* Footer */
    .footer-main {
        padding: 2rem 0;
        text-align: center;
    }
    body:has(.footer-wave) .footer-main {
        padding: 6rem 0 2rem;
    }
    .newsletter-form,
    .social-icons {
        justify-content: center;
        max-width: 350px;
        margin: 0 auto;
    }
}


/* 12. Thank You Page Styles */
.thank-you-section {
    padding: 6rem 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.thank-you-icon {
    font-size: 5rem;
    color: #28a745; /* Success Green */
    margin-bottom: 1.5rem;
    line-height: 1;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.thank-you-content .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-image: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
    border: none;
    cursor: pointer;
}

.thank-you-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.5);
}




/* 13. NEW Products Page Styles (V2) */
/* 1. Set main product sections to full width (1/1 column) */
.products-showcase-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 3rem;
}

/* 2. Adjust Card Image Height for full-width layout */
.products-page .product-card-image-wrapper {
    height: auto; /* Taller image as seen in screenshot */
}

/* 3. New Sub-Grid for the 4 Columns of Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.benefit-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #06253b;
}



/* Adhesive Icon Color */
.icon-adhesive { background: linear-gradient(135deg, #2c3e50, #4ca1af); }

/* Ensure list items are compact and professional */
.benefit-col ul {
    list-style: none;
    padding: 0;
}

.benefit-col li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 1.2rem;
    position: relative;
    color: #555;
}

/* Matching the checkmark icon from your industry page */
.benefit-col li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 0.8rem;
}



/* 4. Responsive adjustments */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    .products-page .product-card-image-wrapper {
        height: 200px;
    }
}





.product-display-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-display-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.product-card-image-wrapper {
    position: relative;
    height: 240px;
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-display-card:hover .product-card-image-wrapper img {
    transform: scale(1.05);
}

.product-card-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.icon-pharma { background: linear-gradient(135deg, #66a6ff, #89f7fe); }
.icon-flexo { background: linear-gradient(135deg, #fda085, #f6d365); }
.icon-paper { background: linear-gradient(135deg, #5ee7df, #b490ca); }
.icon-specialty { background: linear-gradient(135deg, #f5576c, #f093fb); }

.product-card-content {
    padding: 2.5rem 1.5rem 1.5rem;
    flex-grow: 1;
}

.product-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.product-card-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.product-card-content h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.product-card-content ul {
    list-style: none;
    padding-left: 0;
}

.product-card-content li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.product-card-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-orange);
    font-size: 1rem;
}

/* 14. NEW Industries Page Styles (V2) */
.industry-features-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.industry-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.industry-feature:nth-child(even) .industry-feature-image {
    grid-column: 2 / 3;
}
.industry-feature:nth-child(even) .industry-feature-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.industry-feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.industry-feature-image:hover img {
    transform: scale(1.03);
}

.feature-icon-alt {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.industry-feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.industry-feature-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.industry-feature-text h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.industry-feature-text ul {
    list-style: none;
    padding: 0;
}

.industry-feature-text li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.industry-feature-text li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-orange);
    font-size: 1rem;
}


/* 15. NEW Responsive adjustments for V2 layouts */
@media (max-width: 992px) {
    .industry-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
     .industry-feature:nth-child(even) .industry-feature-image,
     .industry-feature:nth-child(even) .industry-feature-text {
        grid-column: 1 / -1; /* Reset grid placement */
    }
    .industry-feature-text {
        text-align: center;
    }
    .feature-icon-alt {
        margin-left: auto;
        margin-right: auto;
    }
    .industry-feature-text ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .products-showcase-grid {
        grid-template-columns: 1fr;
    }
    .industry-feature-text h3 {
        font-size: 1.8rem;
    }
}




/* 1. Horizontal Layout for Cards (Side-by-Side) */
.product-display-card {
    display: flex;
    flex-direction: row; /* Header/Image on left, Content on right */
    align-items: stretch;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.product-card-image-wrapper {
    flex: 0 0 30%; /* Image takes 30% of the width */
    height: auto;
    min-height: 300px;
}

.product-card-content {
    flex: 1; /* Content takes the remaining space */
    padding: 2.5rem;
}

/* 2. Benefits Sub-Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

/* 3. Emphasis for Water-Based Coatings */
.major-category {
    background-color: #fcf8f3; /* Very subtle warm tint */
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(236, 153, 65, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.major-category h4 {
    color: var(--accent-orange); /* Highlighted title */
    font-weight: 800;
}

/* 4. Responsive: Stack back to vertical on smaller screens */
@media (max-width: 1024px) {
    .product-display-card {
        flex-direction: column;
    }
    
    .product-card-image-wrapper {
        flex: none;
        height: 250px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}



/* Container & Global Title adjustments */
.products-showcase-grid { display: flex; flex-direction: column; gap: 40px; }

/* Main Card Layout */
.product-display-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: visible; /* To allow icon overlap */
    transition: 0.3s;
}

/* Image on Left */
.product-card-image-wrapper {
    flex: 0 0 320px;
    position: relative;
}

.product-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
	
}

/* Overlapping Circular Icon */
.category-icon-circle {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Card Content Area */
.product-card-content { padding: 40px; flex: 1; }
.product-card-content h3 { font-size: 1.4rem; font-weight: 800; color: #06253b; margin-bottom: 25px; }

/* 2x2 Grid for Desktop */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}



/* Unified Tick Arrow inside a Circle for all lists */
.benefit-col li, 
.major-list-split li, 
.adhesive-grid li { 
    font-size: 0.85rem; 
    color: #555; 
    margin-bottom: 8px; 
    position: relative; 
    padding-left: 25px; /* Increased padding for the circular icon */
    line-height: 1.4;
}

.benefit-col li::before, 
.major-list-split li::before, 
.adhesive-grid li::before { 
    content: '\f058'; /* Font Awesome Circle-Check Unicode */
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    position: absolute; 
    left: 0; 
    top: 1px; /* Vertical alignment adjustment */
    color: var(--accent-orange); 
    font-size: 0.95rem; /* Balanced size for the circular icon */
}


/* Highlighted Water-Based Box (Section C) */
.major-category-box {
    grid-column: 1 / span 2;
    background: #fdfaf5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f2e6d5;
}
.major-category-box h4 { color: var(--accent-orange); margin-bottom: 15px; }
.major-list-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Adhesives Style */
.adhesive-grid { grid-template-columns: 1.2fr 1fr; }

/* Category Icon Colors */
.icon-pharma { background: #00bfff; }
.icon-flexo { background: #ec9941; }
.icon-paper { background: #195294; }
.icon-specialty { background: #f5576c; }
.icon-adhesive { background: #1a1a2e; }

/* Responsive View */
@media (max-width: 992px) {
    .product-display-card { flex-direction: column; }
    .product-card-image-wrapper { flex: none; height: 250px; }
    .product-card-image-wrapper img { border-radius: 12px 12px 0 0; }
    .category-icon-circle { right: 20px; bottom: -25px; }
    .product-card-content { padding: 50px 30px 30px; }
}

@media (max-width: 600px) {
    .benefits-grid, .major-list-split, .adhesive-grid { grid-template-columns: 1fr; }
    .major-category-box { grid-column: auto; }
}





/* --- Industries Summary Ribbon Styles --- */
.industries-summary-bar {
    background: #fff;
    border-radius: 50px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto 5rem;
    max-width: 1000px;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 10;
}

.summary-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
    border-right: 2px solid #eee;
    padding-right: 30px;
}

.summary-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.summary-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #06253b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-list li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

/* Responsive adjustments for the ribbon */
@media (max-width: 992px) {
    .industries-summary-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 25px;
        gap: 15px;
        margin-bottom: 4rem;
    }
    
    .summary-label {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    
    .summary-list {
        gap: 15px 20px;
    }
}

@media (max-width: 600px) {
    .summary-list li {
        font-size: 0.85rem;
    }
}






/* ==========================================================================
   FANCY PRODUCT IMAGE STYLES (V3)
   ========================================================================== */

/* 1. The Main Container - Ensure it handles the new image shape */
.products-page .product-display-card {
    overflow: visible; /* Allow decorative elements to peek out */
    background: #fff;
    border: 1px solid #f0f0f0;
}

/* 2. Fancy Image Wrapper */
.products-page .product-card-image-wrapper {
    flex: 0 0 350px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* This creates the slanted "cutaway" effect 
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);*/
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 3. Decorative Background Accent (The color that peeks out) */
.product-display-card::before {
    content: '';
    position: absolute;
    top: 242px;
    left: -10px;
    width: 360px;
    height: calc(100% - 40px);
    /*background: linear-gradient(135deg, rgba(236, 153, 65, 0.1), rgba(0, 191, 255, 0.1));*/
    border-radius: 15px;
    z-index: 0;
    transition: transform 0.5s ease;
}

.product-display-card:hover::before {
    transform: translateX(10px) scale(1.02);
}

/* 4. The Image Hover Effect */
.products-page .product-card-image-wrapper img {
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.product-display-card:hover .product-card-image-wrapper img {
    transform: scale(1.1) rotate(0deg);
    filter: brightness(1.1);
}

/* 5. Enhanced Icon Circle */
.category-icon-circle {
    position: absolute;
    bottom: 20px;
    right: 5%; /* Moves it slightly inside the slant */
    width: 65px;
    height: 65px;
    border-radius: 50px; /* Squircle shape for a more modern look */

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-display-card:hover .category-icon-circle {
    transform: rotate(0deg) scale(1.1);
    bottom: 25px;
}

/* 6. Accent Bar (Small detail for a premium feel) */
.product-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 12%; /* Aligns with the slant */
    width: 4px;
    height: 100%;
    
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: skewX(-7deg);
}

.product-display-card:hover .product-card-image-wrapper::after {
    opacity: 0.8;
}

/* 7. Mobile Adjustments */
@media (max-width: 992px) {
    .products-page .product-card-image-wrapper {
        flex: none;
        height: 280px;
        width: 100%;
        /* clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);  Slant the bottom instead of the side */
    }
    
    .product-display-card::before {
        display: none; /* Simplify for mobile */
    }
    
    .category-icon-circle {
        right: 20px;
        /*bottom: -30px;*/
        transform: rotate(0);
    }
}



/* --- IMPACTFUL PRODUCTS PAGE STYLES --- */
.premium-products-layout {
    background-color: #fbfbfb;
    overflow-x: hidden;
}

.hero-subtitle {
    display: block;
    font-family: 'Montserrat';
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mega Row Layout */
.product-mega-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
    position: relative;
}

.product-mega-row.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.product-mega-row.reverse .mega-visual { order: 2; }
.product-mega-row.reverse .mega-content { order: 1; }

/* Dynamic Image Styling */
.mega-visual .image-stack {
    position: relative;
    padding: 20px;
}

.mega-visual .main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.product-mega-row:hover .main-img {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.floating-icon {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Content Area */
.category-tag {
    font-family: 'Montserrat';
    font-weight: 800;
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mega-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.summary-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Glassmorphism Benefits Card (Screenshot Content) */
.benefits-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.benefits-glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background: var(--accent-orange);
}

.benefits-glass-card .label {
    display: block;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #111;
}

.premium-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.premium-check-list li {
    position: relative;
    padding-left: 35px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* Perfect Circle-Check from Reference */
.premium-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Technical Specs Grid (Original Content) */
.technical-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-item {
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid #eee;
    color: #666;
    transition: all 0.3s ease;
}

.spec-item strong { color: #06253b; margin-right: 5px; }

.spec-item:hover {
    border-color: var(--accent-blue);
    background: #f0faff;
}

.spec-item.full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }

/* Theme Gradients */
.pharma-grad { background: linear-gradient(135deg, #0f5197, #00bfff); }
.flexo-grad { background: linear-gradient(135deg, #ec9941, #ffc107); }
.paper-grad { background: linear-gradient(135deg, #195294, #4ca1af); }
.special-grad { background: linear-gradient(135deg, #f5576c, #f093fb); }

.text-blue { color: var(--accent-blue); }
.text-orange { color: var(--accent-orange); }

/* Responsive */
@media (max-width: 1024px) {
    .product-mega-row { grid-template-columns: 1fr !important; gap: 50px; }
    .product-mega-row.reverse .mega-visual { order: -1; }
    .premium-check-list { grid-template-columns: 1fr; }
    .mega-content h3 { font-size: 2.2rem; }
}



/* --- PRODUCT SHOWCASE V3 (Per pp3 Reference) --- */
.product-showcase-v3 {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.main-category-block {
    margin-bottom: 120px;
}

.top-row {
    display: grid;
    grid-template-columns: 1.1fr 2fr; /* 35/65 Split feel */
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.top-row.alternate .image-col { order: 2; }
.top-row.alternate .content-col { order: 1; }

/* Image Styling */
.image-col {
    position: relative;
}

.cat-image {
    width: 100%;
    border-radius: 40px; /* Sophisticated large rounding as per pp3 */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #00bfff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

/* Content Styling */
.content-col .eyebrow {
    color: var(--accent-orange);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.content-col h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #06253b;
}

.cat-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Key Benefits Card (As per pp3) */
.key-benefits-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.key-benefits-card h4 {
    font-size: 0.85rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: 1px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Circular Orange Checkmarks */
.benefits-list li, .tech-premium-card li {
    position: relative;
    padding-left: 35px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}

.benefits-list li::before, .tech-premium-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #ec9941;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* TECHNICAL CARDS (UPGRADED) */
.technical-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-premium-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border-top: 5px solid #ec9941;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.tech-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-head h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #06253b;
}

.card-head i {
    font-size: 1.2rem;
    color: #ec9941;
    opacity: 0.5;
}

.tech-premium-card ul {
    list-style: none;
    padding: 0;
}

.tech-premium-card li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Specific Accent Colors per Category */
.flexo-bg { background: #ec9941; box-shadow: 0 10px 25px rgba(236, 153, 65, 0.3); }
.flexo-accent { border-top-color: #ec9941; }

.paper-bg { background: #195294; box-shadow: 0 10px 25px rgba(25, 82, 148, 0.3); }
.paper-accent { border-top-color: #195294; }

.tech-premium-card.featured {
    grid-column: span 1;
}

.dual-list {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
    .top-row { grid-template-columns: 1fr; gap: 40px; }
    .technical-cards-row { grid-template-columns: repeat(2, 1fr); }
    .cat-image { height: 400px; object-fit: cover; }
}

@media (max-width: 768px) {
    .content-col h3 { font-size: 2.2rem; }
    .benefits-list { grid-template-columns: 1fr; }
    .technical-cards-row { grid-template-columns: 1fr; }
    .dual-list { flex-direction: column; gap: 0; }
}




/* --- HIGHLY PROFESSIONAL TECHNICAL TILES --- */
.tech-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: -20px; /* Slight overlap with the section above for depth */
    position: relative;
    z-index: 5;
}

.tech-tile {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-tile:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

/* Tile Header & Iconography */
.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tile-icon {
    width: 60px;
    height: 60px;
    background: #f8faff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.tech-tile:hover .tile-icon {
    background: var(--accent-blue);
    color: #fff;
    transform: rotate(-10deg);
}

.tile-number {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.03); /* Subtle ghost number */
    line-height: 1;
    transition: color 0.3s ease;
}

.tech-tile:hover .tile-number {
    color: rgba(236, 153, 65, 0.1);
}

/* Content Styling */
.tile-content h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #06253b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tile-divider {
    width: 40px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
    margin-bottom: 25px;
    transition: width 0.4s ease;
}

.tech-tile:hover .tile-divider {
    width: 80px;
}

/* List Styling */
.tile-list {
    list-style: none;
    padding: 0;
}

.tile-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
    font-weight: 500;
}

/* Custom Micro-Checkmark */
.tile-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #cbd5e0; /* Neutral grey initially */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tech-tile:hover .tile-list li::before {
    color: var(--accent-orange);
}

/* Bottom Glow Accent */
.tile-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(236, 153, 65, 0.05), transparent);
    transition: height 0.4s ease;
}

.tech-tile:hover .tile-accent {
    height: 50%;
}

/* Theme Variances (Flexible & Paper) */
.flexo-accent .tile-icon { color: var(--accent-orange); }
.flexo-accent:hover .tile-icon { background: var(--accent-orange); color: #fff; }
.flexo-accent:hover { border-color: var(--accent-blue); }
.flexo-accent .tile-divider { background: var(--accent-blue); }

.paper-accent .tile-icon { color: #195294; }
.paper-accent:hover .tile-icon { background: #195294; color: #fff; }

/* Mobile Optimization */
@media (max-width: 1024px) {
    .tech-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .tech-tile {
        padding: 30px;
    }
}







/* --- CREATIVE PRODUCTS SHOWCASE (FANCY & EYE-CATCHING) --- */
.ink-portfolio-section {
    padding: 75px 0px 0px 0px;
    background-color: #fbfdff;
    position: relative;
    overflow: hidden;
}

.category-creative-block {
    position: relative;
    margin-bottom: 80px;
}

/* Background Abstract Blobs */
.blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
}
.pharma-blob { top: -100px; right: -200px; /*background: var(--accent-blue);*/ }
.flexo-blob { top: -100px; left: -200px; background: var(--accent-orange); }

/* Creative Main Row */
.creative-main-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.category-creative-block.alternate .creative-main-row {
    grid-template-columns: 1.2fr 0.8fr;
}
.category-creative-block.alternate .creative-image-mask { order: 2; }
.category-creative-block.alternate .creative-main-content { order: 1; }

/* Image Droplet Mask (The "Fancy" Shape) */
.creative-image-mask {
    position: relative;
    clip-path: circle(70% at 50% 50%);
    transition: clip-path 0.5s ease;
}

.creative-image-mask:hover {
    clip-path: circle(75% at 50% 50%);
}

.creative-image-mask img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ink-droplet-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bfff, #0f5197);
    border-radius: 50% 50% 50% 0; /* Droplet Shape */
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.4);
}

.ink-droplet-badge i {
    transform: rotate(45deg);
    color: white;
    font-size: 1.8rem;
}

/* Creative Content & Glass Panel */
.category-id {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent-orange);
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.creative-main-content h3 {
    font-size: 2.8rem;
    /*font-weight: 900;*/
    margin-bottom: 25px;
    line-height: 1.1;
    color: #06253b;
}

.highlight { color: var(--accent-orange); }
.highlight.blue { color: var(--accent-blue); }

.glass-benefits-panel {
    background: rgba(255, 255, 255, 0.5);
	border-left: 5px solid #eda240;
    background: rgb(234, 165, 59, 0.1);
    backdrop-filter: blur(15px);
    
    padding: 35px;
    border-radius: 30px;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
	
}

.panel-header {
   font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 20px;
    opacity: 0.6; 
    text-transform: uppercase;
}

.benefits-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.benefit-chip {
    background: #fff;
    padding: 10px 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #06253b;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.benefit-chip i { color: var(--accent-orange); font-size: 1.1rem; }

/* TECHNICAL CRYSTAL TILES */
.technical-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.crystal-tile {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 30px;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.crystal-tile:hover {
    transform: translateY(-15px) rotate(0deg);
    background: #fff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.tile-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tile-top {
    flex-direction: column; /* Stack vertically */
    align-items: center;    /* Center icon */
    text-align: center;     /* Center heading */
    gap: 15px;
    margin-bottom: 20px;
}

.tile-icon-box {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    /*color: var(--accent-blue);*/
	color: var(--accent-orange);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.1);margin: 0 auto;
	
}

.crystal-tile h5 {
        font-size: 1.225rem;
    font-weight: 800;
    color: #0f2c40;
    font-family: 'Montserrat';

}

.tile-list-fancy {
    text-align: left; /* Keep list text readable */
}

.tile-list-fancy li {
    font-size: 1rem;
    color: #707070;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
	font-family: 'Montserrat';
}

/* --- 2. Thick Circular Bullets --- */
.tile-list-fancy li::before {
    content: '';
    width: 10px;  /* Thicker size */
    height: 100%; /* Match height */
    max-width: 10px;
    max-height: 10px;
    background: var(--accent-orange);
    border-radius: 50%;
    flex-shrink: 0; /* Don't squash */
    margin-top: 6px;
}


/* Flexo Theme Adjustments */
.flexo-bg i { color: white; }
.flexo-grad { background: linear-gradient(135deg, var(--accent-orange), #ffc107); box-shadow: 0 15px 30px rgba(236, 153, 65, 0.4); }
.flexo-variant .tile-icon-box { color: var(--accent-orange);     margin: 0 auto;}
.flexo-variant .tile-list-fancy li::before { background: var(--accent-blue); }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .creative-main-content h3 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .creative-main-row { grid-template-columns: 1fr !important; }
    .creative-image-mask { height: 350px; }
    .technical-showcase-grid { grid-template-columns: 1fr; }
    .category-creative-block.alternate .creative-image-mask { order: -1; }
}



/* Refined Overlay for better professionalism (Reduced brightness) */
.page-header-vibrant::before {
    background: linear-gradient(45deg, rgba(15, 81, 151, 0.85), rgba(236, 153, 65, 0.7));
    z-index: 1;
}

/* Specific Highlight for Water Based Category */
.glass-benefits-panel i.fa-star {
    color: #00bfff; /* Blue star for water-based section */
}

/* Ensure consistent left alignment for images as per instruction */
.category-creative-block .creative-main-row {
    grid-template-columns: 0.8fr 1.2fr !important; /* Forces image left always */
}

.category-creative-block .creative-image-mask {
    order: 1 !important;
}

.category-creative-block .creative-main-content {
    order: 2 !important;
}

/* Adjusted Technical Tiles for better contrast on white */
.crystal-tile {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.crystal-tile:hover {
    border-color: none;
}


/* 1. Define the rotation animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 2. Apply the continuous rotation to the star icons */
.benefit-chip i.fa-star {
    display: inline-block !important; /* Required for transformation to work */
    animation: spin 3s linear infinite !important; /* Adjust '3s' for speed (lower = faster) */
}



/* ==========================================================================
   FINAL RESPONSIVENESS OVERRIDE
   ========================================================================== */

/* 1. Force the Main Product Rows to stack vertically on Mobile */
@media (max-width: 992px) {
    body.products-page .category-creative-block .creative-main-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    body.products-page .creative-image-mask {
        width: 100% !important;
        max-width: 500px !important;
        height: 300px !important;
        margin: 0 auto !important;
    }

    body.products-page .creative-main-content {
        text-align: center !important;
    }

    body.products-page .benefits-flex {
        justify-content: center !important;
    }
}

/* 2. Force Technical Tiles to stack (Overrides any inline HTML styles) */
@media (max-width: 1024px) {
    body.products-page .technical-showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    body.products-page .technical-showcase-grid {
        grid-template-columns: 1fr !important; /* One column on phones */
        display: grid !important;
    }

    body.products-page .crystal-tile {
        padding: 30px 20px !important;
    }

    body.products-page .creative-main-content h3 {
        font-size: 2rem !important; /* Prevent text overlap */
    }
}

/* Ensure images fit and zoom correctly within their container */
.creative-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}






/* --- 1. Targeted 4-Column Layout (Pharma Only) --- */
@media (min-width: 1025px) {
    .pharma-grid-layout {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
    }
}

/* --- 2. Tile Layout Refinement: Icon strictly on top --- */
.tile-top {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px;
    margin-bottom: 25px;
}

/* --- 3. Thick Circular Bullet Points (Across all sections) --- */
.tile-list-fancy {
    list-style: none !important;
    padding: 0 !important;
}

.tile-list-fancy li {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 12px;
}

.tile-list-fancy li::before {
    content: '' !important;
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px !important; /* Thick size */
    height: 10px !important;
    background: var(--accent-orange) !important;
    border-radius: 50% !important; /* Circular shape */
}

/* --- 4. Image Hover Zoom Effect --- */
.creative-image-mask {
    overflow: hidden;
}

.creative-image-mask img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.creative-image-mask:hover img {
    transform: scale(1.15); /* Zoom In */
}

/* --- 5. Adhesives Centering (Last Section) --- */
.centered-adhesives .creative-main-row {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.centered-adhesives .creative-image-mask {
    margin: 0 auto 30px;
    max-width: 500px;
}

.centered-adhesives .benefits-flex {
    justify-content: center;
}

/* --- 6. Global Responsiveness Fixes --- */
@media (max-width: 1024px) {
    /* Pharma and others stack to 2 columns on tablets */
    .technical-showcase-grid, 
    .pharma-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* All grids stack to 1 column on mobile phones */
    .technical-showcase-grid, 
    .pharma-grid-layout {
        grid-template-columns: 1fr !important;
    }

    .crystal-tile {
        width: 100% !important;
        padding: 30px 20px !important;
    }

    .creative-main-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .creative-image-mask {
        height: 280px !important;
    }
}



/* --- Fix: Key Benefits Left Alignment on Responsive --- */
@media (max-width: 992px) {
    /* Force the container to align chips to the left */
    .benefits-flex {
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    /* Make chips behave like list items on mobile */
    .benefit-chip {
        width: 100%; /* Ensures they stack neatly */
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 12px 15px !important;
    }
    
    /* Ensure the "Key Benefits" heading is also left aligned */
    .panel-header h4 {
        text-align: left !important;
    }
    
    /* Align the glass panel border/padding for mobile */
    .glass-benefits-panel {
        padding: 20px !important;
        text-align: left !important;
    }
}

/* Ensure Adhesives section centers ONLY on desktop, but left-aligns on mobile */
@media (min-width: 993px) {
    .centered-adhesives .benefits-flex {
        justify-content: center;
    }
}



/* ==========================================================================
   FOOTER RESPONSIVE CENTER-ALIGNMENT FIX
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. Center the column headings and the orange underline */
    .footer-col {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col h4::after {
        margin: 10px auto 0 !important; /* Centers the orange line */
    }

    /* 2. Center the Quick Navigation list block while keeping text left-aligned */
    .footer-links {
        display: inline-block !important;
        text-align: left !important;
        width: auto !important;
        margin: 0 auto;
    }

    .nav-2-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Keeps text on the left of the centered block */
    }

    /* 3. Center the Contact Info items while keeping text left-aligned */
    .footer-contact-widget {
        align-items: center !important; /* Centers the group of items */
    }

    .contact-item {
        width: fit-content !important; /* Shrinks container to content size */
        text-align: left !important;   /* Keeps text left-justified */
        justify-content: flex-start;
    }
}




/* Fix Footer Contact Alignment on Mobile */
@media (max-width: 768px) {
    .footer-contact-widget {
        display: flex;
        flex-direction: column;
        align-items: center !important; /* Centers the whole group */
        width: 100%;
    }

    .contact-item {
        display: flex !important;
        flex-direction: row !important; /* Forces Icon and Text to be side-by-side */
        align-items: center !important;   /* Vertically aligns icon with the center of the text */
        justify-content: flex-start !important;
        width: 100%;
        max-width: 280px; /* Limits width so the block appears centered on screen */
        margin-bottom: 15px;
    }

    .contact-text {
        text-align: left !important; /* Keeps text left-justified */
        display: flex;
        flex-direction: column;
    }

    .contact-text a, .contact-text p {
        word-break: break-all; /* Prevents long emails from breaking layout */
        line-height: 1.2;
    }
    
    .icon-box-sm {
        margin-right: 15px; /* Adds consistent space between icon and text */
        flex-shrink: 0;      /* Prevents the icon box from squashing */
    }
}


	
	.whatsapp-sidebar {
    position: fixed;
    right: 10px;         /* Distance from the right edge */
    top: 93%;            /* Position starting at 50% from top */
    transform: translateY(-50%); /* Pulls it back up by half its height to be perfectly centered */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 10000;      /* Ensure it sits above all other layers */
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-sidebar:hover {
    background-color: #25d366;
    /* Keeps the vertical center while adding a slight hover scale */
    transform: translateY(-50%) scale(1.1); 
}

/* Mobile Adjustment */
@media screen and (max-width: 768px) {
    .whatsapp-sidebar {
        width: 50px;
        height: 50px;
        font-size: 28px;
        right: 10px; /* Move closer to edge on small screens */
    }
}
	
	
