/* ================================================
   STICKY CORPORATE NAVIGATION
   ================================================ */

:root {
    --primary-color: #ea222a;
    --primary-color-rgba: 234,34,42;
}

.corporate-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.corporate-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.corporate-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: padding 0.3s ease;
}

.corporate-nav.scrolled .nav-container {
    padding: 15px 30px;
}

/* Logo */
.corporate-nav .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.corporate-nav .nav-logo img {
    height: 55px;
    transition: height 0.3s ease;
}

.corporate-nav.scrolled .nav-logo img {
    height: 45px;
}

/* Menu Items */
.corporate-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 45px;
    flex: 1;
    justify-content: center;
}

.corporate-nav .nav-cta-mobile {
    display: none;
}

.corporate-nav .nav-menu > li {
    position: relative;
}

.corporate-nav .nav-menu > li > a {
    display: block;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.corporate-nav .nav-menu > li > a:hover {
    color: #2c5aa0;
}

/* Hover Underline Animation */
.corporate-nav .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transition: width 0.3s ease;
}

.corporate-nav .nav-menu > li > a:hover::after,
.corporate-nav .nav-menu > li.active > a::after {
    width: 100%;
}

.corporate-nav .nav-menu > li.active > a {
    color: #2c5aa0;
}

/* Dropdown Menu */
.corporate-nav .nav-menu .dropdown {
    position: relative;
}

.corporate-nav .nav-menu .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    color: inherit;
}

.corporate-nav .nav-menu .dropdown-toggle:focus,
.corporate-nav .nav-menu .dropdown-toggle:focus-visible {
    outline: none;
    box-shadow: 0 6px 18px rgba(44, 90, 160, 0.16);
}

.corporate-nav .nav-menu .dropdown-toggle:hover {
    background: rgba(44, 90, 160, 0.06);
    color: #2c5aa0;
}

.corporate-nav .nav-menu .dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.28s ease;
    display: inline-block;
    transform-origin: center;
}

/* rotate caret when dropdown is hovered, opened, or has aria-expanded=true (accessible) */
.corporate-nav .nav-menu .dropdown:hover .dropdown-toggle i,
.corporate-nav .nav-menu .dropdown.open .dropdown-toggle i,
.corporate-nav .nav-menu .dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.corporate-nav .nav-menu .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.corporate-nav .nav-menu .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 20px;
}

.corporate-nav .nav-menu .dropdown-content li {
    list-style: none;
}

.corporate-nav .nav-menu .dropdown-content a {
    display: block;
    padding: 9px 15px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.corporate-nav .nav-menu .dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.corporate-nav .nav-menu .dropdown-content a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 20px;
}

.corporate-nav .nav-menu .dropdown-content a:hover::before {
    width: 4px;
}

/* CTA Button */
.corporate-nav .nav-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgba), 0.18);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.corporate-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--primary-color-rgba), 0.32);
    background: var(--primary-color);
    color: #ffffff;
}

.corporate-nav .nav-cta i {
    margin-right: 6px;
    font-size: 13px;
}

/* Mobile Menu Toggle */
.corporate-nav .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 999999 !important;
}

