/* ============================================
   SEALTEK SOLUTIONS - COMPLETE STYLESHEET
   ============================================ */

/* Global Styles & CSS Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #0052a3;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--light-color) !important; }

/* ============================================
   INTERACTIVE NAVBAR STYLES
   ============================================ */

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar .contact-info a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.top-bar .contact-info a i {
    margin-right: 8px;
    font-size: 16px;
}

.top-bar .contact-info a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.btn-quote {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
}

.btn-quote:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Navbar Styles */
.navbar {
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    background-color: var(--white) !important;
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    max-height: 5rem;
    transition: all var(--transition-speed) ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

/* Navbar Navigation */
.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all var(--transition-speed) ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

/* Dropdown Arrow */
.nav-link .dropdown-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition-speed) ease;
    font-size: 12px;
    line-height: 1;
}

.navbar-nav .nav-item.dropdown > .nav-link .dropdown-arrow {
    margin-left: 4px;
}

.navbar-nav .nav-item.dropdown > .nav-link:hover .dropdown-arrow,
.navbar-nav .nav-item.dropdown.show > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* ============================================
   INTERACTIVE NAVBAR STYLES - FIXED
   ============================================ */

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 0; /* Changed from 15px to 0 to prevent gap */
    animation: fadeInDown 0.3s ease;
    min-width: 240px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
}

/* Show dropdown when parent has show class */
.dropdown-menu.show {
    display: block;
}

/* Desktop hover - show dropdown */
@media (min-width: 992px) {
    /* Remove gap between nav-link and dropdown */
    .nav-item.dropdown {
        position: relative;
    }
    
    .nav-item.dropdown > .nav-link {
        padding-bottom: 15px; /* Extend clickable area */
    }
    
    /* Show dropdown on hover */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    
    /* Keep dropdown visible when hovering over it */
    .dropdown-menu:hover {
        display: block;
    }
}

/* Mobile - dropdown toggle class */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        display: none;
        margin-top: 8px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
        background: var(--light-color);
    }
    
    .dropdown-menu.show {
        display: block;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 25px;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    padding-left: 30px;
    border-left-color: var(--white);
}

.dropdown-item.active {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

@media (max-width: 991px) {
    .dropdown-item {
        padding: 10px 30px;
        border-left: none;
        border-radius: 4px;
        margin: 4px 10px;
    }

    .dropdown-item:hover {
        background-color: var(--primary-color);
        padding-left: 30px;
        border-left: none;
    }
}

/* Dropdown Arrow */
.nav-link .dropdown-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition-speed) ease;
    font-size: 12px;
    line-height: 1;
}

.navbar-nav .nav-item.dropdown > .nav-link .dropdown-arrow {
    margin-left: 4px;
}

.navbar-nav .nav-item.dropdown > .nav-link:hover .dropdown-arrow,
.navbar-nav .nav-item.dropdown.show > .nav-link .dropdown-arrow,
.navbar-nav .nav-item.dropdown > .nav-link[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}



/* Navbar Styles */
.navbar {
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    background-color: var(--white) !important;
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    max-height: 5rem;
    transition: all var(--transition-speed) ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

/* Navbar Navigation */
.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all var(--transition-speed) ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

/* Responsive Navbar */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    transition: all var(--transition-speed) ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        margin-top: 20px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-link .dropdown-arrow {
        margin-left: 8px;
    }
}

/* Navbar Hide/Show on Scroll */
.navbar.hide-navbar {
    transform: translateY(-100%);
}

/* Active State Indicator */
.nav-link.active {
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 25px;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    padding-left: 30px;
    border-left-color: var(--white);
}

.dropdown-item.active {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Responsive Navbar */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    transition: all var(--transition-speed) ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        margin-top: 20px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        background: var(--light-color);
        border-radius: 8px;
        margin-top: 5px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .dropdown-item {
        padding: 10px 30px;
        border-left: none;
        border-radius: 4px;
        margin: 4px 10px;
    }

    .dropdown-item:hover {
        background-color: var(--primary-color);
        padding-left: 30px;
        border-left: none;
    }

    .show > .dropdown-menu {
        display: block;
    }

    .nav-link .dropdown-arrow {
        margin-left: 8px;
    }
}

/* Navbar Hide/Show on Scroll */
.navbar.hide-navbar {
    transform: translateY(-100%);
}

/* Active State Indicator */
.nav-link.active {
    font-weight: 600;
}




