/*
Theme Name: Divi-child-DistinctInk
Template: Divi
*/

/* BEGIN HEADER STYLES */

/* Core Variables */
:root {
    --content-width: 1680px;
    --content-padding: 20px;
    --primary-green: #81bd41;
    --top-nav-black: black;
    --bottom-nav-gray: #333333;
    --social-icon-grey: #B3B3B3;
    /* Font families */
    --font-primary: 'Inter', Arial, sans-serif;
/*	--font-secondary: Helvetica, Arial, sans-serif; */
    --font-secondary: 'Inter', Arial, sans-serif;
}

* {
    font-family: var(--font-secondary);
    /* font-weight: 400; */
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
    font-weight: 600;
}
h1 {font-size: 2rem; }
h2 {font-size: 2rem; }
h3 {font-size: 1.75rem; }
h4 {font-size: 1.5rem; }
h5 {font-size: 1.25rem; }
h6 {font-size: 1rem; }


/* body .et_pb_button {
    font-size: 18px;
    background-color: #81bd41;
    border-width: 0px !important;
    border-radius: 4px;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
} */

/* .et_pb_row {
    width: 85%;
    max-width: 1680px;
    margin: auto;
    position: relative;
} */

/* body.et_pb_button_helper_class .et_pb_button, body.et_pb_button_helper_class .et_pb_module.et_pb_button {
    color: #ffffff;
} */

/* .et_pb_button:hover:after {
    opacity: 1;
    margin-left: 0;
}
body .et_pb_button:after {
    font-size: 28.8px;
} */

/* .et_pb_button:after, .et_pb_button:before {
    font-size: 32px;
    line-height: 1em;
    content: "\35";
    opacity: 0;
    position: absolute;
    margin-left: -1em;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-transform: none;
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
    font-variant: none;
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
} */

/* body #page-container .et_pb_section .et_pb_button_0 {
    color: #81BD41 !important;
    border-width: 0px !important;
    font-weight: 700 !important;
    background-color: #FFFFFF;
} */

/* .et_pb_button:hover{
    background-color: #81bd41;
} */

/* Top Navigation Bar */
.top-nav {
    height: 30px;
    background: black;
    position: fixed;
    width: 100%;
    z-index: 101;
    display: none;
    top: 0;
}

.top-nav-content {
    max-width: var(--content-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0px;
    cursor: pointer;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    cursor: pointer;
}

.top-phone span a {
    color: var(--primary-green);
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font-primary) !important;
    font-weight:bold;
}

.top-phone span a:hover {
    color: white;
}

.top-quote {
    background: var(--primary-green);
    height: 100%;
    padding: 0 20px;
    color: white;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-primary) !important;
}

/* Update the top-quote style to include the anchor tag */
.top-quote a {
    color: white;
    text-decoration: none;
    font-family: var(--font-primary) !important;
    font-weight:bold;
}

.top-quote:hover {
    background: #6ea32f;
}

/* Main Navigation */
.main-nav {
    height: 70px;
    width: 100%;
    background: white;
    position: fixed;
    z-index: 100;
    top: 0;
    transition: top 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Optional: adds subtle shadow */
}

.nav-content {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    display: block;
    cursor: pointer;
}

.logo-wrapper {
    display: inline-block;
}

/* Logo */
.logo img {
    height: 50px;
    margin-left: 7vw;
    cursor: pointer;
    margin-top: 8px;
}



.logo-small {
    display: none;
    cursor: pointer;
}

/* Navigation Items */
.nav-items {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding-right: 40px;
    font-family: var(--font-primary) !important;
}

.nav-item {
    color: var(--primary-green);
    padding: 0 20px;
    position: relative;
    font-weight: 600; /* or 700 */
    font-size: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    font-family: var(--font-primary) !important;
	cursor: pointer;
}


.nav-item:hover {
    background: #F5F5F5;
}

/* Dropdown Menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown a {
    display: flex;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 700;
}


.dropdown a:hover {
    background: #F5F5F5;
    padding-left: 24px;
    color: var(--primary-green);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu Icons */
.menu-icon {
    width: 16px;
    height: 16px;
}

