/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Headings Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Red Hat Text', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* COVID Banner */
.covid-banner {
    background-color: #004e7c;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

/* Header */
.header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
    position: absolute;
    width: 100%;
    background: transparent;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */


.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1B3D6F;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #004e7c;
}

/* Dropdown Styles */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 8px;
}

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

.dropdown-section {
    margin-bottom: 20px;
}

.dropdown-section h4 {
    font-family: 'Red Hat Text', sans-serif;
    color: #004e7c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li {
    margin-bottom: 8px;
}

.dropdown-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-section ul li a:hover {
    color: #004e7c;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-btn {
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #c0392b;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    background-color: #004e7c;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1B3D6F;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 2px 0;
}

/* Make hamburger lines white on transparent header backgrounds */
.header .hamburger-line {
    background-color: #1B3D6F;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Hamburger Animation to X */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Mobile Nav Close Button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #1B3D6F;
    z-index: 1001;
}

.mobile-nav-close:hover {
    background-color: #f8f9fa;
    transform: rotate(90deg);
}

.mobile-nav-close:active {
    transform: rotate(90deg) scale(0.95);
}

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

.mobile-nav-item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-nav-link {
    display: block;
    padding: 18px 20px;
    color: #1B3D6F;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: #004e7c;
    padding-left: 30px;
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 200px;
    overflow-y: scroll;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu .mobile-nav-link {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu .mobile-nav-link:hover {
    padding-left: 50px;
}

.mobile-submenu-toggle {
    position: absolute;
    right: 20px;
    top: 30px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-submenu-toggle.active {
    transform: translateY(-50%) rotate(45deg);
}

/* Mobile CTA Button */
.mobile-cta .mobile-nav-link.cta-button {
    background-color: #1B3D6F;
    color: white;
    margin: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.mobile-cta .mobile-nav-link.cta-button:hover {
    background-color: #004e7c;
    padding-left: 20px;
}

/* Overlay to prevent body scroll when mobile nav is open */
body.mobile-nav-open {
    overflow: hidden;
}

.container-custom {
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    top: -120px;
    left: 0;
    right: 0;
    z-index: 10;
}

.product-details-section {
    background: transparent;
    position: relative;
    z-index: 10;
}

/* FAQ Banner Section */
.faq-banner-section {
    position: relative;
    min-height: 355px;
    display: flex;
    align-items: self-start;
    padding: 80px 0;
    overflow: hidden;
}

/* Parallax Background */
.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 78, 124, 0.85) 0%, 
        rgba(27, 61, 111, 0.75) 50%,
        rgba(0, 102, 160, 0.8) 100%
    );
    z-index: 1;
}

/* Parallax Overlay */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 78, 124, 0.7);
    background: linear-gradient(
        135deg, 
        rgba(0, 78, 124, 0.8) 0%, 
        rgba(0, 102, 160, 0.6) 100%
    );
}

/* Banner Content */
.faq-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb-nav p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.ctm.btn-cta-primary a {
    font-family: "Red Hat Display", Sans-serif;
    font-size: 17.8px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    fill: #1B3D6F;
    color: #1B3D6F;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #ED2838;
    border-radius: 5px 5px 5px 5px;
    padding: 16px 25px 16px 25px;
}


/* FAQ Header in Banner */
.faq-banner-section .faq-header {
    text-align: center;
    margin-bottom: 0;
}

.faq-subtitle {
    font-family: 'Red Hat Text', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.4;
    position: relative;
    z-index: 3;
}

.faq-title {
    font-family: 'Red Hat Text', sans-serif;
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
}

