@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    background-color: rgba(26, 26, 26, 0);
}

.loader-content {
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#loading-screen.fade-out .loader-content {
    transform: translateY(-20px);
    opacity: 0;
}

.brand-loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.3s;
}

.loading-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4em;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

.loading-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
    max-width: 600px;
    text-align: center;
}

.loading-categories {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.loading-categories span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.loading-categories .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 200;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

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

/* Top Bar Styles */
.top-bar {
    background: #f8f8f8;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #007bff;
}

/* Header Styles */
header {
    padding: 20px 0;
    text-align: center;
}

/* Logo Styles */
.logo {
    text-align: center;
    padding: 25px 0;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 800;
    color: #E31E24;
    letter-spacing: 1.2px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    text-shadow: 1px 1px 0px rgba(227, 30, 36, 0.1);
}

.logo-text h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #E31E24, transparent);
    transform: scaleX(0.8);
    opacity: 0.7;
}

.logo-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(45deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.logo-text .divider {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 200;
    opacity: 0.5;
    margin: 0 5px;
    transform: scaleY(1.2);
}

.tagline {
    color: #666;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0.9;
    background: linear-gradient(45deg, #666, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Styles */
.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

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

.nav-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-grid>li {
    position: relative;
}

.nav-grid a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.nav-grid a:hover {
    color: #4a90e2;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.slide-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-align: center;
    transform: translateY(20px);
    animation: slideUp 0.5s forwards;
}

.slide-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #4a90e2;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s 0.2s forwards;
}

.slide-content p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transform: translateY(20px);
    animation: slideUp 0.5s 0.4s forwards;
}

.slide-content h2 span {
    color: #4a90e2;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #4a90e2;
    color: white;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.cta-button:hover::after {
    transform: translateX(100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
}

.cta-button i {
    font-size: 1em;
    transition: transform 0.3s ease;
    position: relative;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 160px;
}

.next {
    right: 160px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: #4a90e2;
    border-color: #4a90e2;
    transform: scale(1.2);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Slider States */
.slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .prev {
        left: 100px;
    }

    .next {
        right: 100px;
    }

    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content h2 {
        font-size: 48px;
    }

    .slide-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .slide-content h3 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev {
        left: 50px;
    }

    .next {
        right: 50px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .nav-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-slider {
        height: 400px;
    }

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

    .slide-content h3 {
        font-size: 24px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8em;
    }
}

.slide-1 {
    background-image: url('./assets/Transition/Lace1.png');
}

.slide-2 {
    background-image: url('./assets/Transition/Draw cord.png');
}

.slide-3 {
    background-image: url('./assets/Transition/allianceT4.png');
}

.slide-4 {
    background-image: url('./assets/Transition/Webbing Belt.png');
}

.slide-5 {
    background-image: url('./assets/Transition/Twill Tape.png');
}

.slide-6 {
    background-image: url('./assets/Transition/Elastic M C.png');
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

/* Ensure main-nav has relative positioning for absolute menu */
.main-nav {
    position: relative;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-grid {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 20px;
        display: none;
        z-index: 999;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .main-nav.open .nav-grid {
        display: flex;
    }

    .nav-grid li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-grid li:last-child {
        border-bottom: none;
    }

    .nav-grid a {
        width: 100%;
        padding: 15px 0;
        display: block;
    }

    /* Container for mobile nav */
    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }
}

/* Responsive Logo */
@media (max-width: 1024px) {
    .logo {
        padding: 20px 0;
    }

    .logo-text {
        flex-direction: column;
        gap: 6px;
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .logo-text .divider {
        display: none;
    }

    .logo-text h1::after {
        transform: scaleX(0.6);
    }
}

@media (max-width: 768px) {
    .logo {
        padding: 18px 0;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .logo-text h2 {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
        letter-spacing: 0.3px;
    }
}

/* About Section Styles */
.about-us {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    color: #4a90e2;  /* Updated to match website color */
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-description p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 40px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image-wrapper .slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.about-image-wrapper .dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Update slider dots active color to match website */
.about-image-wrapper .dot.active {
    background: #4a90e2;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 15px 0;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown>a i {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 900px;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 15px;
}

.dropdown-column ul li:last-child {
    margin-bottom: 0;
}

.dropdown-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
    text-transform: none;
    white-space: nowrap;
}

.dropdown-column ul li a:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        transform: none;
        background: transparent;
        padding: 0 0 0 20px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-content {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-column {
        margin-bottom: 10px;
    }

    .dropdown-column ul li {
        margin-bottom: 0;
    }

    .dropdown-column ul li a {
        color: #fff;
        padding: 12px 0;
        font-size: 14px;
        opacity: 0.9;
    }

    .dropdown-column ul li a:hover {
        transform: none;
        opacity: 1;
    }

    .has-dropdown>a i {
        margin-left: auto;
    }

    .has-dropdown.open>a i {
        transform: rotate(180deg);
    }
}

/* Ensure main nav has proper z-index */
.main-nav {
    position: relative;
    z-index: 1000;
}

/* Adjust nav-grid for better dropdown positioning */
.nav-grid {
    position: relative;
}

.nav-grid>li {
    position: relative;
}

.has-dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.help-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.help-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-content h2 {
    font-size: 3.2rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 2px solid #4a90e2;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: #357abd;
    border-bottom-color: #357abd;
}

.social-icons {
    display: flex;
    gap: 1.75rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.35rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #4a90e2;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-content {
    padding: 5rem 0;
    background-color: #141414;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 3.5rem;
}

.company-info p {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: #999;
    font-size: 0.95rem;
    max-width: 90%;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 1.25rem;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li i {
    margin-right: 12px;
    width: 16px;
    color: #4a90e2;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    background-color: #0f0f0f;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
}

.copyright {
    color: #777;
}

.bottom-links {
    display: flex;
    gap: 2.5rem;
}

.bottom-links a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .help-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .help-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .help-content h2 {
        font-size: 2.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .company-info {
        grid-column: 1 / -1;
    }

    .company-info p {
        max-width: 100%;
    }

    .legal-links {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }

    .help-content h2 {
        font-size: 2rem;
    }

    .help-section {
        padding: 4rem 0;
    }

    .footer-content {
        padding: 4rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
}

/* Air Cargo Section */
.air-cargo-section {
    padding: 4rem 0;
}

/* Recycling Section */
.recycling-section {
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.recycling-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.recycling-text {
    padding: 4rem 3rem 4rem 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-item {
    font-size: 0.85rem;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.tab-item.active {
    background: #4a90e2;
    color: #fff;
}

.recycling-text h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.recycling-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.recycling-image {
    position: relative;
    width: 140%;
    height: 100%;
    min-height: 600px;
    margin-right: -20%;
    overflow: hidden;
}

.recycling-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
}

@media (max-width: 992px) {
    .recycling-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .recycling-text {
        padding: 3rem 2rem;
    }

    .category-tabs {
        justify-content: center;
    }

    .recycling-text h2 {
        font-size: 2.6rem;
    }

    .recycling-image {
        width: 100%;
        margin-right: 0;
        min-height: 500px;
        order: -1;
    }
    
    .recycling-image img {
        position: relative;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .recycling-section {
        padding: 3rem 0;
    }

    .category-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .recycling-text h2 {
        font-size: 2rem;
    }

    .recycling-text p {
        font-size: 1rem;
    }

    .recycling-image img {
        max-width: 100%;
    }
}

.cargo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.cargo-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.cargo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    border-radius: 2px;
}

.cargo-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(120deg, #1a1a1a 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.cargo-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.cargo-text p::before,
.cargo-text p::after {
    content: '"';
    position: absolute;
    font-size: 3rem;
    color: #4a90e2;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.cargo-text p::before {
    left: 0;
    top: -0.5rem;
}

.cargo-text p::after {
    right: 0;
    bottom: -1.5rem;
}

.cargo-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.cargo-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .cargo-text h2 {
        font-size: 2.6rem;
    }

    .cargo-text p {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }

    .cargo-text::before {
        width: 60px;
    }

    .cargo-image {
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .cargo-text {
        padding: 1.5rem 0;
    }

    .cargo-text h2 {
        font-size: 2.2rem;
    }

    .cargo-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cargo-text::before {
        width: 50px;
        height: 3px;
    }

    .cargo-text p::before,
    .cargo-text p::after {
        font-size: 2rem;
    }

    .cargo-image {
        max-width: 100%;
    }
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stats-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;

}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e5e5e5;
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 0.8rem;

}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.map-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;

    position: relative;
    display: inline-block;
}

.map-container h2::before,
.map-container h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: #e5e5e5;
}

.map-container h2::before {
    right: 100%;
    margin-right: 20px;
}

.map-container h2::after {
    left: 100%;
    margin-left: 20px;
}

.map-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .stats-grid {
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 2rem;
    }

    .stats-grid>div:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .map-container h2 {
        font-size: 1.8rem;
    }

    .map-container h2::before,
    .map-container h2::after {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 1.5rem;
    }

    .stats-grid>div:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .map-container h2 {
        font-size: 1.6rem;
    }

    .map-container h2::before,
    .map-container h2::after {
        width: 30px;
        margin-right: 15px;
        margin-left: 15px;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 5rem 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #4a90e2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.2rem;
}

.product-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 1.2rem 1.2rem;
    line-height: 1.5;
}

/* Manufacturing Excellence Section */
.manufacturing-excellence {
    padding: 5rem 0;
    background: #f8f9fa;
}

.excellence-content {
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-text {
    text-align: center;
    margin-bottom: 3rem;
}

.excellence-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;
}

.excellence-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #4a90e2;
}

.excellence-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: #fff;
}

.certifications h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;
}

.certifications h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #4a90e2;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.cert-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Styles for New Sections */
@media (max-width: 1200px) {
    .product-grid,
    .excellence-features,
    .cert-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .product-grid,
    .excellence-features,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title,
    .excellence-text h2,
    .certifications h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-grid,
    .excellence-features,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .excellence-text h2,
    .certifications h2 {
        font-size: 1.8rem;
    }

    .product-card img {
        height: 180px;
    }

    .feature {
        padding: 1.5rem;
    }

    .cert-item {
        padding: 1.5rem;
    }

    .cert-item img {
        width: 100px;
        height: 100px;
    }
}

/* Redesigned Services & Specialities */
.services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
    }
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 1.2rem 1.2rem 0.8rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    padding: 0 1.2rem 1.5rem;
    line-height: 1.5;
}

.services-specialities {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.about-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.5;
}

.about-list li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4a90e2;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Us Section */
.contact-us {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.contact-form label {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.contact-form button {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    background: #4a90e2;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #357abd;
}

@media (max-width: 576px) {
    .form-group {
        flex: 1 1 100%;
    }
}

.contact-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.subscribe-form .form-group,
.subscribe-form .checkbox-group {
    width: 100%;
    max-width: 550px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"],
.subscribe-form input[type="tel"] {
    width: 100%;
    border: 2px solid #d6f0ea;
    border-radius: 4px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #4a90e2;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #666;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: #0077ff;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #005fd1;
}

.subscribe-btn i {
    font-size: 1rem;
}

/* === About Us Professional Refresh === */
.about-us {
    background: #f7f7f7;
}

.about-content {
    margin: 0 auto;
    gap: 4rem;
}

.about-us .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-us .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #d62329;
}

.about-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.about-list li::before {
    color: #d62329;
}

.about-image img {
    border-radius: 6px;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .about-content {
        gap: 3rem;
    }

    .about-us .section-title {
        text-align: center;
    }
}

/* Fixed (sticky) Navigation */
.main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* ensure it stays above other content */
    /* Optional visual polish */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Navigation layout adjustments */
.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Flex-grow links to occupy available space */
.nav-grid {
    flex: 1;
    justify-content: center;
}

/* Logo inside nav */
.nav-logo {
    position: absolute;
    left: 40px; /* Match the container padding */
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.nav-logo:hover {
    color: #4a90e2;
}

/* Show logo when nav is fixed */
.main-nav.fixed .nav-logo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Re-enable interaction */
}

/* Smooth transition for nav appearance */
.main-nav {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Container max-width */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main nav should be full width */
.main-nav .container {
    max-width: none;
    padding: 0 40px;
}