/* CTA Section */
.cta-section {
    margin-left: auto;
    display: flex;
    align-items: center;
    background: black;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.phone-text {
    font-family: var(--font-primary) !important;
    font-weight:bold;
    white-space: nowrap;
    color: var(--primary-green);
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing:.7px;
}

.phone-text:hover {
    color: white;
}

.quote-button {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    height: fit-content;
    font-weight:bold;
    cursor: pointer;
}

.quote-button:hover {
    color: black;
}

/* Mobile Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    padding: 0 20px;
}


/* Media Queries */
@media (max-width: 1320px) {
    .top-nav {
        display: block;
    }
    .main-nav {
        top: 30px;
    }
    #main-content {
        /* padding-top: 100px; */
    }
    .phone-number, 
    .cta-section {
        display: none;
    }
}

@media (max-width: 1050px) {
    .logo-default {
        display: none !important;
		margin-top: 6px;
    }
    .logo-small {
        display: block !important;
    }
}
@media (max-width: 900px) {
    .logo-default {
        display: block !important;
    }
    .logo-small {
        display: none !important;
    }
	.logo img {
		height: 6vw;
		margin-top: 7px;
	}

}
@media (max-width: 600px) {
	.logo img {
		height: 8vw;
	}

}


@media (max-width: 900px) {
    .hamburger {
        display: block;
    }
    
    .nav-items {
        display: none;
    }
    
    .nav-items.mobile-active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: #f9f9f9;
    }
}    


/* Mobile Modal Menu */
.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo img {
    height: 28px;
    margin-top: 5px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    margin-right: -2px;
}

.mobile-menu-items {
    flex-grow: 1;
    padding: 0 0;
}

.mobile-menu-item {
    display: block;
    padding: 15px 0;
    font-family: var(--font-primary) !important;
    font-weight: 700; /* or 700 */
    font-size: 24px;
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-menu-item:last-of-type {
    /* padding-bottom: 0; */
    /* border-bottom: 0; */
}

.mobile-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.mobile-item-header span {
    font-family: var(--font-primary) !important;
}

.mobile-submenu {
    display: none;
    padding: 10px 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    gap: 15px;
}

.mobile-submenu-item img {
    width: 20px;
    height: 20px;
}

.mobile-menu-footer {
    padding-top: 20px;
    border-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    text-decoration: none;
    font-family: var(--font-primary) !important;
    font-weight: 600; /* or 700 */
    font-size: 18px;
    margin-bottom: 20px;
    margin-right:17px;
    text-align: center;
    /*width: 100%;*/
}

.mobile-quote-button {
    display: block;
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-primary) !important;
    font-weight: 600; /* or 700 */
    font-size:16px;
    width:100%;
}

/* Update hamburger position */
.hamburger {
    margin-left: auto;
    padding-right: 20px;
}

/* Update existing media queries */
@media (max-width: 900px) {
    .nav-items {
        display: none;
    }
    
    .main-nav {
        background: white;
    }
}



/* END HEADER STYLES */



/* BEGIN HOME PAGE STYLES */

/* BEGIN VIDEO STRATA */

/* Hero text styling */

.hero-section {
    position: relative;
    max-width: 100%;
    height: calc(100vh - 250px);
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: center;
}

.hero-text-main {
    font-family: 'Kallisto', sans-serif;
    font-size: 3rem;
    color: white;
    text-align: center;
}

.hero-text-sub {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity:.8; 
}

.frost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mix-blend-mode: normal;  /* Changed from screen to normal */
    opacity: .85;
    filter: invert(1);  /* This turns black to white */
}

.mask-overlay,
.frost-overlay {
    width: var(--content-width);
    left: 50%;
    transform: translateX(-50%) scale(5);
    animation: scaleDown .75s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    background-size: cover;
    background-repeat: no-repeat;
}