h2.faq-title {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    background: #1B3E6F;
    color: #fff;
    outline: none;
    text-decoration: none;
    padding: 15px 25px;
    display: inline-block;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
    position: relative;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h4 {
    font-family: 'Red Hat Text', sans-serif;
    color: #ED2838;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.faq-header h1 {
    font-family: 'Red Hat Text', sans-serif;
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* FAQ Content */
.faq-content {
    max-width: 900px;
    margin: 35px auto 35px;
}

.faq-item,
.faq-product-item {
    background: #ffffff;
    border: 1px solid rgba(27, 61, 111, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-product-item {
    text-decoration: none;
    display: block;
    color: #333;
    padding: 28px 30px;
}

.faq-item::before,
.faq-product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B3D6F 0%, #004e7c 50%, #ED2838 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-item:hover,
.faq-product-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(27, 61, 111, 0.15);
}

.faq-item:hover::before,
.faq-product-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    border-color: #1B3D6F;
    box-shadow: 0 12px 40px rgba(27, 61, 111, 0.15);
    transform: translateY(-2px);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    position: relative;
}

.faq-question::after,
.faq-product-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 61, 111, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question.active {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
}

.faq-question.active::after {
    opacity: 1;
}

.faq-question h3 {
    font-family: 'Red Hat Text', sans-serif;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-right: 24px;
    flex: 1;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #1B3D6F;
}

.faq-question.active h3 {
    color: #1B3D6F;
    font-weight: 700;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1B3D6F 0%, #004e7c 100%);
    color: white;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(27, 61, 111, 0.25);
    position: relative;
    overflow: hidden;
}

.faq-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover .faq-toggle {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(27, 61, 111, 0.35);
}

.faq-question:hover .faq-toggle::before {
    opacity: 1;
}

.faq-question:focus {
    outline: none;
}

.faq-question.active .faq-toggle {
    background: linear-gradient(135deg, #ED2838 0%, #c0392b 100%);
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(237, 40, 56, 0.35);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer.show {
    opacity: 1;
    padding: 20px 32px 32px;
    max-height: 3000px;
}

.faq-answer p {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.faq-answer h2:first-child {
    margin-top: 0;
}

.faq-answer strong {
    color: #1B3D6F;
    font-weight: 700;
    font-family: 'Red Hat Text', sans-serif;
}

.faq-answer a {
    color: #1B3D6F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-answer a:hover {
    color: #ED2838;
    border-bottom-color: #ED2838;
}

.faq-answer iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}

.container-fluid {
    padding: 0 36px;
}

/* Enhanced animations */
@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    to {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
    }
}


/* More Questions Section */
.more-questions {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.more-questions h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #004e7c;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
}

.more-questions p {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-btn {
    background-color: #004e7c;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #003a5d;
}

/* Solutions Section */
.solutions-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-item {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Icon Wrapper */
.icon-wrapper {
    margin-bottom: 30px;
}

.icon-wrapper .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3D6F 0%, #004e7c 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(27, 61, 111, 0.3);
}

.icon-wrapper .icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

/* Life Sciences specific styling */
.solution-item.life-sciences .icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.solution-item h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-item h3 {
    font-family: 'Red Hat Text', sans-serif;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.solution-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.solution-content {
    text-align: center;
}

.learn-more-link {
    color: #1B3D6F;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #1B3D6F;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Red Hat Text', sans-serif;
}

.learn-more-link:hover {
    background-color: #1B3D6F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 61, 111, 0.3);
}

.learn-more-btn {
    color: #004e7c;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #004e7c;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-btn:hover {
    background-color: #004e7c;
    color: white;
}

/* Discover Products Section */
.discover-section {
    position: relative;
    min-height: 800px;
    padding: 100px 0;
    overflow: hidden;
    background: #f8f9fa;
}

/* Parallax Background for Discover Section */
.parallax-background-discover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://www.peltonshepherd.com/wp-content/uploads/2023/04/discover-products-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

/* Parallax Overlay for Discover Section */
.parallax-overlay-discover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.9);
    background: linear-gradient(
        135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(248, 249, 250, 0.95) 100%
    );
}

.discover-content {
    position: relative;
    z-index: 2;
}

/* Animated Text Section */
.animated-text-section {
    text-align: center;
}

.products-header .animated-text-section h2 {
    margin-bottom: 0;
}

/* Animated Text Heading */
.animated-text-heading {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin: 0;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    text-align: center;
}

.before-text,
.after-text {
    font-family: 'Red Hat Text', sans-serif;
    color: #ED2838;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: inline;
    vertical-align: baseline;
    line-height: 1.2;
}

/* Animated Text Container */
.animated-text-container {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    vertical-align: baseline;
}

.animated-word {
    font-family: 'Red Hat Text', sans-serif;
    position: relative;
    display: none;
    opacity: 0;
    font-weight: 700;
    font-size: 16px;
    color: #ED2838;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #ED2838;
    animation: blink 1s infinite;
    line-height: 1.2;
    vertical-align: baseline;
    top: 4px;
    text-transform: uppercase;
    width: 0;
    max-width: 0;
    min-width: 0;
    box-sizing: border-box;
}

.animated-word.active {
    opacity: 1;
    display: inline-block;
    width: 0;
    min-width: 0;
    box-sizing: border-box;
    animation: typewriter 2s steps(20) forwards, blink 1s infinite;
}

.animated-word.typing-out {
    animation: typewriter-reverse 1s steps(20) forwards;
}

/* Typewriter Animations */
@keyframes typewriter {
    0% {
        width: 0;
        max-width: 0;
        border-right: 3px solid #ED2838;
    }
    99% {
        width: 100%;
        max-width: 100%;
        border-right: 3px solid #ED2838;
    }
    100% {
        width: 100%;
        max-width: 100%;
        border-right: none;
    }
}

@keyframes typewriter-reverse {
    0% {
        width: 100%;
        border-right: 3px solid #ED2838;
    }
    100% {
        width: 0;
        border-right: 3px solid #ED2838;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: #ED2838;
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Individual letter animation (for enhanced effect) */
.animated-word.letter-animation {
    border-right: none;
}

.animated-word .letter {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterDrop 0.3s forwards;
    vertical-align: baseline;
}

@keyframes letterDrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Header */
.products-header {
    text-align: center;
}

.products-header h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.products-header h3 {
    font-family: 'Red Hat Text', sans-serif;
    color: #333;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4;
}

.products-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 35px 36px 0;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 61, 111, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(27, 61, 111, 0.3);
}

/* Product Images */
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 30px;
    text-align: center;
}

.product-content h4 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin: 80px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #004e7c;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004e7c;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: lowercase;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* Footer */
.footer {
    background-color: #1b3e70;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Red Hat Text', sans-serif;
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-section .phone {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.contact-section .phone a {
    color: #fff;
}

.address p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background-color: #34495e;
    border-radius: 12px;
}

.newsletter-section h3 {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: #bdc3c7;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

/* Social Section */
.social-section {
    text-align: center;
    margin-bottom: 40px;
}

.social-section h3 {
    font-family: 'Red Hat Text', sans-serif;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #34495e;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #bdc3c7;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: white;
}

/* Individual social media brand colors */
.social-icon.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-icon.twitter:hover {
    background-color: #000000;
    border-color: #000000;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-logo-section img {
    max-width: 160px;
    width: 100%;
    height: auto;
}

.product-details-section > .container-custom {
    display: flex;
    justify-content: center;
}

.product-details-section .product-wrapper {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Responsive adjustments for the new logo column in the footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-logo-section {
        grid-column: 1 / -1 !important;
        margin-bottom: 30px;
        justify-content: center !important;
    }
    
    .container {
        padding: 0 36px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
    }
    
    .trusted-features {
        gap: 30px;
    }
    
    .feature {
        font-size: 16px;
    }
    
    .faq-banner-section {
        min-height: 310px;
        padding: 60px 0 50px;
    }
    
    .parallax-background {
        background-attachment: scroll;
    }
    
    .faq-title {
        font-size: 48px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .footer-content {
        grid-template-columns: 1fr !important;
    }
    .footer-logo-section {
        margin-bottom: 20px;
    }

    .main-nav {
        display: none;
    }
    
    .search-and-cta-nav {
        display: none;
    }
        
    .header-content {
        justify-content: space-between;
        position: relative;
        z-index: 1002;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .search-box {
        display: none;
    }
    
    .faq-banner-section {
        min-height: 260px;
        padding: 60px 0 50px;
        text-align: center;
    }
    
    .faq-banner-content {
        text-align: left;
    }
    
    .faq-title {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .faq-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-nav {
        margin-bottom: 25px;
    }
    
    .breadcrumb-nav p {
        font-size: 13px;
    }

    .container-custom {
        top: -80px;
    }

    .product-wrapper {
        padding: 30px;
        gap: 30px;
        flex-direction: column;
        text-align: center;
    }

    .product-img-left {
        max-width: 100%;
        min-width: auto;
    }

    .product-content-right {
        min-width: auto;
    }

    .product-content-right h2 {
        font-size: 32px;
    }

    .product-content-right h3 {
        font-size: 20px;
    }

    .product-content-right p {
        font-size: 16px;
    }
    
    .faq-question h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .faq-question {
        padding: 24px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }

    .faq-answer.show {
        padding: 20px 24px 28px;
    }
    
    .faq-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    .main-content {
        padding: 40px 0;
    }

    .faq-content {
        margin: 20px auto;
    }
    
    .solutions-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .animated-text-heading {
        font-size: 32px;
        min-height: 100px;
        align-items: baseline;
        gap: 5px;
    }
    
    .animated-text-container {
        margin: 0 3px;
    }
    
    .before-text,
    .after-text {
        font-size: 14px;
    }
    
    .animated-word {
        font-size: 14px;
        border-right-width: 2px;
    }
    
    .discover-section {
        min-height: 600px;
        padding: 60px 0;
    }
    
    .parallax-background-discover {
        background-attachment: scroll;
    }
    
    .animated-text-section {
        margin: 0 10px 60px;
        padding: 40px 20px;
    }
    
    .products-header {
        margin: 0 10px 40px;
        padding: 40px 20px;
    }
    
    .products-header h2 {
        font-size: 32px;
    }
    
    .products-header h3 {
        font-size: 20px;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 10px;
    }
    
    .products-section h2 {
        font-size: 28px;
    }
    
    .contact-form-section {
        padding: 40px 30px;
        margin: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .covid-banner {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .quote-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .faq-banner-section {
        min-height: 350px;
        padding: 50px 0 40px;
    }
    
    .faq-title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .breadcrumb-nav {
        margin-bottom: 20px;
    }
    
    .breadcrumb-nav p {
        font-size: 12px;
    }

    .container-custom {
        top: -60px;
    }

    .product-wrapper {
        padding: 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .product-content-right h2 {
        font-size: 28px;
    }

    .product-content-right h3 {
        font-size: 18px;
    }

    .product-content-right p {
        font-size: 15px;
    }

    .product-content-right ul li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }

    .product-content-right ul li:before {
        font-size: 16px;
        top: 10px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        line-height: 1.3;
        padding-right: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
        font-size: 15px;
    }

    .faq-answer.show {
        padding: 15px 20px 25px;
    }

    .faq-answer h2 {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .faq-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .faq-content {
        max-width: 100%;
        margin: 15px auto 30px;
    }

    .main-content {
        padding: 30px 0;
    }
    
    .solution-item,
    .product-card {
        padding: 20px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .container {
        padding: 0 36px;
    }
    
    .animated-text-heading {
        font-size: 24px;
        min-height: 80px;
        align-items: baseline;
        gap: 3px;
    }
    
    .animated-text-container {
        margin: 0 2px;
    }
    
    .before-text,
    .after-text {
        font-size: 12px;
    }
    
    .animated-word {
        font-size: 12px;
        border-right-width: 2px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .discover-section {
        min-height: 500px;
        padding: 40px 0;
    }
    
    .animated-text-section {
        margin: 0 5px 40px;
        padding: 30px 15px;
    }
    
    .products-header {
        margin: 0 5px 30px;
        padding: 30px 15px;
    }
    
    .products-header h2 {
        font-size: 28px;
    }
    
    .products-header h3 {
        font-size: 18px;
    }
    
    .products-header p {
        font-size: 16px;
    }
    
    .product-cards {
        margin: 0 5px;
        gap: 20px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h4 {
        font-size: 20px;
    }
}

/* Ripple Effect for Interactive Elements */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Focus Styles */
.faq-question:focus-visible {
    outline: 3px solid rgba(27, 61, 111, 0.3);
    outline-offset: 2px;
}

/* Enhanced Hover Effects */
.product-wrapper:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.faq-answer a.btn {
    display: inline-block;
    background: linear-gradient(135deg, #1B3D6F 0%, #004e7c 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Red Hat Text', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 61, 111, 0.3);
    margin: 10px 0;
}

.faq-answer a.btn:hover {
    background: linear-gradient(135deg, #ED2838 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 40, 56, 0.4);
    color: white;
    border-bottom: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #004e7c;
    outline-offset: 2px;
} 

button:focus,
a:focus {
    outline: none;
    outline-offset: 0;
}

.search-and-cta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-left: auto;
}

/* Search Toggle Button */
.search-toggle-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-toggle-btn:focus,
.search-toggle-btn:hover {
    border: none;
    outline: none;
    background: rgba(27, 61, 111, 0.1);
    transform: scale(1.1);
}

.search-toggle-btn .search-icon path {
    fill: #1B3D6F;
}

.search-toggle-btn .close-icon path {
    stroke: #1B3D6F;
}


.search-toggle-btn:hover svg path {
    fill: #ed2838;
}

.search-toggle-btn .search-icon,
.search-toggle-btn .close-icon {
    transition: all 0.3s ease;
}

/* Search Popup Overlay */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Popup Content */
.search-popup-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-popup-overlay.active .search-popup-content {
    transform: translateY(0) scale(1);
}

/* Search Form */
.search-popup-form {
    padding: 40px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.search-input-wrapper:focus-within {
    border-color: #004e7c;
    box-shadow: 0 0 0 4px rgba(0, 78, 124, 0.1);
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-submit-btn {
    background: transparent;
    border: none;
    padding: 18px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.search-submit-btn:hover {
    background: transparent;
    transform: scale(1.05);
}

.search-submit-btn:active {
    transform: scale(0.95);
}

.search-hint {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design for Search Popup */
@media (max-width: 768px) {
    .search-popup-overlay {
        padding-top: 80px;
    }
    
    .search-popup-form {
        padding: 30px 25px;
    }
    
    .search-input {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .search-submit-btn {
        padding: 15px 20px;
    }
}

/* Legacy styles - kept for backward compatibility */
.form-lightbox-wrapper {
    display: none;
}

.dropdown {
    padding: 18px 0 40px;
}

.dropdown:hover > ul.dropdown-menu,
.dropdown > a:hover + ul.dropdown-menu {
    display: block;
}

.main-nav {
    position: relative;
    display: none;
}

.container.container-footer,
.container.container-header {
    max-width: 100%;
    padding: 0 36px;
}

.dropdown-menu  > .dropdown-submenu .submenu {
    display: none;
}

.dropdown-submenu {
    position: relative;
}

.js-arrow-dropdown-menu .fas {
    color: #ed2838;
}

.dropdown-submenu .js-arrow-dropdown-menu {
    position: absolute;
    top: 10px;
    right: 10px;
}

.dropdown-menu li {
    padding: 5px 25px;
}

.dropdown-submenu:hover > ul.submenu {
    display: block;
}

#breadcrumbs {
    background: #1b3d6f1a;
    display: inline-block;
    border-radius: 7px;
    padding: 8px 20px;
    letter-spacing: 1px;
    color: #093c718c;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: "Red Hat Display", sans-serif;
}

#breadcrumbs a {
    color: #1B3D6F;
    font-weight: 500;
    font-family: "Red Hat Display", sans-serif;
    text-decoration: none;
}

#breadcrumbs span {
    font-size: 15px;
}

.nav-link:hover {
    color: #ED2838;
}

.hamburger-menu {
    display: flex;
}

.btn-cta-primary {
    display: none;
}

@media( min-width:1025px ) {

    a.nav-link.non-linkable {
        pointer-events: none;
        cursor: default;
    }

    .faq-header h4 {
        font-size: 16px;
    }

    .main-nav {
        display: block;
    }
     
    .header-content {
        padding-bottom: 0;
    }     

    .search-and-cta-nav {
        margin-left: initial;
    }

    .btn-cta-primary {
        display: block;
    }

    .hamburger-menu {
        display: none;
    }

    .dropdown-menu > li:first-child,
    .submenu > li:first-child {
        padding-top: 15px;
    }

    .dropdown-menu > li:last-child,
    .submenu > li:last-child {
        padding-bottom: 15px;
    }

    .dropdown-menu > li:first-child .js-arrow-dropdown-menu {
        top: 20px;
    }

    .dropdown:hover > .js-arrow-dropdown-menu i {
        transform: rotate(180deg);
    }

    .dropdown-submenu > .js-arrow-dropdown-menu i {
        transform: rotate(-90deg);
    }
    .dropdown-submenu:hover > .js-arrow-dropdown-menu i {
        transform: rotate(90deg);
    }

    nav.main-nav ul.dropdown-menu {
        display: none;
        position: absolute;
        box-shadow: 1px 3px 19px 1px rgba(0, 0, 0, 0.41);
        top: 90px;
        background: #fff;
        border-radius: 3px;
        min-width:250px;
        max-width:250px;
        width:100%;
    }

    .dropdown-submenu:hover > ul.submenu {
        display: block;
        position: absolute;
        background: #fff;
        box-shadow: 1px 3px 19px 1px rgba(0, 0, 0, 0.41);
        border-radius: 3px;
        top: 0;
        left: 250px;
        width: 100%;
    }

    .main-nav {
        margin-left: auto;
        margin-right: 15px;
    }

    .search-box-container {
        position: relative;
        top: -10px;
    }

    .nav-link {
        font-size: 18px;
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 15px;
    }
}


@media( min-width:1200px ) {
    .nav-link {
        font-size: 22px;
    }

    .main-nav ul {
        gap: 30px;
    }

}

.product-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: 0 36px;
}

@media( min-width:600px ) {
    .product-wrapper {
        padding: 50px;
        gap: 60px;
    }
}

.product-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    z-index: -1;
}

.product-img-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.product-img-left {
    flex: 1;
    max-width: 500px;
    min-width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

@media( min-width:600px ) {
    .product-img-left {
        min-width: 300px;
    }
}

.product-img-left:hover {
    transform: scale(1.02);
}

.product-img-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-content-right {
    flex: 1;
}

@media( min-width:600px ) {
    .product-content-right {
        min-width: 400px;
    }
}

.product-content-right .subheading {
    color: #ED2838;
    font-family: 'Red Hat Text', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-content-right h2 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-content-right h3 {
    font-family: 'Red Hat Text', sans-serif;
    color: #1B3D6F;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.product-content-right p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-content-right ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.product-content-right ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-content-right ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.product-content-right ul li:last-child {
    border-bottom: none;
}

.product-content-right a {
    color: #1B3D6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-content-right a:hover {
    color: #ED2838;
    text-decoration: underline;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 30px;

    li p {
        margin-top: 0;
    }

    li:not(:last-child) {
        margin-bottom: 15px;
    }

    li p:not(:last-child) {
        margin-bottom: 0;
    }
}

.faq-banner-section--home {
    padding: 120px 0;
    min-height: 0;
}