.corporate-nav .mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.corporate-nav .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.corporate-nav .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.corporate-nav .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .top_nv_bg,
    .nav-container.nav_bg {
        display: none;
    }

    .corporate-nav .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 1001;
    }
    
    .corporate-nav .nav-menu.active {
        max-height: calc(100vh);
        opacity: 1;
        padding: 20px;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .corporate-nav .mobile-toggle {
        display: flex;
    }
    
    .corporate-nav .nav-menu > li {
        width: 100%;
    }
    
    .corporate-nav .nav-menu > li > a::after {
        display: none;
    }
    
    .corporate-nav .nav-menu .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        margin-top: 10px;
        padding: 10px 0 10px 20px;
        background: #f8f9fa;
        transform: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .corporate-nav .nav-menu .dropdown:hover .dropdown-content {
        margin-top: 10px;
    }

    .corporate-nav .nav-menu .dropdown.open .dropdown-content,
    .corporate-nav .nav-menu .dropdown-toggle[aria-expanded="true"] + .dropdown-content {
        opacity: 1;
        visibility: visible;
    }
    
    .corporate-nav .nav-cta-mobile {
        display: block;
    }
    
    .corporate-nav .nav-cta {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    body.has-corporate-nav,
    body.has-corporate-nav.fixed-header {
        padding-top: 75px;
    }
}

@media (max-width: 767px) {
    .corporate-nav .nav-container {
        padding: 15px 20px;
    }
    
    .corporate-nav .nav-logo img {
        height: 45px;
    }
    
    .corporate-nav.scrolled .nav-logo img {
        height: 40px;
    }
}

/* Body padding adjustment for fixed nav */
body.has-corporate-nav {
    padding-top: 95px;
}

body.has-corporate-nav.fixed-header {
    padding-top: 95px;
}

/* Hide old header when corporate nav is active */
body.has-corporate-nav #header {
    display: none;
}


/* ================================================
   CORPORATE FOOTER
   ================================================ */

.corporate-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(44, 90, 160, 0.2);
}

.corporate-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Grid Layout */
.corporate-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Column */
.corporate-footer .footer-column {
    display: flex;
    flex-direction: column;
}

.corporate-footer .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.corporate-footer .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
}

/* Company Info Column */
.corporate-footer .company-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.corporate-footer .company-info p {
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.corporate-footer .company-info i {
    color: #2c5aa0;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Links Column */
.corporate-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corporate-footer .footer-links li {
    margin-bottom: 12px;
}

.corporate-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.corporate-footer .footer-links a:hover {
    color: #2c5aa0;
    transform: translateX(5px);
}

.corporate-footer .footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.corporate-footer .footer-links a:hover::before {
    opacity: 1;
}

/* Social Icons */
.corporate-footer .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.corporate-footer .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(44, 90, 160, 0.2);
    border: 1px solid rgba(44, 90, 160, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.corporate-footer .social-icons a:hover {
    background: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

/* Services/Products Grid */
.corporate-footer .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.corporate-footer .service-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.corporate-footer .service-item:hover {
    color: #2c5aa0;
    transform: translateX(3px);
}

.corporate-footer .service-item i {
    color: #4a7ac4;
    font-size: 16px;
}

/* Footer Bottom/Copyright */
.corporate-footer .footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.corporate-footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Legal Links */
.corporate-footer .legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.corporate-footer .legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.corporate-footer .legal-links a:hover {
    color: #2c5aa0;
}

/* Soft Divider */
.corporate-footer .divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .corporate-footer {
        padding: 30px 0 20px;
        margin-top: 60px;
    }
    
    .corporate-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .corporate-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .corporate-footer .legal-links {
        justify-content: center;
    }
    
    .corporate-footer .footer-column h3 {
        font-size: 16px;
    }
}


/* ================================================
   CORPORATE HERO SECTION - BANNER SLIDER
   ================================================ */

.corporate-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #1a1a1a;
    padding: 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* control background-image opacity via CSS variable */
    opacity: var(--hero-bg-opacity, 0.8);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-slide::after {
    /* overlay layer above the background image and below slide content */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.10); /* black overlay with 0.1 opacity */
    /* optional overlay image: set --hero-overlay-image on specific slides if needed */
    background-image: var(--hero-overlay-image, none);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.hero-shape-1 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Apply same overlay image to all slides (adjust path if needed) */
.hero-slide {
    --hero-overlay-image: url('../images/slider/overlay.png');
    /* default: reduce background image opacity for better content contrast */
    --hero-bg-opacity: 0.6;
    background-color: rgba(17, 17, 14, .05) !important; 
}


.hero-shape-2 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(74, 122, 196, 0.1) 25%, transparent 25%);
    background-size: 40px 40px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px; 
    text-align: center;
    color: #1a1a1a;
    animation: slideInContent 0.8s ease 0.3s both;
}

/* Ensure strong contrast for headings and CTAs over slide backgrounds */
.hero-content h1,
.hero-content h2 {
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.hero-content .hero-tagline {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    margin-top: 8px;
}
.hero-cta .btn-hero { margin-right: 12px; }
.hero-cta .btn-hero.btn-hero-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
}
.hero-cta .btn-hero.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(var(--primary-color-rgba), 0.85);
}
.hero-cta .btn-hero:focus { outline:none; box-shadow:0 6px 18px rgba(var(--primary-color-rgba),0.18);} 