/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.carousel {
    position: relative;
}

.carousel-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    left: 10%;
    right: auto;
    text-align: left;
    z-index: 2;
    max-width: 600px;
}

.carousel-caption h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
    animation: fadeInLeft 0.8s ease;
}

.carousel-caption p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-caption .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    animation: fadeInLeft 1.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-caption .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.8;
    transition: opacity var(--transition-speed) ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
    transition: all var(--transition-speed) ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--white);
    opacity: 0.5;
    transition: all var(--transition-speed) ease;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   DISTRIBUTOR SECTION
   ============================================ */
.distributor-section {
    background-color: var(--white);
    padding: 60px 0;
}

.distributor-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.dealer-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.dealer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dealer-card img {
    margin: 0 auto;
    transition: all var(--transition-speed) ease;
}

.dealer-card:hover img {
    transform: scale(1.05);
}

.dealer-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-top: 20px;
    font-size: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
}

.about-section h5 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 14px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.2;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-section .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.about-section .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.about-section img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) ease;
}

.about-section img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-section blockquote {
    background-color: var(--light-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-section blockquote h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: none;
    font-size: 18px;
}

.about-section blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-color);
}









/* ============================================
   PRODUCT CAROUSEL - CSS STYLES (FIXED)
   Replace the entire carousel CSS with this
   ============================================ */

.products-section {
    background-color: var(--white);
    padding: 80px 0;
}

.products-section .text-center h5 {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.products-section .text-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */
.product-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    gap: 20px;
    padding: 0;
}

.carousel-slide {
    min-width: calc(33.333% - 14px);
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
    flex-shrink: 0;
}

/* ============================================
   PRODUCT CARD - MODERN DESIGN
   ============================================ */
.product-card-modern {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card-modern:hover::before {
    left: 100%;
}

/* ============================================
   PRODUCT IMAGE WRAPPER
   ============================================ */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: brightness(1);
}

.product-card-modern:hover .product-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(0.7) saturate(1.2);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(0, 82, 163, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgeBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgeBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   PRODUCT INFO
   ============================================ */
.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-info {
    color: white;
}

.product-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.4s ease;
    min-height: 50px;
}

.product-card-modern:hover .product-info h4 {
    color: white;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    transition: color 0.4s ease;
}

.product-card-modern:hover .product-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* Product Detail Button */
.btn-product-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    border: 2px solid transparent;
}

.product-card-modern:hover .btn-product-detail {
    background: white;
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.btn-product-detail i {
    transition: transform 0.3s ease;
    font-size: 11px;
}

.product-card-modern:hover .btn-product-detail i {
    transform: translateX(3px);
}

/* ============================================
   CAROUSEL CONTROLS
   ============================================ */
.carousel-control {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.carousel-control:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.carousel-control:active {
    transform: scale(0.95);
}

.carousel-control-prev {
    order: -1;
}

.carousel-control-next {
    order: 3;
}

.carousel-control i {
    transition: transform 0.3s ease;
}

.carousel-control:hover i {
    transform: scale(1.2);
}

/* ============================================
   CAROUSEL INDICATORS
   ============================================ */
.carousel-indicators-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.4);
}