@keyframes scaleDown {
    from {
        transform: translateX(-50%) scale(5);
    }
    to {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes rollInText {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
}

.video-container {
    position: relative;
    width: var(--content-width);
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1320px) {
    .hero-section {
        margin-top: 30px;
    }
}

.hero-text-main {
    font-weight: 600; /* or 700 */ /* Make the text bold */
    line-height: 1.3; /* Increase line height for better readability when wrapping */
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
    padding: 0 20px; /* Add some padding on the sides */
}

/* Position text overlay with responsive bottom positioning */
.text-overlay {
    position: absolute;
    top: auto; /* Remove top positioning */
    left: 50%;
    transform: translateX(-50%); /* Only transform X since we're using bottom */
    width: 100%;
    max-width: 90%; /* Prevent text from extending to the very edge on mobile */
    z-index: 10;
    
    /* Responsive bottom positioning based on viewport height */
    /* Formula derived from your observations: 
       - At 844px height: bottom = 1%
       - At 1000px height: bottom = 6%
       - At 1200px height: bottom = 11%
       
       This creates a linear function where:
       bottom = 0.028 * (viewport height) - 22.632
       (simplified to the calculation below)
    */
    bottom: calc(max(1%, min(11%, (2.8vh - 22.632px))));
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-text-main {
        line-height: 1.4; /* Further increase line height on mobile */
        font-size: clamp(2rem, 8vw, 3rem); /* Slightly smaller on mobile */
        padding: 0 15px; /* Adjust padding */
        max-width: 100%; /* Ensure text doesn't overflow */
        word-spacing: 0.1em; /* Add a bit of space between words */
    }
    
    /* Enhance text shadow for better visibility */
    .hero-text-main {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 
                     0px 0px 10px rgba(0, 0, 0, 0.5); /* Enhanced shadow for better readability */
    }
    
    /* Adjust bottom position for smaller screens */
    .text-overlay {
        bottom: max(1%, 2vh); /* Ensure at least 1% from bottom */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-text-main {
        line-height: 1.5; /* Even more line height for very small screens */
        font-size: clamp(2rem, 7vw, 2.5rem); /* Smaller font size */
    }
    
    /* Further adjust for very small screens */
    .text-overlay {
        bottom: 1%; /* Keep at minimum distance from bottom */
    }
}

/* Height-specific adjustments */
@media (min-height: 844px) and (max-height: 1000px) {
    .text-overlay {
        bottom: calc(1% + (6% - 1%) * ((100vh - 844px) / (1000px - 844px)));
    }
}

@media (min-height: 1000px) and (max-height: 1200px) {
    .text-overlay {
        bottom: calc(6% + (11% - 6%) * ((100vh - 1000px) / (1200px - 1000px)));
    }
}

@media (min-height: 1200px) {
    .text-overlay {
        bottom: 11%;
    }
}
/* END VIDEO STRATA */





/* BEGIN GREEN BANNER */

.green-strata {
	max-width: var(--content-width);
	margin: 0 auto;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: var(--content-padding);
	background: var(--primary-green);
}

.strata-text-main {
	font-family: var(--font-primary) !important;
	font-size: 2rem;
	color: white;
	font-weight:bold;
}

.strata-text-sub {
	font-family: var(--font-secondary);
	font-size: 1.2rem;
	color: white;
	margin-top: 0.5rem;
	text-align: center;
}

/* END GREEN BANNER */

/* BEGIN BUG SECTION */
.bug-banner-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 16px;
    font-family: var(--font-secondary);
    background-color: #efefef;
    border-radius: 10px;
}
.bug-banner {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    max-width: 900px;
}


.bug-title {
    font-size: clamp(19px, 2vw + 1rem, 28px);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.42px;
    line-height: 145%;
    color: var(--primary-green);
    text-align: center;
    padding-bottom: 30px;
}

.bug-headline {
    font-family: var(--font-primary) !important;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-green);
    font-weight: 600; /* or 700 */
    margin-bottom: 5px;
}

.bug-item {
    background-color: white;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
}


.bug-item.has-link {
	cursor: pointer;
}

.bug-item.has-link:hover {
	border-color: #53585a;
	transition: border-color 0.3s ease-in-out;
}

.bug-shipping {
	background-color: #084045;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 16px;
}

.bug-title {
	font-weight: 600;
	letter-spacing: 0.42px;
	line-height: 145%;
}

.bug-subtitle {
	font-size: clamp(12px, 1vw + 0.5rem, 14px);
	font-weight: 500;
	letter-spacing: 0.21px;
	line-height: 145%;
	margin-top: -4px;
	white-space: nowrap;
}


.bug-icon {
	margin-bottom: 8px;
	font-size:35px;
}

.bug-icon img {
	max-height: 24px;
}
.bug-description {
    color: #090b0b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.21px;
    line-height: 145%;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .bug-banner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bug-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bug-headline {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .bug-banner-wrapper {
        position: relative;
        padding: 10px 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .bug-banner {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Show 3 items per row */
        grid-auto-flow: column; /* Flow items in columns instead of rows */
        grid-template-rows: repeat(2, auto); /* Show 2 rows */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .bug-banner::-webkit-scrollbar {
        display: none;
    }
    
    .bug-banner-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 5%;
        right: 5%;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
    }
    
    
    .bug-banner-wrapper::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: calc(5% + var(--scroll-position, 0%));
        width: 20%;
        height: 4px;
        background: #999;
        border-radius: 2px;
        z-index: 1;
        transition: left 0.1s ease-out;
    }

    .bug-item {
        scroll-snap-align: start;
        min-width: unset; /* Remove any fixed width */
        width: 100%; /* Take full width of grid cell */
    }

    .bug-headline,
    .bug-description {
        white-space: nowrap;
    }
}

/* END BUG SECTION */


/* BEGIN INDUSTRIES WE SERVE */

.industry-grid-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 16px;
    font-family: var(--font-secondary, sans-serif);
    border-radius: 10px;
    max-width: 1300px;
}



/* Create a true grid with dedicated rule rows/columns */
.industry-grid {
    display: grid;
    /* 4 content columns + 3 rule columns */
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    /* 2 content rows + 1 rule row */
    grid-template-rows: auto 1px auto;
    margin: 0 auto;
    max-width: 900px;
}

.industry-title {
    font-size: clamp(19px, 2vw + 1rem, 28px);
    font-weight: 600;
    letter-spacing: 0.42px;
    line-height: 145%;
    text-align: center;
    padding-bottom: 30px;
}

.industry-item {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-headline {
    font-family: var(--font-primary, sans-serif) !important;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-green, #084045);
    font-weight: 600; /* or 700 */
    margin-bottom: 5px;
}

.industry-description {
    color: #090b0b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.21px;
    line-height: 145%;
}

/* Vertical rule cells */
.v-rule {
    background-color: #cccccc;
}

/* Horizontal rule cells */
.h-rule {
    background-color: #cccccc;
}

/* Empty cell where rules would intersect */
.empty-cell {
    background-color: transparent;
}

/* Mobile elements are hidden by default */
.mobile-only {
    display: none;
}

/* Responsive Breakpoints */
@media (max-width: 1300px) {
    .industry-grid {
        /* 2 content columns + 1 rule column */
        grid-template-columns: 1fr 1px 1fr;
        /* 4 content rows + 3 rule rows */
        grid-template-rows: auto 1px auto 1px auto 1px auto;
    }

    .industry-grid-wrapper {
        max-width: 580px;
    }
    
    /* Reposition items for mobile layout */
    #item1 { grid-area: 1 / 1; }
    #item2 { grid-area: 1 / 3; }
    #item3 { grid-area: 3 / 1; }
    #item4 { grid-area: 3 / 3; }
    #item5 { grid-area: 5 / 1; }
    #item6 { grid-area: 5 / 3; }
    #item7 { grid-area: 7 / 1; }
    #item8 { grid-area: 7 / 3; }
    
    /* Hide desktop-only elements */
    .desktop-only {
        display: none;
    }
    
    /* Show mobile-only elements */
    .mobile-only {
        display: block;
    }
}


@media (max-width: 600px) {
    .industry-grid-wrapper {
        padding: 20px 10px;
    }
    
    .industry-headline {
        font-size: 16px;
    }
    
    .industry-description {
        font-size: 12px;
    }
}

/* END INDUSTRIES WE SERVE */




/* BEGIN FEATURED CONTENT ICON SECTION STYLES */

.featured-content-right,
.featured-content {
    flex: 1;
    max-width: 600px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F0F0F0;
    border-radius: 15px;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 980px) {
    .featured-content-right,
    .featured-content {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 580px;
    }
}


.featured-content-right {
    margin-left: auto;
    margin-right: 0px;
}

.featured-content {
    margin-left: 0px;
    margin-right: auto;
}


/* Common styles for category items */
.category-name {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #333;
    font-weight: 600; /* or 700 */ /* Make labels bold */
    margin-top: 10px;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Grid layout for all category grids */
.categories-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

/* Desktop layout */
@media (min-width: 769px) {
    /* Default grid (6 items - 3x2) */
    .featured-content .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    /* Special grid for featured-content-right (7 items) */
    .featured-content-right .categories-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr); /* Use 12 columns for more precise positioning */
        grid-template-rows: auto auto;
        gap: 20px;
    }
    
    /* First row: 3 items perfectly centered */
    .featured-content-right .categories-grid .category-item:nth-child(1) {
        grid-column: 3 / span 2; /* Starts at column 3, spans 2 columns */
        grid-row: 1;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(2) {
        grid-column: 6 / span 2; /* Starts at column 6, spans 2 columns (center) */
        grid-row: 1;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(3) {
        grid-column: 9 / span 2; /* Starts at column 9, spans 2 columns */
        grid-row: 1;
    }
    
    /* Second row: 4 items (evenly distributed) */
    .featured-content-right .categories-grid .category-item:nth-child(4) {
        grid-column: 1 / span 3;
        grid-row: 2;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(5) {
        grid-column: 4 / span 3;
        grid-row: 2;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(6) {
        grid-column: 7 / span 3;
        grid-row: 2;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(7) {
        grid-column: 10 / span 3;
        grid-row: 2;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    /* Add more space above the button */
    .featured-content .et_pb_button_module_wrapper,
    .featured-content-right .et_pb_button_module_wrapper {
        margin-top: 30px;
    }
    
    /* Default grid (6 items - 3x2 on mobile) */
    .featured-content .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    /* Special grid for featured-content-right (7 items - 3/2/2 on mobile) */
    .featured-content-right .categories-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* Use 6 columns for more precise positioning */
        grid-template-rows: repeat(3, auto);
        gap: 15px;
    }
    
    /* First row: 3 items (spanning 2 columns each) */
    .featured-content-right .categories-grid .category-item:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(2) {
        grid-column: 3 / span 2;
        grid-row: 1;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(3) {
        grid-column: 5 / span 2;
        grid-row: 1;
    }
    
    /* Second row: 2 items (centered, spanning 2 columns each with 1 column gap on sides) */
    .featured-content-right .categories-grid .category-item:nth-child(4) {
        grid-column: 2 / span 2;
        grid-row: 2;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(5) {
        grid-column: 4 / span 2;
        grid-row: 2;
    }
    
    /* Third row: 2 items (centered, spanning 2 columns each with 1 column gap on sides) */
    .featured-content-right .categories-grid .category-item:nth-child(6) {
        grid-column: 2 / span 2;
        grid-row: 3;
    }
    
    .featured-content-right .categories-grid .category-item:nth-child(7) {
        grid-column: 4 / span 2;
        grid-row: 3;
    }
    
    /* Make font size smaller on mobile */
    .category-name {
        font-size: 12px;
    }
}

/* END FEATURED CONTENT ICON SECTION STYLES */
/* BEGIN FEATURED CONTENT SLIDER STYLES */

/* Common Carousel Styles */
.mw-square-carousel-600-container,
.mw-embroidery-carousel-container-2 {
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
}

/* Positioning */
.mw-square-carousel-600-container {
    margin: 0;
}

.mw-embroidery-carousel-container-2 {
    margin-left: auto;
    margin-right: 0;
}

/* Tablet and below centering */
@media (max-width: 980px) {
    .mw-square-carousel-600-container,
    .mw-embroidery-carousel-container-2 {
        margin-left: auto;
        margin-right: auto;
       	margin-bottom: 20px;
    }
}

/* Carousel Base Styles */
.mw-square-carousel-600,
.mw-embroidery-carousel {
    position: relative;
    overflow: hidden;
    height: 100% !important;
}


/* Card Styles */
.mw-square-promotion-card-600,
.mw-embroidery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;    /* Changed from aspect-ratio and max-height */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Image Container and Image */
.mw-square-picture-container-600,
.mw-embroidery-picture-container {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (min-width: 769px) and (max-width: 992px) {
	.featured_content-left,
	.featured_content-right,
	.mw-square-picture-container-600,
	.mw-embroidery-picture-container {
		margin-left: 0px;
		margin-right: 10px;
	}
}




.mw-square-image-600,
.mw-embroidery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Navigation Buttons */

/* END FEATURED CONTENT SLIDER STYLES */

/* END HOME PAGE STYLES */

/* SUBPAGE PAGE STYLES */

/* Strata Section Base Styles */

.strata {
	margin-top:-10px;
    max-width: var(--content-width);
    margin: 0 auto;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--content-padding);
}

.strata--green {
    background: var(--primary-green);
}

.strata--black {
    background: black;
    margin-top: -9px;
}

/* Strata Text Styles */
.strata__heading {
    font-family: var(--font-primary) !important;
    text-align: center;
    line-height: 1.2;
}

.strata__heading--large {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; /* or 700 */
    color: var(--primary-green);
}

.strata__heading--medium {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: black;
}

.strata__text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    font-weight: 600; /* or 700 */
    text-align: center;
    max-width: 964px;
    padding: 1rem;
    line-height: 1.4;
}

.strata__text--dark {
    color: black;
}

/* Responsive adjustments */
@media (max-width: 1320px) {
    .strata {
        min-height: auto;
    }
	.strata--black {
        margin-top:30px;
	}    
}





/*
SERVCIES PAGE STYLES
*/


/* Services Info Block Styles */
.services-block {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}



/* Alignment variants */
.services-block--left {
    margin-right: auto;
    margin-left: 0;
}

.services-block--right {
    margin-left: auto;
    margin-right: 0;
}

/* Icon and title wrapper */
.services-block__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.services-block__icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
}

@media screen and (min-width: 981px) {
    .services-block__icon.adjusted_icon {
        margin-top: -67px;
    }
}


.services-block__title {
    font-size: clamp(32px, 5vw, 48px);
    margin: 0;
    color: var(--primary-green);
    font-weight: 600; /* or 700 */
    line-height: 1.2;
}

/* Content area */
.services-block__content {
    margin-left: 94px; /* 64px (icon width) + 30px (gap) */
}

.services-block__tagline {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600; /* or 700 */
    color: #000;
    margin: -10px 0 20px 0;
}

.services-block__text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.5;
    font-weight: 600; /* or 700 */
    margin-bottom: 30px;
    max-width: 450px;
}

/* Mobile Styles */
@media (max-width: 980px) {
    .services-block {
        padding: 15px;
        margin: 0 auto;
        text-align: center;
    }
    
    .services-block__content {
        margin-left: 0;
    }
    
    .services-block__header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .services-block__text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .services-block .et_pb_button_module_wrapper {
        text-align: center;
    }
}


/* Capabilities Strata */

.capabilities {
    padding: 40px;
    color: white;
    max-width: 35%;
}

.capabilities__title {
    color: white;
    font-weight: 600; /* or 700 */
    margin-bottom: 20px;
}

.capabilities__text {
    margin-bottom: 0px;
    line-height: 1.5;
}

.capabilities__list-container {
    display: flex;
    gap: 40px;
}

.capabilities__list {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
    font-size: clamp(14px, 14px, 14px);
    margin-left:15px;
}

@media (max-width: 980px) {
    .capabilities {
        padding: 30px;
        margin: 0 auto;
        text-align: center;
        max-width: 100% !important;
    }
    
    .capabilities__list-container {
        display: block;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .capabilities__list {
        display: inline-block;
        text-align: left;
        padding-left: 0;
    }
    
    .capabilities__list li {
        display: inline-block;
        white-space: nowrap;
        margin-right: 15px;
        position: relative;
        padding-left: 15px;
    }
    
    .capabilities__list li::before {
        content: "•";
        position: absolute;
        left: 0;
    }
}
/* END Capabilities Strata */



/* BEGIN COPYRIGHT STRATA */

.copyright-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    display: flex;
    justify-content: center;
    width: 100%;
}

.copyright-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--social-icon-grey);
    font-size: 12px;
    font-family: var(--font-secondary);
}

.copyright-left a {
    color: var(--social-icon-grey);
    text-decoration: none;
}

.copyright-left img {
    height: 20px;
}

@media (max-width: 768px) {
    .copyright-bar {
        height: auto;
    }

    .copyright-content {
        padding: 15px var(--content-padding);
    }

    .copyright-left {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i {
    color: var(--social-icon-grey);
    font-size: 16px;
}

/* END COPYRIGHT STRATA */


/* BEGIN REMOVE ROUNDED CORNERS */

@media (max-width: 1300px) {
  .no-rounded-1300 {
    border-radius: 0 !important;
  }
}

/* Remove rounded borders at 1680px or less */
@media (max-width: 1680px) {
  .no-rounded-1680 {
    border-radius: 0 !important;
  }
}

/* END REMOVE ROUNDED CORNERS */