.hero-slide.active .hero-content {
    animation: slideInContent 0.8s ease 0.3s forwards;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-content .hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgba), 0.28);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-color-rgba), 0.36);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(var(--primary-color-rgba), 0.28);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-slide-1::before {
    background-image: linear-gradient(135deg, rgba(44,90,160,0.25) 0%, rgba(30,64,128,0.25) 50%, rgba(26,26,26,0.25) 100%), url('../images/slider/slider_01.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.hero-slide-2::before {
    background-image: linear-gradient(135deg, rgba(44,90,160,0.25) 0%, rgba(30,64,128,0.25) 50%, rgba(26,26,26,0.25) 100%), url('../images/slider/slider_02.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.hero-slide-3::before {
    background-image: linear-gradient(135deg, rgba(44,90,160,0.25) 0%, rgba(30,64,128,0.25) 50%, rgba(26,26,26,0.25) 100%), url('../images/slider/slider_03.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}


/* Top bar (moved from inline in index.html) */
.top-bar{display:flex;justify-content:flex-end;align-items:center;gap:18px}
.top-bar p{margin:0}
.top-bar ul{margin:0;padding:0;list-style:none;display:flex;gap:12px}
.top-bar ul li{margin:0}

/* right-align specific list used in some headers */
ul.leftli {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
        position: absolute;
    right: 20px;
    font-weight: 500;
}
ul.leftli li { margin: 0; }
ul.leftli li a{color: #000; }


.hero-slide-4::before {
    background-image: linear-gradient(135deg, rgba(44,90,160,0.25) 0%, rgba(30,64,128,0.25) 50%, rgba(26,26,26,0.25) 100%), url('../images/slider/slider_04.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-slide-5::before {
    background-image: linear-gradient(135deg, rgba(44,90,160,0.25) 0%, rgba(30,64,128,0.25) 50%, rgba(26,26,26,0.25) 100%), url('../images/slider/slider_05.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 20px;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

.hero-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .corporate-hero {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content .hero-tagline {
        font-size: 16px;
    }
    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .hero-arrow.prev {
        left: 20px;
    }
    .hero-arrow.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .corporate-hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .hero-content .hero-tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .hero-content .hero-cta {
        gap: 12px;
    }
    .btn-hero {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .hero-arrow.prev {
        left: 15px;
    }
    .hero-arrow.next {
        right: 15px;
    }
    .hero-dots {
        bottom: 20px;
    }
    .hero-counter {
        top: 20px;
        right: 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .corporate-hero {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .hero-content .hero-tagline {
        font-size: 13px;
        margin-bottom: 25px;
    }
    .btn-hero {
        padding: 10px 20px;
        font-size: 13px;
        width: 80%;
        margin: 0 auto;
    }
    .hero-content .hero-cta {
        flex-direction: column;
    }
    .hero-arrow {
        display: none;
    }
    .hero-dots {
        gap: 8px;
    }
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    .hero-dot.active {
        width: 28px;
    }
}


/* ================================================
   CORPORATE SERVICES SECTION
   ================================================ */

.corporate-services {
    padding: 60px 0 50px;
    background: #f8f9fa;
}

.corporate-services .section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.corporate-services .section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.corporate-services .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2c5aa0;
    border-radius: 2px;
}

.corporate-services .section-heading p {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e8f0f9, #d4e4f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card .service-icon i {
    font-size: 42px;
    color: #2c5aa0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #2c5aa0;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Service Grid Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-col {
    padding: 0 15px;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 991px) {
    .service-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .service-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .corporate-services {
        padding: 60px 0;
    }
    .corporate-services .section-heading h2 {
        font-size: 32px;
    }
}


/* ================================================
   CORPORATE ABOUT US SECTION
   ================================================ */

.corporate-about {
    padding: 60px 0 0 ;
    background: #ffffff;
}

.about-image-section {
    position: relative;
    margin-bottom: 50px;
}

.about-image-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    right: 0px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    color: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.3);
    text-align: center;
    min-width: 200px;
}

.about-image-overlay .years {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.about-image-overlay .label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content .about-tagline {
    font-size: 20px;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Values Cards */
.mission-values {
    margin-top: 60px;
}

.mission-values .row {
    margin: 0 -15px;
}

.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
}

.value-card:hover {
    background: #ffffff;
    border-left-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card .value-icon i {
    font-size: 28px;
    color: #ffffff;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2c5aa0, #4a7ac4);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #2c5aa0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.2);
    z-index: 2;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.team-member-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0f9, #d4e4f7);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-image .member-icon {
    font-size: 80px;
    color: #2c5aa0;
    opacity: 0.3;
}

.team-member-info {
    padding: 30px 25px;
    text-align: center;
}

.team-member-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member-info .position {
    font-size: 14px;
    color: #2c5aa0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-member-info .contact-info {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.team-member-info .contact-info i {
    color: #2c5aa0;
    margin-right: 8px;
}

/* Soft Dividers */
.soft-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.2), transparent);
    margin: 60px 0;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-image-overlay {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
    .timeline-wrapper::before {
        left: 30px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .corporate-about,
    .timeline-section,
    .team-section {
        padding: 60px 0;
    }
    .about-content h2,
    .timeline-section h2,
    .team-section h2 {
        font-size: 32px;
    }
}
/* ================================================
   REQUEST A CALLBACK SECTION
   ================================================ */

.request-a-callback {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    position: relative;
    overflow: hidden;
}

.request-a-callback::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.request-a-callback::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
.company-highlights {
    padding: 50px 0 30px;
}
.company-highlights h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}
.company-highlights .value-list li,
.company-highlights .expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #333;
    background: #ffffff;
    border: 1px solid rgba(var(--primary-color-rgba), 0.10);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}
.company-highlights .value-list li::before,
.company-highlights .expertise-list li::before {
    content: "\\f00c"; /* FontAwesome check */
    font-family: FontAwesome;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(var(--primary-color-rgba), 0.08);
    color: var(--primary-color, #ea222a);
    font-size: 14px;
    flex: 0 0 30px;
}
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #ea222a);
    font-size: 16px;
}
.company-highlights .company-vision {
    font-style: italic;
    background: #ffffff;
    padding: 14px 16px;
    border-left: 4px solid var(--primary-color, #ea222a);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    color: #333;
}
.company-highlights h4 { margin-top: 18px; margin-bottom: 8px; }

@media (max-width: 767px) {
    .company-highlights .value-list li,
    .company-highlights .expertise-list li { padding-left: 28px; }
    .company-highlights h3 { font-size: 22px; }
}

/* Clients section styles */
.clients-section { padding: 50px 0; }
.clients-section h3 { font-size: 30px; margin-bottom: 16px; color: #1a1a1a; }
.clients-section .clients-category { margin-bottom: 18px; }
.clients-section .clients-category h4 { font-size: 18px; margin-bottom: 15px; color: #2c2c2c; }
.clients-logos { margin-top: 28px; }
.clients-logos .logos-heading { font-size: 20px; margin-bottom: 12px; }
.clients-logos .logos-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 18px; align-items: center; }
.logo-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); padding: 18px; display:flex; align-items:center; justify-content:center; border-radius:8px; box-shadow: 0 6px 18px rgba(0,0,0,0.03); }
.logo-card img { max-width: 100%; max-height: 56px; object-fit: contain; display:block; }
.logos-note { margin-top: 10px; font-size: 13px; color: #666; }

@media (max-width: 767px) {
    .clients-section { padding: 30px 0; }
    .clients-logos .logos-grid { gap: 12px; }
}

/* Polished professional tweaks for clients section */
.clients-section {
    background: linear-gradient(180deg, rgba(250,250,252,1) 0%, rgba(244,246,248,1) 100%);
    padding: 56px 0;
}
.clients-section .partners-intro {
    text-align: center;
    margin-bottom: 28px;
}
.clients-section .partners-intro p {
    max-width: 900px;
    margin: 0 auto 18px auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}
.clients-section h3 {
    text-align: left;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}
.clients-section .clients-category p { margin: 0; color: #444; }
.clients-section .logos-heading { text-align: center; margin-top: 18px; }
.clients-logos .logos-grid { align-items: center; }
.logo-card { transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease; filter: grayscale(100%) contrast(90%); }
.logo-card img { opacity: 0.9; }
.logo-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); filter: none; }
.logo-card:focus-within { outline: 2px solid rgba(var(--primary-color-rgba),0.12); }
.logo-card { flex-direction: column; text-decoration: none; }
.logo-card .logo-caption { display:block; margin-top:10px; font-size:13px; color:#444; }

/* polished clients page styles */
.partners-intro h2 { font-size: 36px; letter-spacing: -0.4px; margin-bottom: 8px; }
.partners-intro .section-divider { width: 80px; height: 3px; margin: 12px auto 18px; background: linear-gradient(90deg,var(--primary-color), rgba(234,34,42,0.7)); border-radius:2px; }
.partners-intro p { color: #555; max-width: 920px; margin: 0 auto 18px; font-size: 16px; line-height: 1.6; }
.client-cta { text-align: center; margin-top: 12px; }
.client-cta .btn-hero.btn-hero-primary { padding: 12px 28px; border-radius: 36px; font-size: 15px; }

.clients-section .clients-category { border-radius: 10px;  margin-bottom: 16px; }
.clients-section .clients-category h4 { margin: 0 0 6px 0; }

.logos-grid { grid-auto-rows: 1fr; }
.logos-grid .logo-card { padding: 18px 12px; }
.logos-note { text-align: center; }

@media (max-width: 767px) {
    .partners-intro h2 { font-size: 28px; }
    .clients-section .clients-category { padding: 12px; }
}
.client-cta { text-align: center; margin-top: 20px; }
.client-cta .btn { background: var(--primary-color); color: #fff; border-radius: 36px; padding: 10px 26px; display: inline-block; box-shadow: 0 8px 28px rgba(var(--primary-color-rgba),0.18); text-decoration: none; }

@media (max-width: 767px) {
    .clients-section h3 { text-align: center; border-left: none; padding-left: 0; }
}
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.request-a-callback-content {
    flex: 1;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.request-a-callback-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.request-a-callback-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.request-a-callback-form {
    flex: 1;
    z-index: 2;
    position: relative;
}

.request-a-callback-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-a-callback-form input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.request-a-callback-form input::placeholder {
    color: #999;
}

.request-a-callback-form input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.request-a-callback-form button {
    padding: 16px 30px;
    background: linear-gradient(90deg, #4a7ac4, #2c5aa0);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.request-a-callback-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
}

.request-a-callback-form button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .request-a-callback {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .request-a-callback-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .request-a-callback {
        padding: 50px 20px;
        gap: 30px;
    }

    .request-a-callback-content h3 {
        font-size: 28px;
    }

    .request-a-callback-content p {
        font-size: 14px;
    }

    .request-a-callback-form input,
    .request-a-callback-form button {
        font-size: 14px;
        padding: 14px 16px;
    }

    .request-a-callback::before {
        width: 300px;
        height: 300px;
        right: -15%;
        top: -30%;
    }

    .request-a-callback::after {
        width: 250px;
        height: 250px;
        left: -10%;
        bottom: -20%;
    }
}

/* ================================================
   EXPERT TEAM SECTION
   ================================================ */

#expert_team {
    background: linear-gradient(to bottom, #f8f9fb 0%, #ffffff 100%);
    padding: 50px 0;
    position: relative;
}

#expert_team .heading {
    text-align: center;
    margin-bottom: 60px;
}

#expert_team .heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

#expert_team .heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

#expert_team .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

#expert_team .team-member {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #2c5aa0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#expert_team .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#expert_team .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 90, 160, 0.15);
}

#expert_team .team-member:hover::before {
    transform: scaleX(1);
}

#expert_team .team-member h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

#expert_team .team-member h4 span {
    display: block;
    font-size: 13px;
    color: #2c5aa0;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#expert_team .team-member p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

#expert_team .team-expertise {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

#expert_team .expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#expert_team .expertise-list li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 6px;
    background: #f0f5fa;
    padding: 6px 12px;
    border-radius: 20px;
    color: #2c5aa0;
}

#expert_team .social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

#expert_team .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f5fa;
    border-radius: 50%;
    color: #2c5aa0;
    transition: all 0.3s ease;
    font-size: 16px;
}

#expert_team .social-links a:hover {
    background: #2c5aa0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    #expert_team {
        padding: 80px 0;
    }

    #expert_team .heading h2 {
        font-size: 36px;
    }

    #expert_team .team-container {
        gap: 30px;
    }

    #expert_team .team-member {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #expert_team {
        padding: 60px 0;
    }

    #expert_team .heading h2 {
        font-size: 28px;
    }

    #expert_team .team-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #expert_team .team-member {
        padding: 35px 25px;
    }

    #expert_team .team-member h4 {
        font-size: 20px;
    }
}