.carousel-indicator:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .carousel-slide {
        min-width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    .products-section {
        padding: 60px 0;
    }

    .products-section .text-center h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .carousel-slide {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }

    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h4 {
        font-size: 16px;
        min-height: 45px;
    }

    .product-info p {
        font-size: 13px;
    }

    .btn-product-detail {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Small Devices (Landscape Phones, 576px to 767px) */
@media (max-width: 767px) {
    .products-section {
        padding: 40px 0;
    }

    .products-section .text-center h5 {
        font-size: 12px;
    }

    .products-section .text-center h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .product-carousel-wrapper {
        gap: 10px;
        margin: 30px auto;
    }

    .carousel-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-track {
        gap: 15px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-card-modern {
        border-radius: 12px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h4 {
        font-size: 15px;
        margin-bottom: 10px;
        min-height: auto;
    }

    .product-info p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .btn-product-detail {
        padding: 8px 16px;
        font-size: 11px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators-container {
        margin-top: 30px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
    .products-section {
        padding: 30px 0;
    }

    .products-section .text-center h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .product-carousel-wrapper {
        gap: 8px;
    }

    .carousel-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-track {
        gap: 12px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h4 {
        font-size: 14px;
    }

    .product-info p {
        font-size: 11px;
        line-height: 1.5;
    }

    .btn-product-detail {
        padding: 6px 14px;
        font-size: 10px;
    }

    .carousel-indicators {
        gap: 8px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide {
    animation: slideIn 0.6s ease-out forwards;
}

.carousel-slide:nth-child(1) {
    animation-delay: 0.1s;
}

.carousel-slide:nth-child(2) {
    animation-delay: 0.2s;
}

.carousel-slide:nth-child(3) {
    animation-delay: 0.3s;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.carousel-control:focus,
.carousel-indicator:focus,
.btn-product-detail:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track,
    .product-card-modern,
    .carousel-control,
    .carousel-indicator,
    .btn-product-detail {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.carousel-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-loading {
    opacity: 0.6;
    pointer-events: none;
}






/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities-section {
    padding: 80px 0;
}

.capabilities-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.capabilities-section .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

.capabilities-list li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.capabilities-list li i {
    margin-right: 15px;
    font-size: 20px;
    color: var(--primary-color);
    transition: transform var(--transition-speed) ease;
}

.capabilities-list li:hover i {
    transform: scale(1.2);
}

.capabilities-section img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) ease;
}

.capabilities-section img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   VISION MISSION SECTION
   ============================================ */
.vision-mission-section {
    padding: 80px 0;
    background-color: var(--white);
}

.vm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-speed) ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(360deg);
}

.vm-icon i {
    font-size: 36px;
    color: var(--white);
}

.vm-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color var(--transition-speed) ease;
}

.vm-card:hover h4 {
    color: var(--primary-color);
}

.vm-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-section .row {
    position: relative;
    z-index: 1;
}

.newsletter-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn-light {
    padding: 12px 30px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    border: none;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form .btn-light:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateX(-3px);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-contact li,
.footer-links li {
    padding: 8px 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: #bdc3c7;
}

.footer-contact li i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-links a {
    color: #bdc3c7;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer .text-center p {
    color: #95a5a6;
    font-size: 14px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.back-to-top i {
    line-height: 50px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (Desktops, 992px and up) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    /* Carousel */
    .carousel-item {
        height: 450px;
    }

    .carousel-caption h2 {
        font-size: 36px;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .carousel-caption {
        left: 5%;
        max-width: 90%;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .about-section h2,
    .products-section h2,
    .capabilities-section h2 {
        font-size: 28px;
    }

    /* Navigation */
    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    /* Sections */
    .about-section,
    .products-section,
    .capabilities-section,
    .vision-mission-section {
        padding: 60px 0;
    }

    .distributor-section {
        padding: 40px 0;
    }

    .newsletter-section {
        padding: 40px 0;
    }

    /* Product Cards */
    .product-image {
        height: 220px;
    }
}

/* Small Devices (Landscape Phones, 576px to 767px) */
@media (max-width: 767px) {
    /* Carousel */
    .carousel-item {
        height: 350px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        bottom: 40%;
    }

    .carousel-caption h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .carousel-caption p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .carousel-caption .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Top Bar */
    .top-bar {
        text-align: center;
        padding: 15px 0;
    }

    .top-bar .col-md-6 {
        margin-bottom: 10px;
    }

    .top-bar .col-md-6:last-child {
        margin-bottom: 0;
    }

    .top-bar .contact-info {
        justify-content: center;
    }

    .top-bar .text-end {
        text-align: center !important;
    }

    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Sections */
    .about-section,
    .products-section,
    .capabilities-section,
    .vision-mission-section {
        padding: 40px 0;
    }

    .distributor-section,
    .newsletter-section {
        padding: 30px 0;
    }

    /* About Section */
    .about-section .col-lg-6:first-child {
        margin-bottom: 30px;
    }

    /* Newsletter */
    .newsletter-section h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .newsletter-section p {
        text-align: center;
        margin-bottom: 20px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        margin: 0 auto;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn-light {
        border-radius: 4px;
        margin-bottom: 10px;
        width: 100%;
    }

    /* Product Cards */
    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h4 {
        font-size: 18px;
    }

    .product-content p {
        font-size: 14px;
    }

    /* Capabilities */
    .capabilities-section .col-lg-6:last-child {
        margin-top: 30px;
    }

    .capabilities-list li {
        font-size: 16px;
        padding: 12px 0;
    }

    /* VM Cards */
    .vm-card {
        margin-bottom: 20px;
    }

    /* Footer */
    .footer .col-lg-4 {
        margin-bottom: 30px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer h5,
    .footer-contact,
    .footer-links {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 22px;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .product-image {
        height: 180px;
    }

    .dealer-card {
        padding: 30px 20px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
    }

    .vm-icon i {
        font-size: 30px;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .capabilities-list li {
        font-size: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Apply animations */
.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .top-bar,
    .carousel,
    .newsletter-section,
    .back-to-top {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0052cc;
        --text-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ============================================
   SELECTION STYLES
   ============================================ */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.spinner {
    border: 3px solid var(--light-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   END OF STYLESHEET
   ============================================ */


   /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            color: white;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        /* Welcome Section */
        .welcome-section {
            padding: 80px 0;
            background: white;
        }

        .welcome-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease-out;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .lead-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .about-img {
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            animation: fadeInRight 0.8s ease-out;
            transition: transform 0.3s;
            height: 50rem;
        }

        .about-img:hover {
            transform: scale(1.02);
        }

        /* Value Cards */
        .value-cards {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .value-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            animation: fadeInUp 0.6s ease-out;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            transition: transform 0.3s;
        }

        .value-card:hover .value-icon {
            transform: rotateY(360deg);
        }

        .value-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .value-card p {
            color: #666;
            line-height: 1.8;
            text-align: justify;
        }

        /* Vision Mission Section */
        .vision-mission {
            padding: 80px 0;
            background: white;
        }

        .vm-box {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 15px;
            padding: 50px 40px;
            height: 100%;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

        .vm-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30px, -30px); }
        }

        .vm-box .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .vm-box h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .vm-box p {
            font-size: 1.1rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Commitment Section */
        .commitment-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .commitment-list {
            list-style: none;
            padding: 0;
        }

        .commitment-list li {
            padding: 20px;
            margin-bottom: 15px;
            background: white;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            animation: fadeInLeft 0.6s ease-out;
        }

        .commitment-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .commitment-list i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.3rem;
        }

        .commitment-list strong {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-cta {
            background: white;
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 60px 0 20px;
        }

        .footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-contact li,
        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-contact i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 20px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer hr {
            border-color: #333;
            margin: 40px 0 20px;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .value-card {
                margin-bottom: 30px;
            }
        }



/* ============================================
   TRIANGLE ABOUT PAGE - ADDITIONAL STYLES
   Add this to your existing style.css or create triangle-about.css
   ============================================ */

/* History Timeline Section */
.history-section {
    padding: 80px 0;
    background: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-color);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -12px;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px var(--light-color), 0 0 20px rgba(0, 102, 204, 0.4);
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* DURLON Section */
.durlon-section {
    padding: 80px 0;
    background: var(--white);
}

.durlon-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease-out;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Product Range Section */
.product-range-section {
    padding: 80px 0;
    background: var(--light-color);
}

.product-range-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    border: 2px solid transparent;
}

.product-range-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.product-range-card:hover .product-icon {
    transform: rotateY(360deg);
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.product-range-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-range-card:hover h4 {
    color: var(--primary-color);
}

.product-range-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 80px 0;
    background: var(--white);
}

.manufacturing-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.manufacturing-list li {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease-out;
}

.manufacturing-list li:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
    border-left-width: 6px;
}

.manufacturing-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
    margin-top: 3px;
}

.manufacturing-list strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Global Presence Section */
.global-presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.global-presence-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.global-presence-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.global-presence-section .section-title,
.global-presence-section .lead-text {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(360deg);
}

.stats-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stats-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stats-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: var(--light-color);
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.partnership-benefits li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.partnership-benefits li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.partnership-benefits i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.partnership-benefits li:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item .timeline-marker {
        left: 18px !important;
        right: auto !important;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .manufacturing-list li {
        flex-direction: column;
        text-align: center;
    }

    .manufacturing-list i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .stats-card {
        margin-bottom: 20px;
    }

    .product-range-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .timeline-item {
        padding-left: 60px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .product-icon {
        width: 70px;
        height: 70px;
    }

    .product-icon i {
        font-size: 2rem;
    }

    .stats-card h3 {
        font-size: 2.5rem;
    }
}

/* Counter Animation Class */
.counter {
    display: inline-block;
}

/* Stagger Delays for Animations */
.product-range-card:nth-child(1) { animation-delay: 0.1s; }
.product-range-card:nth-child(2) { animation-delay: 0.2s; }
.product-range-card:nth-child(3) { animation-delay: 0.3s; }
.product-range-card:nth-child(4) { animation-delay: 0.4s; }
.product-range-card:nth-child(5) { animation-delay: 0.5s; }
.product-range-card:nth-child(6) { animation-delay: 0.6s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.stats-card:nth-child(1) { animation-delay: 0.1s; }
.stats-card:nth-child(2) { animation-delay: 0.2s; }
.stats-card:nth-child(3) { animation-delay: 0.3s; }
.stats-card:nth-child(4) { animation-delay: 0.4s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.manufacturing-list li:nth-child(1) { animation-delay: 0.1s; }
.manufacturing-list li:nth-child(2) { animation-delay: 0.2s; }
.manufacturing-list li:nth-child(3) { animation-delay: 0.3s; }
.manufacturing-list li:nth-child(4) { animation-delay: 0.4s; }
.manufacturing-list li:nth-child(5) { animation-delay: 0.5s; }




/* ============================================
   CERTIFICATE PAGE - ADDITIONAL STYLES
   Add this to certificate.css
   ============================================ */

/* Certificate Section */
.certificate-section {
    padding: 80px 0;
    background: var(--white);
}

/* Certificate Introduction */
.certificate-intro {
    animation: fadeInUp 0.6s ease-out;
}

.certificate-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Certificate Card */
.certificate-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    border: 1px solid var(--border-color);
}

.certificate-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.certificate-stamp {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.certificate-stamp i {
    font-size: 2.5rem;
    color: white;
}

.certificate-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.certificate-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Certificate Image Container */
.certificate-image-container {
    padding: 40px;
    background: var(--light-color);
}

.certificate-frame {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.certificate-frame:hover .certificate-img {
    transform: scale(1.02);
}

/* Zoom Overlay */
.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.certificate-frame:hover .zoom-overlay {
    opacity: 1;
}

.zoom-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.zoom-btn i {
    font-size: 1.2rem;
}

/* Certificate Details */
.certificate-details {
    padding: 40px;
    background: white;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.detail-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 40px;
}

.detail-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Certificate Info Cards */
.certificate-info {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.info-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotateY(360deg);
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--light-color);
}

.trust-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.trust-list li:hover {
    padding-left: 10px;
}

.trust-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
    margin-top: 3px;
}

.trust-list strong {
    color: var(--secondary-color);
}

.trust-list span {
    color: var(--text-color);
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badge-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.badge-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.badge-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Image Zoom Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow: auto;
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Modal Controls */
.modal-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.control-btn {
    background: white;
    color: var(--dark-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .certificate-section {
        padding: 60px 0;
    }

    .trust-section {
        padding: 60px 0;
    }

    .certificate-header {
        padding: 30px 20px;
    }

    .certificate-image-container {
        padding: 30px 20px;
    }

    .certificate-details {
        padding: 30px 20px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .badge-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .certificate-header h3 {
        font-size: 1.5rem;
    }

    .certificate-stamp {
        width: 60px;
        height: 60px;
    }

    .certificate-stamp i {
        font-size: 2rem;
    }

    .certificate-image-container {
        padding: 20px;
    }

    .certificate-frame {
        padding: 15px;
    }

    .certificate-details {
        padding: 20px;
    }

    .detail-item {
        margin-bottom: 15px;
    }

    .info-card {
        margin-bottom: 20px;
    }

    .trust-list li {
        flex-direction: column;
    }

    .trust-list i {
        margin-bottom: 10px;
    }

    .modal-container {
        max-width: 100vw;
        max-height: 100vh;
        padding: 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .modal-content {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .zoom-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .zoom-btn span {
        display: none;
    }

    .certificate-badge {
        font-size: 12px;
        padding: 6px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .badge-item i {
        font-size: 2.5rem;
    }

    .badge-item h5 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .back-to-top,
    .cta-section,
    .footer,
    .zoom-overlay,
    .modal-controls {
        display: none !important;
    }

    .certificate-card {
        box-shadow: none;
        border: 2px solid #000;
    }

    .certificate-img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* Accessibility */
.zoom-btn:focus,
.control-btn:focus,
.modal-close:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading State for Image */
.certificate-img.loading {
    opacity: 0.5;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}




/* ============================================
   INDUSTRIES PAGE - CUSTOM STYLES
   ============================================ */

/* Introduction Section */
.intro-section {
    padding: 20px 0;
    background: var(--white);
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.intro-content {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.intro-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.intro-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-transform: lowercase !important;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--light-color);
}

/* Industry Card */
.industry-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Industry Image */
.industry-image {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 82, 163, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover .industry-overlay {
    opacity: 1;
}

.industry-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.industry-card:hover .industry-icon {
    transform: scale(1);
}

.industry-icon i {
    font-size: 3rem;
    color: white;
}

/* Industry Content */
.industry-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-content h3 {
    color: var(--primary-color);
}

.industry-content > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Industry Features List */
.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.industry-features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.industry-features li:hover {
    padding-left: 5px;
    color: var(--primary-color);
}

.industry-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
    transition: transform 0.3s ease;
}

.industry-features li:hover i {
    transform: scale(1.2);
}

/* Industry Detail Button */
.btn-industry-detail {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-industry-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: white;
}

.btn-industry-detail i {
    transition: transform 0.3s ease;
}

.btn-industry-detail:hover i {
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg) scale(1.1);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-card:hover h4 {
    color: var(--primary-color);
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stagger Animation Delays */
.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-card:nth-child(6) { animation-delay: 0.6s; }
.industry-card:nth-child(7) { animation-delay: 0.7s; }
.industry-card:nth-child(8) { animation-delay: 0.8s; }
.industry-card:nth-child(9) { animation-delay: 0.9s; }

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

/* Loading Animation for Images */
.industry-image img.loading {
    opacity: 0.5;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Badge Animation */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.intro-badge {
    animation: fadeInUp 0.6s ease-out, badgePulse 2s ease-in-out infinite 1s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .industries-section {
        padding: 60px 0;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .intro-section {
        padding: 60px 0;
    }

    .intro-content .section-title {
        font-size: 2rem;
    }

    .industry-image {
        height: 220px;
    }

    .industry-content {
        padding: 25px;
    }

    .industry-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .intro-content .section-title {
        font-size: 1.8rem;
    }

    .intro-content .lead-text {
        font-size: 1rem;
    }

    .industry-card {
        margin-bottom: 30px;
    }

    .industry-image {
        height: 200px;
    }

    .industry-content {
        padding: 20px;
    }

    .industry-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .industry-content > p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .industry-features {
        margin-bottom: 20px;
    }

    .industry-features li {
        font-size: 13px;
        padding: 6px 0;
    }

    .btn-industry-detail {
        padding: 10px 20px;
        font-size: 13px;
    }

    .why-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 1.8rem;
    }

    .why-card h4 {
        font-size: 1.2rem;
    }

    .why-card p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .industries-section,
    .why-choose-section,
    .intro-section {
        padding: 40px 0;
    }

    .intro-badge {
        font-size: 12px;
        padding: 6px 20px;
    }

    .intro-content .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .industry-image {
        height: 180px;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
    }

    .industry-icon i {
        font-size: 2.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 1.6rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .page-header,
    .cta-section,
    .footer,
    .back-to-top,
    .btn-industry-detail {
        display: none !important;
    }

    .industry-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }

    .industry-overlay {
        display: none !important;
    }
}

/* Accessibility */
.industry-card:focus,
.why-card:focus,
.btn-industry-detail:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .industry-card,
    .why-card {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .industry-card,
    .why-card,
    .industry-image img,
    .industry-overlay,
    .industry-icon,
    .why-icon,
    .btn-industry-detail,
    .industry-features li {
        animation: none !important;
        transition: none !important;
    }
}

/* Hover Effect Enhancement */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.industry-card:hover::before {
    left: 100%;
}

/* Additional Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-icon:hover {
    animation: float 2s ease-in-out infinite;
}

/* Gradient Text Effect */
.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar for Industry Cards */
.industry-content::-webkit-scrollbar {
    width: 5px;
}

.industry-content::-webkit-scrollbar-track {
    background: var(--light-color);
}

.industry-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.industry-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}




/* ============================================
   RUBBER GASKETS & SHEETS PAGE - CUSTOM STYLES
   Add this to your rubber-gaskets.css file
   ============================================ */

/* Introduction Section */
/* Fix for Introduction Section - Make image match content height */
/* Fix for Introduction Section - Make both columns equal height */
.intro-section .row.align-items-center {
    align-items: stretch !important;
}

.intro-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

/* Replace the existing .intro-image-container and .product-intro-img styles in your CSS with these: */

.intro-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
}

.product-intro-img {
    border-radius: 15px;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' */
    position: relative; /* Changed from 'absolute' to 'relative' */
    max-height: 100%;
}

.intro-image-container:hover .product-intro-img {
    transform: scale(1.05);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}


/* Specifications Highlight */
.specs-highlight {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
}

.spec-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.spec-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Product Types Section */
.product-types-section {
    padding: 80px 0;
    background: var(--light-color);
}



/* Replace the existing .product-type-card and .type-image styles in your CSS with these: */

.product-type-card {
    background: white;
    border-radius: 15px;
    padding: 0; /* Changed from 40px 30px */
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden; /* Changed from visible */
    display: flex;
    flex-direction: column;
}

.product-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.product-type-card:hover::before {
    left: 100%;
}

.product-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Fixed Type Image Container */
.type-image {
    width: 100%;
    height: 250px; /* Fixed height for all images */
    overflow: hidden;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain to show full image */
    padding: 20px; /* Add padding inside the container */
    transition: transform 0.5s ease;
}

.product-type-card:hover .type-image img {
    transform: scale(1.1);
}

/* Type Content - Add padding here instead */
.type-content {
    padding: 30px 30px 40px 30px; /* Add padding to content area */
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.type-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.product-type-card:hover .type-content h3 {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .type-image {
        height: 220px;
    }
    
    .type-image img {
        padding: 15px;
    }
    
    .type-content {
        padding: 25px 25px 35px 25px;
    }
}

@media (max-width: 767px) {
    .type-image {
        height: 200px;
    }
    
    .type-image img {
        padding: 15px;
    }
    
    .type-content {
        padding: 20px 20px 30px 20px;
    }
    
    .product-type-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .type-image {
        height: 180px;
    }
    
    .type-image img {
        padding: 10px;
    }
    
    .type-content {
        padding: 20px;
    }
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.product-type-card:hover .type-icon {
    transform: rotateY(360deg) scale(1.1);
}




.type-description {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.type-features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.type-features li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.type-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 4px;
    min-width: 15px;
}

.type-applications {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.type-applications strong {
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.type-applications p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Specifications Section */
.specifications-section {
    padding: 80px 0;
    background: var(--white);
}

.spec-img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spec-img:hover {
    transform: scale(1.02);
}

.spec-list {
    background: var(--light-color);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    padding-left: 10px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
}

.spec-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.spec-label i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
    min-width: 25px;
}

.spec-value {
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-box:hover h4 {
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg) scale(1.1);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-card:hover h4 {
    color: var(--primary-color);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}

/* Stagger Animations */
.product-type-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.product-type-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.product-type-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.product-type-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.product-type-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.product-type-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

.feature-box:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.feature-box:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.feature-box:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.feature-box:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.why-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.why-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.why-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.why-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.why-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.why-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Responsive Design */
@media (max-width: 991px) {
    .intro-section,
    .product-types-section,
    .specifications-section,
    .features-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .product-type-card {
        padding: 30px 25px;
    }

    .spec-list {
        padding: 30px 25px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .specs-highlight {
        gap: 15px;
    }

    .spec-item {
        padding: 15px;
    }

    .spec-item i {
        font-size: 1.5rem;
        margin-right: 15px;
        min-width: 40px;
    }

    .product-type-card {
        margin-bottom: 20px;
    }

    .type-icon {
        width: 70px;
        height: 70px;
    }

    .type-icon i {
        font-size: 1.8rem;
    }

    .type-content h3 {
        font-size: 1.3rem;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .spec-value {
        text-align: left;
        padding-left: 37px;
    }

    .feature-box {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .why-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .product-badge {
        font-size: 12px;
        padding: 6px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .type-features li {
        font-size: 0.85rem;
    }

    .type-applications strong {
        font-size: 0.9rem;
    }

    .type-applications p {
        font-size: 0.8rem;
    }

    .spec-label {
        font-size: 0.9rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-box h4 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .page-header,
    .cta-section,
    .footer,
    .back-to-top {
        display: none !important;
    }

    .product-type-card,
    .feature-box,
    .why-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
.product-type-card:focus,
.feature-box:focus,
.why-card:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation */
.product-intro-img.loading {
    opacity: 0.5;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   HIGHLIGHT QUOTE SECTION
   ============================================ */
.highlight-quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.highlight-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.highlight-quote-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 163, 0.05) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.highlight-quote-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.5s ease;
}

.highlight-quote-card.delay-1 {
    animation-delay: 0.3s;
}

.highlight-quote-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 102, 204, 0.3);
    border-left-width: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.highlight-quote-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
    font-weight: 700;
    z-index: 0;
    transition: all 0.5s ease;
}

.highlight-quote-card:hover::before {
    color: rgba(255, 255, 255, 0.15);
}

.quote-decoration {
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 82, 163, 0.05));
    border-radius: 50%;
    transition: all 0.6s ease;
}

.highlight-quote-card:hover .quote-decoration {
    transform: scale(1.8) rotate(90deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.highlight-quote-card:hover .quote-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 102, 204, 0.5);
    }
}

.quote-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.5s ease;
}

.highlight-quote-card:hover .quote-icon i {
    color: var(--primary-color);
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.5s ease;
}

.highlight-quote-card:hover .quote-title {
    color: white;
}

.quote-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.5s ease;
}

.highlight-quote-card:hover .quote-title::after {
    width: 100%;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.highlight-quote-card:hover .quote-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .highlight-quote-section {
        padding: 50px 0;
    }

    .highlight-quote-card {
        padding: 35px 30px;
        margin-bottom: 20px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
    }

    .quote-icon i {
        font-size: 1.8rem;
    }

    .quote-title {
        font-size: 1.3rem;
    }

    .quote-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .highlight-quote-section {
        padding: 40px 0;
    }

    .highlight-quote-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .highlight-quote-card::before {
        font-size: 80px;
        top: 10px;
        left: 10px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .quote-icon i {
        font-size: 1.5rem;
    }

    .quote-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .quote-decoration {
        width: 150px;
        height: 150px;
        right: -40px;
    }
}

@media (max-width: 575px) {
    .highlight-quote-card {
        padding: 25px 20px;
        border-left-width: 3px;
    }

    .highlight-quote-card::before {
        font-size: 60px;
    }

    .quote-title {
        font-size: 1.1rem;
    }

    .quote-text {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .highlight-quote-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 2px solid var(--primary-color);
    }

    .quote-decoration {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .highlight-quote-card,
    .quote-icon,
    .quote-decoration {
        animation: none !important;
        transition: none !important;
    }
}




/* ============================================
   CONTACT PAGE - CUSTOM STYLES
   Add this to contact.css
   ============================================ */

/* Contact Introduction Section */
.contact-intro-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

/* Contact Information Cards */
.contact-info-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-form-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form label i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
    outline: none;
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230066cc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

.btn-submit .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 15px;
    animation: fadeInUp 0.5s ease;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.form-success p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Contact Features */
.contact-features {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: 10px;
}

.feature-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    animation: fadeInLeft 0.8s ease;
}

.map-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.map-info h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.map-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.accordion {
    border: none;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background: var(--light-color);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: 2px solid transparent;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.accordion-body {
    background: var(--light-color);
    padding: 25px;
    border-radius: 0 0 10px 10px;
    color: var(--text-light);
    line-height: 1.8;
    border: 2px solid var(--border-color);
    border-top: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-cta-outline {
    background: transparent;
    color: white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Animation Delays */
.contact-info-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.contact-info-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-info-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.contact-info-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-intro-section {
        padding: 50px 0 30px;
    }

    .contact-info-section {
        padding: 30px 0 60px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-content,
    .contact-features {
        padding: 40px 30px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }

    .contact-features {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .contact-intro-section {
        padding: 40px 0 20px;
    }

    .contact-badge {
        font-size: 12px;
        padding: 6px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .contact-info-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }

    .contact-info-card h4 {
        font-size: 1.2rem;
    }

    .contact-form-content,
    .contact-features {
        padding: 30px 20px;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .feature-icon {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .feature-content h5 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 0.9rem;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-form-content .form-group {
        margin-bottom: 20px;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 30px;
        font-size: 14px;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-overlay {
        margin: 15px;
        padding: 20px;
    }

    .map-info h4 {
        font-size: 1.1rem;
    }

    .map-info p {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .top-bar,
    .page-header,
    .map-section,
    .cta-section,
    .footer,
    .back-to-top,
    .btn-submit {
        display: none !important;
    }

    .contact-form-content,
    .contact-features,
    .contact-info-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* Accessibility */
.contact-info-card:focus,
.accordion-button:focus,
.contact-form .form-control:focus,
.btn-submit:focus,
.btn-cta:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .contact-info-card,
    .contact-form-content,
    .contact-features {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-info-card,
    .contact-icon,
    .feature-icon,
    .btn-submit,
    .accordion-button,
    * {
        animation: none !important;
        transition: none !important;
    }
}