/* ================================================
   CONTACT FORM SECTION
   ================================================ */

#contact-form {
    padding: 0px 0;
}

#contact-form .contact-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

#contact-form .location-info {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    position: relative;
    overflow: hidden;
}

#contact-form .location-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#contact-form .location-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

#contact-form .location-info .info-item {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

#contact-form .location-info .info-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: block;
}

#contact-form .location-info .info-content {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

#contact-form .location-info i {
    margin-right: 10px;
    font-size: 16px;
}

#contact-form .contact-form-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

#contact-form .contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

#contact-form .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

#contact-form .form-row.full {
    grid-template-columns: 1fr;
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
}

#contact-form .input,
#contact-form textarea {
    padding: 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

#contact-form .input::placeholder,
#contact-form textarea::placeholder {
    color: #999;
}

#contact-form .input:focus,
#contact-form textarea:focus {
    border-color: #2c5aa0;
    background: #f8f9fb;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.08);
}

#contact-form textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: 20px;
}

#contact-form .form-messages {
    margin-bottom: 20px;
}

#contact-form .success,
#contact-form .error {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

#contact-form .success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#contact-form .error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#contact-form .btn-submit {
    padding: 16px 40px;
    background: linear-gradient(90deg, #2c5aa0, #1e4080);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

#contact-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
}

#contact-form .btn-submit:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    #contact-form {
        padding: 60px 0;
    }

    #contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #contact-form .location-info,
    #contact-form .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #contact-form {
        padding: 50px 0;
    }

    #contact-form .contact-section-title {
        font-size: 28px;
    }

    #contact-form .location-info {
        margin-bottom: 30px;
    }

    #contact-form .location-info h3 {
        font-size: 22px;
    }

    #contact-form .location-info .info-item {
        margin-bottom: 20px;
    }

    #contact-form .input,
    #contact-form textarea {
        font-size: 14px;
        padding: 14px 16px;
    }

    #contact-form textarea {
        min-height: 120px;
    }

    #contact-form .btn-submit {
        width: 100%;
        padding: 14px 30px;
        text-align: center;
    }
}


/* ================================================
   PAGE TITLE SECTION
   ================================================ */

.page-title-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-title-section .breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.page-title-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-title-section .breadcrumb a:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .page-title-section {
        padding: 60px 0;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    .page-title-section .breadcrumb {
        font-size: 12px;
    }
}


/* ================================================
   PARTNERS SECTION
   ================================================ */

.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.partners-intro {
    text-align: center;
    margin-bottom: 10px;
}

.partners-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.partners-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    border-radius: 2px;
}

.partners-intro p {
    font-size: 16px;
    color: #666666;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.partner-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.partner-link {
    display: inline-block;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.partner-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-link {
    color: #4a7ac4;
}

.partner-card:hover .partner-link i {
    transform: translateX(3px);
}

/* Partnership Benefits */
.partnership-benefits {
    background: #ffffff;
    padding: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partnership-benefits h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.partnership-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    border-radius: 2px;
}

.benefits-grid {
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 32px;
    color: #ffffff;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Partners CTA */
.partners-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.partners-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
}

.partners-cta .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Partners */
@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .partnership-benefits {
        padding: 60px;
    }

    .partnership-benefits h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-intro {
        margin-bottom: 40px;
    }

    .partners-intro h2 {
        font-size: 32px;
    }

    .partners-intro p {
        font-size: 14px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .partner-card {
        padding: 30px;
    }

    .partnership-benefits {
        padding: 30px;
        margin-bottom: 40px;
    }

    .partnership-benefits h2 {
        font-size: 28px;
    }

    .benefits-grid {
        margin-top: 40px;
    }

    .benefit-item {
        padding: 20px;
    }

    .partners-cta {
        padding: 60px 0;
    }

    .partners-cta h2 {
        font-size: 28px;
    }

    .partners-cta p {
        font-size: 16px;
    }
}


/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */

.why-choose-us-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ea222a, #ff5a5f);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(234, 34, 42, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ea222a, #ff5a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 36px;
    color: #ffffff;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-box {
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 12px;
    border-left: 5px solid #ea222a;
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-box:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ea222a, #ff5a5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-detail-box:hover .service-icon-large {
    transform: rotate(5deg) scale(1.05);
}

.service-icon-large i {
    font-size: 42px;
    color: #ffffff;
}

.service-detail-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 15px;
    color: #555;
    line-height: 2.2;
    position: relative;
    padding-left: 30px;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #ea222a;
    font-size: 16px;
}

/* ================================================
   COMPANY VISION SECTION
   ================================================ */

.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7ac4 100%);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="none"/%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23ffffff" fill-opacity="0.03"/%3E%3C/svg%3E');
    opacity: 0.3;
}

.vision-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vision-icon i {
    font-size: 50px;
    color: #ffffff;
}

.vision-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider-white {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 0 auto 30px;
}

.vision-statement {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

/* ================================================
   APPLICATIONS SECTION
   ================================================ */

.applications-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.application-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    height: 100%;
    min-height: 240px;
}

.application-card:hover {
    border-top-color: #ea222a;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f9f9f9, #e8e8e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.application-card:hover .app-icon {
    background: linear-gradient(135deg, #ea222a, #ff5a5f);
}

.app-icon i {
    font-size: 32px;
    color: #ea222a;
    transition: color 0.3s ease;
}

.application-card:hover .app-icon i {
    color: #ffffff;
}

.application-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.application-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 991px) {
    .section-header h2,
    .vision-wrapper h2 {
        font-size: 36px;
    }
    
    .feature-box,
    .application-card {
        min-height: auto;
    }
    
    .service-detail-box {
        margin-bottom: 30px;
    }
    
    .vision-statement {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .section-header h2,
    .vision-wrapper h2 {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .why-choose-us-section,
    .services-section,
    .applications-section {
        padding: 60px 0;
    }
    
    .vision-section {
        padding: 80px 0;
    }
    
    .feature-box h4,
    .application-card h4 {
        font-size: 18px;
    }
    
    .service-detail-box h3 {
        font-size: 24px;
    }
    
    .vision-statement {
        font-size: 18px;
    }
}

/* ================================================
   PROFESSIONAL CLIENTS SECTION
   ================================================ */

.clients-section {
    padding: 60px 0;
}

.clients-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ea222a, #ff5a5f);
}

.category-header p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* Client Cards Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.client-card {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 34, 42, 0.15);
    border-top-color: #ea222a;
}

.client-card .client-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    object-fit: contain;
}

.client-card .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.client-card .client-abbr {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

/* Subcategory */
.client-subcategory {
    margin-bottom: 50px;
}

.subcategory-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #ea222a;
}

/* Client Name List (for text-only entries) */
.client-names-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.client-name-badge {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-name-badge:hover {
    background: linear-gradient(135deg, #ea222a, #ff5a5f);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(234, 34, 42, 0.3);
    transform: translateY(-2px);
}

/* Registered Supplier Section */
.registered-supplier-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7ac4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.registered-supplier-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="none"/%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23ffffff" fill-opacity="0.03"/%3E%3C/svg%3E');
    opacity: 0.2;
}

.registered-supplier-section .container {
    position: relative;
    z-index: 1;
}

.supplier-header {
    text-align: center;
    margin-bottom: 50px;
}

.supplier-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.supplier-header .badge-certified {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.supplier-header .badge-certified i {
    font-size: 20px;
}

.supplier-departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.department-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.department-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.department-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.department-card h3 i {
    font-size: 24px;
    color: #ffd700;
}

.department-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.department-list li {
    color: #ffffff;
    font-size: 15px;
    line-height: 2;
    padding-left: 25px;
    position: relative;
}

.department-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 14px;
}

/* Stats Banner */
.client-stats-banner {
    background: #fff;
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ea222a;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .category-header h3 {
        font-size: 28px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .supplier-departments {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .category-header h3 {
        font-size: 24px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .client-card {
        padding: 20px 15px;
        min-height: 150px;
    }
    
    .subcategory-title {
        font-size: 20px;
    }
    
    .supplier-header h2 {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}


.product-content {
    padding: 40px;
}

.product-intro {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.product-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.accelerometer-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #ea222a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    font-size: 32px;
    color: #ea222a;
}

.accelerometer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.accel-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ea222a, #ff5a5f);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #ea222a;
}

.accel-card:hover::before {
    transform: scaleY(1);
}

.accel-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accel-card h4 i {
    font-size: 24px;
    color: #ea222a;
}

.accel-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accel-features li {
    font-size: 15px;
    color: #555;
    line-height: 2;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.accel-features li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 14px;
    top: 2px;
}

.spec-box {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7ac4 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}

.spec-box i {
    margin-right: 8px;
    color: #ffd700;
}

.applications-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.applications-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.applications-block h3 i {
    font-size: 32px;
    color: #ea222a;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.app-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(234, 34, 42, 0.2);
}

.app-item i {
    font-size: 28px;
    color: #ea222a;
    min-width: 40px;
}

.app-item span {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.info-banner {
    background: linear-gradient(135deg, #ea222a, #ff5a5f);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-banner i {
    font-size: 40px;
    color: #ffffff;
    opacity: 0.9;
}

.info-banner-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-banner-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .category-title {
        font-size: 24px;
    }
    .accelerometer-cards {
        grid-template-columns: 1fr;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .product-content {
        padding: 25px;
    }
    .product-intro h2 {
        font-size: 28px;
    }
    .category-title {
        font-size: 22px;
    }
    .applications-block {
        padding: 25px;
    }
    .info-banner {
        flex-direction: column;
        text-align: center;
    }
}


.nav-container.nav_bg{position: relative;
    height: 40px;}