/* -----------------------------------
   MONUMENT EXTENDED
----------------------------------- */
@font-face {
    font-family: 'Monument Extended';
    src: url('/assets/fonts/MonumentExtended-Regular.woff2') format('woff2'),
         url('/assets/fonts/MonumentExtended-Regular.woff') format('woff'),
         url('/assets/fonts/MonumentExtended-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Monument Extended';
    src: url('/assets/fonts/MonumentExtended-Bold.woff2') format('woff2'),
         url('/assets/fonts/MonumentExtended-Bold.woff') format('woff'),
         url('/assets/fonts/MonumentExtended-Bold.ttf') format('truetype');
    font-weight: bold;
}


/* -----------------------------------
   BECHILO
----------------------------------- */
@font-face {
    font-family: 'Bechilo';
    src: url('/assets/fonts/Bechilo-Regular.woff2') format('woff2'),
         url('/assets/fonts/Bechilo-Regular.woff') format('woff'),
         url('/assets/fonts/Bechilo-Regular.ttf') format('truetype');
    font-weight: normal;
}


/* -----------------------------------
   SAONARA
----------------------------------- */
@font-face {
    font-family: 'Saonara';
    src: url('/assets/fonts/Saonara-Regular.woff2') format('woff2'),
         url('/assets/fonts/Saonara-Regular.woff') format('woff'),
         url('/assets/fonts/Saonara-Regular.ttf') format('truetype');
    font-weight: normal;
}


/* -----------------------------------
   MADE MIRAGE
----------------------------------- */
@font-face {
    font-family: 'Made Mirage';
    src: url('/assets/fonts/MadeMirage-Regular.woff2') format('woff2'),
         url('/assets/fonts/MadeMirage-Regular.woff') format('woff'),
         url('/assets/fonts/MadeMirage-Regular.ttf') format('truetype');
    font-weight: normal;
}

        /* Global Styles */
         :root {
            --primary-red: #CE2232;
            --dark-gray: #4285F4;
            --secondary-green: #FBBC05;
            --accent-orange-yellow1: #FFE004;
            --tertiary-blue: #4285F4;
            --accent-orange-yellow: #219E4A;
            --accent-purple: #9b59b6;
            --accent-teal: #1abc9c;
            --dark-text: #333;
            --light-text: #fff;
            --background-light: #f8f8f8;
            --background-white: #fff;
            
            --light-gray: #ecf0f1;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Monument Extended', sans-serif;
            background-color: var(--background-white);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* New counter animation */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Add hero carousel animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-down {
            animation: fadeInDown 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-left {
            animation: slideInLeft 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-slide-right {
            animation: slideInRight 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-scale {
            animation: scaleIn 0.6s ease-out forwards;
            opacity: 0;
        }

        /* Top Bar - Enhanced responsive styling */
        /* Top Bar improvements */
        .top-bar {
            background-color: var(--dark-gray);
            color: var(--light-text);
            font-size: 14px;
            display: flex;
            animation: slideInDown 0.6s ease-out;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .top-bar-left {
            flex: 1;
            padding: 12px 50px;
            display: flex;
            align-items: center;
            gap: 30px;
            min-width: 0;
        }

        .top-bar-right {
            background-color: var(--primary-red);
            padding: 12px 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        }

        .contact-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .contact-info span:hover {
            transform: translateX(5px);
        }

        .contact-info i {
            color: var(--light-text);
            font-size: 15px;
        }

        .social-icons a {
            color: #fff;
            margin-left: 10px;
            text-decoration: none;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .social-icons a:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px) scale(1.1);
        }

        /* Better responsive styling for top bar */
        @media (max-width: 1024px) {
            .top-bar-left,
            .top-bar-right {
                padding: 0 30px;
            }

            .contact-info {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile responsive improvements */
            .top-bar {
                flex-direction: column;
                gap: 15px;
                padding: 15px 0;
            }

            .top-bar-left,
            .top-bar-right {
                padding: 10px 20px;
                justify-content: center;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 10px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                justify-content: center;
                padding: 8px 20px;
                flex-wrap: wrap;
            }

            .top-bar-right {
                width: 100%;
                box-shadow: none;
            }

            .contact-info {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }

            .contact-info span {
                white-space: nowrap;
                font-size: 13px;
            }

            .social-icons {
                display: flex;
                gap: 10px;
                justify-content: center;
            }

            .social-icons a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                gap: 10px;
                padding: 10px 0;
            }

            .top-bar-left,
            .top-bar-right {
                padding: 8px 15px;
                font-size: 12px;
            }

            .top-bar-left {
                gap: 10px;
            }

            .contact-info {
                gap: 8px;
            }

            .contact-info span {
                font-size: 11px;
            }

            .social-icons a {
                width: 24px;
                height: 24px;
                font-size: 10px;
                margin-left: 5px !important;
            }
        }

        /* Main Navigation - Enhanced responsive */
        /* Main Navigation */
        .main-nav {
            background-color: #fff;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: relative;
            z-index: 100;
            animation: slideInDown 0.7s ease-out 0.1s both;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            max-width: 100%;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo-container {
            position: relative;
            z-index: 101;
            flex-shrink: 0;
        }

        .logo {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
            border: 4px solid var(--primary-red);
            position: relative;
            top: -20px;
            transition: all 0.3s ease;
            animation: fadeInScale 0.6s ease-out;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
        }

        .logo-text {
            text-align: center;
        }

        .logo-container .rrk {
            font-size: 32px;
            font-weight: 700;
            color: #219E4A !important;
            /*line-height: 1;*/
            /*display: block;*/
        }

        .logo-container .global {
            font-size: 11px;
            color: #219E4A !important;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Mobile menu toggle button */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary-red);
            font-size: 24px;
            cursor: pointer;
            z-index: 102;
            padding: 10px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 40px;
            margin: 0;
            padding: 20px 0;
            flex-wrap: nowrap;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            gap: 10px;
        }

        /* Hover underline */
        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background-color: var(--primary-red);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        /* ACTIVE STATE — permanent highlight */
        .nav-menu a.active {
            color: var(--primary-red) !important;
        }

        .nav-menu a.active::after {
            width: 100% !important;
        }

        /* Prevent hover overriding active state */
        .nav-menu a.active:hover {
            color: var(--primary-red) !important;
        }

        .nav-menu a.active:hover::after {
            width: 100% !important;
        }

.nav-item.dropdown {
    position: relative;
}





.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* background: white; */
    min-width: 280px;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    /* color: var(--dark-text); */
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 15px;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    #productsDropdown i {
        display: none !important;
    }
}

        .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0; /* remove the gap so it doesn't close */
        }



        /* Responsive navigation for mobile */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 30px;
                gap: 15px;
            }

            .nav-menu {
                gap: 25px;
                padding: 15px 0;
            }

            .logo {
                width: 100px;
                height: 100px;
                top: -15px;
            }

            .logo-text .rrk {
                font-size: 26px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile responsive improvements */
            .nav-container {
                padding: 0 20px;
                /* flex-direction: column; */
            }

            .logo {
                width: 100px;
                height: 100px;
                top: -10px;
            }

            .logo-text .rrk {
                font-size: 26px;
            }

            .logo-text .global {
                font-size: 10px;
            }

            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-menu {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                padding: 15px 0;
                text-align: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-top: 2px solid var(--primary-red);
                z-index: 100;
            }

            .nav-menu.active {
                max-height: 400px;
            }

            .nav-menu a {
                display: block;
                padding: 15px 20px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
            }

            .nav-menu a::after {
                display: none;
            }

            .nav-menu a:hover,
            .nav-menu a.active {
                background-color: #f5f5f5;
                padding-left: 25px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                width: 75px;
                height: 75px;
                top: -10px;
            }

            .logo-text .rrk {
                font-size: 18px;
            }

            .logo-text .global {
                font-size: 8px;
                letter-spacing: 0.5px;
            }

            .mobile-menu-toggle {
                font-size: 20px;
                padding: 8px;
            }

            .nav-menu {
                gap: 8px;
            }

            .nav-menu a {
                padding: 12px 15px;
                font-size: 12px;
            }
        }

        /* Enhanced Hero Carousel */
        .hero-section {
            height: 600px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .hero-logo-box {
            background: rgba(255,255,255,0.97);
            padding: 70px 100px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.8s ease-out 0.2s both;
            border: 2px solid rgba(231, 76, 60, 0.1);
            backdrop-filter: blur(10px);
            max-width: 90%;
        }

        .hero-logo-box h1 {
            font-size: 4.5em;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-orange-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: -1px;
            animation: slideUp 0.8s ease-out 0.3s both;
        }

        .hero-logo-box .tagline {
            font-size: 1.3em;
            color: var(--dark-text);
            font-weight: 500;
            line-height: 1.6;
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        /* Carousel controls */
        .carousel-controls {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: var(--primary-red);
            width: 35px;
            border-radius: 7px;
            box-shadow: 0 0 15px rgba(231,76,60,0.5);
        }

        .carousel-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #0974B0;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav-btn:hover {
            background: var(--primary-red);
            transform: translateY(-50%) scale(1.15);
        }

        .carousel-nav-btn.prev {
            left: 20px;
        }

        .carousel-nav-btn.next {
            right: 20px;
        }

        /* Responsive hero section */
        @media (max-width: 1024px) {
            .hero-section {
                height: 450px;
            }

            .hero-logo-box {
                padding: 50px 60px;
            }

            .hero-logo-box h1 {
                font-size: 2.8em;
            }

            .hero-logo-box .tagline {
                font-size: 1.05em;
            }

            .carousel-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 400px;
                margin-top: 40px;
            }

            .hero-overlay {
                padding: 20px;
            }

            .hero-logo-box {
                padding: 40px 30px;
                border-radius: 10px;
            }

            .hero-logo-box h1 {
                font-size: 2.5em;
                margin-bottom: 8px;
            }

            .hero-logo-box .tagline {
                font-size: 1em;
                line-height: 1.4;
            }

            .carousel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .carousel-nav-btn.prev {
                left: 10px;
            }

            .carousel-nav-btn.next {
                right: 10px;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
            }

            .carousel-dot.active {
                width: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 300px;
                margin-top: 30px;
            }

            .hero-logo-box {
                padding: 30px 20px;
            }

            .hero-logo-box h1 {
                font-size: 2em;
            }

            .hero-logo-box .tagline {
                font-size: 0.9em;
                line-height: 1.3;
            }

            .carousel-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .carousel-controls {
                bottom: 15px;
                gap: 8px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dot.active {
                width: 25px;
            }
        }

        /* Hero Section */
        .hero-section {
            /*position: relative;*/
            /*width: 100%;*/
            /*max-width: 1500px;*/
            /*margin: 0 auto;*/
            /*height: 620px;*/
            /*overflow: hidden;*/
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Carousel Slides */
        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            pointer-events: none;
        }

        .carousel-slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Background Image */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        /* Modern Gradient Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(230,60,73,0.2) 100%);
            z-index: 2;
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 700px;
            padding: 120px 100px 60px;
            color: white;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Title with Modern Typography */
        .hero-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-title span {
            display: block;
            background: linear-gradient(to right, #fff, #e63c49);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Subtitle/Description */
        .hero-text {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 32px;
            color: rgba(255,255,255,0.95);
            max-width: 600px;
        }

        /* CTA Button */
        .hero-btn {
            background: #e63c49;
            color: white;
            padding: 16px 42px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(230,60,73,0.4);
        }

        .hero-btn:hover {
            background: #c92f3b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230,60,73,0.5);
        }

        /* Decorative Elements */
        .hero-shape {
            position: absolute;
            right: 0;
            top: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(230,60,73,0.15) 100%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 3;
        }

        /* Navigation Buttons */
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            font-size: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav-btn:hover {
            background: rgba(230,60,73,0.9);
            border-color: #e63c49;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav-btn.prev {
            left: 30px;
        }

        .carousel-nav-btn.next {
            right: 30px;
        }

        /* Carousel Controls (Dots) */
        .carousel-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-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;
        }

        .carousel-dot:hover {
            background: rgba(255,255,255,0.6);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: #e63c49;
            width: 32px;
            border-radius: 6px;
            border-color: white;
        }

        /* Responsive Design */
        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .hero-section {
                height: 550px;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-text {
                font-size: 16px;
            }

            .hero-content {
                max-width: 600px;
                padding: 100px 100px 50px;
            }
        }

        /* Tablets */
        @media (max-width: 992px) {
            .hero-section {
                height: 500px;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-text {
                font-size: 15px;
                max-width: 500px;
            }

            .hero-content {
                max-width: 550px;
                padding: 80px 100px 40px;
            }

            .hero-btn {
                padding: 14px 36px;
                font-size: 15px;
            }

            .carousel-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .carousel-nav-btn.prev {
                left: 20px;
            }

            .carousel-nav-btn.next {
                right: 20px;
            }

            .hero-shape {
                width: 45%;
                clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
            }
        }

        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {
            .hero-section {
                height: 450px;
            }

            .hero-content {
                padding: 180px 72px 25px;
                max-width: 100%;
            }

            .hero-title {
                font-size: 32px;
                margin-bottom: 16px;
            }

            .hero-text {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 24px;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .carousel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .carousel-nav-btn.prev {
                left: 15px;
            }

            .carousel-nav-btn.next {
                right: 15px;
            }

            .hero-shape {
                width: 50%;
                opacity: 0.5;
            }

            .carousel-controls {
                bottom: 25px;
                gap: 10px;
            }

            .carousel-dot {
                width: 10px;
                height: 10px;
            }

            .carousel-dot.active {
                width: 24px;
            }
        }

        /* Mobile portrait */
        @media (max-width: 576px) {
            .hero-section {
                height: 500px;
            }

            .hero-content {
                padding: 135px 20px 20px;
            }

            .hero-title {
                font-size: 23px;
                line-height: 1.2;
                margin-left:30px;
            }

            .hero-title span {
                display: inline;
            }

            .hero-text {
                font-size: 10px;
                line-height: 1.6;
                margin-bottom: 20px;
                max-width: 100%;
            }

            .hero-btn {
                padding: 12px 28px;
                font-size: 13px;
                width: 100%;
                max-width: 200px;
            }

            .carousel-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .carousel-nav-btn.prev {
                left: 10px;
            }

            .carousel-nav-btn.next {
                right: 10px;
            }

            .hero-shape {
                display: none;
            }

            .carousel-controls {
                bottom: 20px;
                gap: 8px;
            }

            .carousel-dot {
                width: 8px;
                height: 8px;
            }

            .carousel-dot.active {
                width: 20px;
            }
        }

        /* Extra small devices */
        @media (max-width: 375px) {
            .hero-section {
                height: 480px;
            }

            .hero-title {
                font-size: 20px;
            }

            .hero-text {
                font-size: 10px;
            }

            .hero-content {
                padding: 120px 25px 35px;
            }
        }

        /* Product Categories Tabs */
        .product-categories {
            background-color: #fff;
            position: relative;
            /* margin-top: -80px; */
            z-index: 50;
            padding: 40px 50px;
        }

        .category-content {
            display: none;
            padding: 80px 50px;
            background-color: var(--background-light);
            animation: fadeInUp 0.6s ease-out;
        }

        .category-content.active {
            display: block;
        }




        .categories-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .category-tab {
            flex: 1;
            min-width: 200px;
            max-width: 280px;
            height: 160px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1em;
            color: var(--dark-text);
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
            clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
            margin: 0 -5px;
            animation: slideUp 0.6s ease-out;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .category-tab.active {
            background-color: var(--primary-red) !important;
            color: #fff !important;
            transform: translateY(-12px);
            z-index: 5 !important;
            box-shadow: 0 12px 30px rgba(231, 76, 60, 0.3) !important;
        }

        .category-tab:nth-child(1) {
            animation-delay: 0s;
        }

        .category-tab:nth-child(2) {
            animation-delay: 0.1s;
        }

        .category-tab:nth-child(3) {
            animation-delay: 0.2s;
        }

        .category-tab:nth-child(4) {
            animation-delay: 0.3s;
        }

        .category-tab:nth-child(2) {
            background-color: #e8e8e8;
            z-index: 3;
        }

        .category-tab:nth-child(3) {
            background-color: #f0f0f0;
            z-index: 2;
        }

        .category-tab:nth-child(4) {
            background-color: #f5f5f5;
            z-index: 1;
        }

        .category-tab:hover {
            background-color: var(--primary-red);
            color: #fff;
            transform: translateY(-12px);
            z-index: 5;
            box-shadow: 0 12px 30px rgba(231, 76, 60, 0.3);
        }

        .category-tab span {
            position: relative;
            z-index: 10;
        }

        @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .category-content {
        padding: 60px 20px;
    }
    
    .category-content .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-content .about-images {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .category-content {
        padding: 40px 15px;
    }
    
    .category-content .section-title {
        font-size: 1.6em;
    }
}

        /* About Us Section */
        .about-us {
            padding: 40px 50px;
            background-color: var(--background-light);
            animation: fadeInScale 0.8s ease-out;
            font-family: 'Bechilo', sans-serif !important;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5em;
            color: var(--primary-red);
            margin-bottom: 50px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange-yellow));
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.9;
            text-align: justify;
            animation: slideUp 0.6s ease-out;
        }

        .about-text h3 {
            color: var(--primary-red);
            font-size: 1.5em;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: slideUp 0.6s ease-out 0.1s both;
            margin-top: 40px;
        }
        .about-images-1 {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.metal-img {
    background-image: url('./assets/Copper.png');
}

.paper-img {
    background-image: url('./assets/journals.webp');
}

.agri-img {
    background-image: url('./assets/cashew.webp');
}

.garments-img {
    background-image: url('./assets/leather_jackets.webp');
}

.vessel-img {
    background-image: url('./assets/vessel.webp');
}


.cashew{
    width: 270px;
    height: 300px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-images-1 {
        height: 260px;
    }
}

        .about-image {
            width: 100%;
            height: 220px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            border: 3px solid #fff;
            object-position: bottom;
        }


        .about-image:hover {
            transform: scale(1.08) translateY(-5px);
            box-shadow: 0 12px 30px rgba(231, 76, 60, 0.2);
        }

        .about-image-1 {
            width: 100%;
            height: 70vh;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            border: 3px solid #fff;
        }


        .about-image-1:hover {
            transform: scale(1.08) translateY(-5px);
            box-shadow: 0 12px 30px rgba(231, 76, 60, 0.2);
        }

        

        /* Services Section */
        .services-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .service-card {
            background: #fff;
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            animation: slideUp 0.6s ease-out;
            border-top: 4px solid var(--secondary-green);
        }

        .service-card:nth-child(1) {
            animation-delay: 0s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(231, 76, 60, 0.05);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
        }

        .service-icon {
            font-size: 4em;
            margin-bottom: 25px;
            color: var(--primary-red);
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        .service-card h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: var(--dark-text);
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: #666;
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us Section - Enhanced */
        .why-choose {
            background: linear-gradient(135deg, var(--primary-red));
            padding: 100px 50px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-choose .section-title {
            color: #fff;
            text-align: center;
        }

        .why-choose .section-title::after {
            background: linear-gradient(white);
            left: 50%;
            transform: translateX(-50%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .feature-item {
            text-align: center;
            animation: slideUp 0.6s ease-out;
        }

        .feature-item:nth-child(1) {
            animation-delay: 0s;
        }

        .feature-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .feature-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .feature-item:nth-child(4) {
            animation-delay: 0.3s;
        }

        .feature-item i {
            font-size: 3.5em;
            margin-bottom: 20px;
            opacity: 0.9;
            animation: pulse 2s ease-in-out infinite;
        }

        .feature-item h4 {
            font-size: 3em;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-top: 20px;
        }

        .feature-item p {
            opacity: 0.95;
            font-size: 1.05em;
        }

        /* Process Section */
        .process-section {
            padding: 80px 20px;
            background-color: var(--background-light);
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-grid {
           display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    justify-items: center;
            justify-items: center;
        }

        .process-grid > :nth-child(4),
.process-grid > :nth-child(5) {
    grid-column: span 1;
}



        

        /* .process-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 148px;
            right: 196px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red));
            z-index: 0;
        } */

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.6s ease-out backwards;
            transition: all 0.3s ease;
        }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-step:nth-child(4) { animation-delay: 0.4s; }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-number {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--accent-orange-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            color: #fff;
            font-weight: 700;
            margin: 0 auto 20px;
            /* box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3); */
            transition: all 0.3s ease;
        }

        .process-step:hover .process-number {
            transform: scale(1.15) rotateZ(360deg);
            box-shadow: 0 12px 30px var(--accent-orange-yellow1);
        }

        .process-step h4 {
            font-size: 1.2em;
            color: var(--accent-orange-yellow);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95em;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f8f8, #fff);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        } */


        .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}


        .testimonial-card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            position: relative;
            animation: fadeInUp 0.6s ease-out backwards;
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent-orange-yellow);
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; border-top-color: var(--secondary-green); }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; border-top-color: var(--secondary-green); }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; border-top-color: var(--secondary-green); }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 4em;
            color: var(--primary-red);
            opacity: 0.2;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
            font-size: 0.95em;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.3em;
            flex-shrink: 0;
        }

        .author-info h5 {
            margin: 0;
            font-weight: 600;
            color: var(--dark-text);
        }

        .author-info p {
            margin: 0;
            font-size: 0.9em;
            color: #999;
        }

        .rating {
            color: var(--accent-orange-yellow1);
            font-size: 0.9em;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        /* New Featured Commodities Section */
        .commodities-section {
            padding: 80px 30px;
            background-color: #fff;
        }

        .commodities-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* .commodities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        } */

        .commodities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}


        .commodity-card {
            background: var(--background-light);
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            animation: fadeInUp 0.6s ease-out backwards;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .commodity-card:nth-child(1) { animation-delay: 0.1s; }
        .commodity-card:nth-child(2) { animation-delay: 0.2s; }
        .commodity-card:nth-child(3) { animation-delay: 0.3s; }
        .commodity-card:nth-child(4) { animation-delay: 0.4s; }

        .commodity-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-green);
        }

        .commodity-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .commodity-icon {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: #fff;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .commodity-card:nth-child(1) .commodity-icon { background-color: var(--primary-red); }
        .commodity-card:nth-child(2) .commodity-icon { background-color: var(--secondary-green); }
        .commodity-card:nth-child(3) .commodity-icon { background-color: var(--tertiary-blue); }
        .commodity-card:nth-child(4) .commodity-icon { background-color: var(--accent-orange-yellow); }

        /* .commodity-card:hover .commodity-icon {
            transform: scale(1.2) rotate(10deg);
        } */

        .commodity-card h4 {
            font-size: 1.2em;
            color: var(--dark-text);
            font-weight: 600;
            /* margin-bottom: 90px; */
        }

        .commodity-card p {
            color: #666;
            font-size: 0.9em;
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 20px;
            background-color: white;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        } */

        .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}


        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            cursor: pointer;
            animation: scaleIn 0.6s ease-out backwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.15s; }
        .gallery-item:nth-child(3) { animation-delay: 0.2s; }
        .gallery-item:nth-child(4) { animation-delay: 0.25s; }
        .gallery-item:nth-child(5) { animation-delay: 0.3s; }
        .gallery-item:nth-child(6) { animation-delay: 0.35s; }
        .gallery-item:nth-child(7) { animation-delay: 0.4s; }
        .gallery-item:nth-child(8) { animation-delay: 0.45s; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(243,156,18, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-text {
            color: #fff;
            font-weight: 600;
            text-align: center;
            font-size: 1.1em;
            letter-spacing: 1px;
        }

        /* New Team Section */
        .team-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #fff, #f8f8f8);
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-intro {
            /* text-align: center; */
            /* max-width: 700px; */
            margin: 0 auto 60px;
        }

        .team-intro p {
            color: #666;
            line-height: 1.8;
            font-size: 1.1em;
        }

        /* .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        } */

        .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}


        .team-member {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out backwards;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .team-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-red));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-size: 3em;
            color: #fff;
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h4 {
            color: var(--dark-text);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1em;
        }

        .team-info p {
            color: var(--primary-red);
            font-size: 0.9em;
            margin-bottom: 10px;
        }

        .team-info .description {
            color: #666;
            font-size: 0.85em;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
        }

        .contact-info-card {
            background: #fff;
            padding: 35px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 5px solid var(--secondary-green);
            transition: all 0.4s ease;
            animation: slideUp 0.6s ease-out;
        }

        .contact-info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
        }

        .contact-info-card h4 {
            color: var(--primary-red);
            margin-bottom: 15px;
            font-size: 1.3em;
            font-weight: 600;
        }

        .contact-info-card i {
            margin-right: 10px;
        }

        .contact-info-card p {
            color: #666;
            line-height: 1.9;
        }

        .contact-form {
            background: #fff;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            animation: slideUp 0.6s ease-out 0.1s both;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 1em;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            font-size: 1em;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-red));
            color: #fff;
            padding: 16px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            /* box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3); */
        }

        /* .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        } */

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Filter Section */
        .products-filter {
            background: var(--secondary);
            padding: 40px 20px;
            margin: 60px 0;
        }

        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .filter-container h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .filter-btn {
            padding: 12px 25px;
            border: 2px solid var(--text-dark);
            background: transparent;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
            font-size: 14px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--text-dark);
            color: white;
            border-color: var(--text-dark);
        }

        /* Products Section */
        .products-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .product-category {
            display: none;
        }

        .product-category.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .category-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 15px;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .product-card {
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;

    /* ADD THESE 3 LINES */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;  /* makes body fill vertical space */
}


        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 25px;
        }

        .product-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .product-info p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .product-specs {
            font-size: 12px;
            color: #999;
            background: var(--secondary);
            padding: 12px;
            border-radius: 4px;
            margin-top: 15px;
        }

        /* Details Section */
        .details-section {
            background: white;
            padding: 60px 20px;
            margin: 60px 0;
            border-top: 1px solid var(--border);
        }

        .details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .detail-block {
            margin-bottom: 60px;
        }

        .detail-block h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .detail-block p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .specs-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .spec-item {
            padding: 15px;
            background: var(--secondary);
            border-left: 3px solid var(--accent);
        }

        .spec-item strong {
            color: var(--text-dark);
        }

        /* Footer */
        footer {
            background: var(--tertiary-blue);
            color: var(--light-text);
            padding: 60px 50px 25px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 1em;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: var(--light-text);
            line-height: 2;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-orange-yellow1);
            font-weight: bolder;
            transform: translateX(5px);
        }

        .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: var(--light-text);
    flex-wrap: wrap; /* supports mobile */
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
}

/* Center stacked on mobile */
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


        /* Improved responsive design with mobile-first approach */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 40px;
            }

            .top-bar-left,
            .top-bar-right {
                padding: 10px 40px;
            }

            .services-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-logo-box {
                padding: 50px 60px;
            }

            .hero-logo-box h1 {
                font-size: 3.5em;
            }
        }

        @media (max-width: 1024px) {
            .categories-tabs {
                padding: 0 30px;
            }

            .category-tab {
                max-width: 250px;
                height: 140px;
                font-size: 1em;
            }

            .services-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile responsive improvements */
            .top-bar {
                flex-direction: column;
                gap: 15px;
                padding: 15px 0;
            }

            .top-bar-left,
            .top-bar-right {
                padding: 10px 20px;
                justify-content: center;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 10px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                justify-content: center;
                padding: 8px 20px;
                flex-wrap: wrap;
            }

            .top-bar-right {
                width: 100%;
                box-shadow: none;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .contact-info span {
                font-size: 13px;
            }

            .nav-container {
                padding: 0 20px;
                /* flex-direction: column; */
            }

            .logo {
                width: 100px;
                height: 100px;
                top: -10px;
            }

            .logo-text .rrk {
                font-size: 26px;
            }

            .logo-text .global {
                font-size: 10px;
            }

            .nav-menu {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                padding: 0px 0;
                text-align: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-top: 2px solid var(--primary-red);
                z-index: 100;
            }

            .nav-menu.active {
                max-height: 400px;
            }

            .nav-menu a {
                display: block;
                padding: 15px 20px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
            }

            .nav-menu a::after {
                display: none;
            }

            .nav-menu a:hover,
            .nav-menu a.active {
                background-color: #f5f5f5;
                padding-left: 25px;
            }
            

            .hero-section {
                height: 400px;
                margin-top: 0px;
            }

            .hero-overlay {
                padding: 20px;
            }

            .hero-logo-box {
                padding: 40px 30px;
                border-radius: 10px;
            }

            .hero-logo-box h1 {
                font-size: 2.5em;
                margin-bottom: 10px;
            }

            .hero-logo-box .tagline {
                font-size: 1em;
                line-height: 1.4;
            }

            .about-us,
            .services-section,
            .why-choose,
            .contact-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 2em;
                margin-bottom: 30px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-grid,
            .features-grid {
                /* grid-template-columns: 1fr; */
                gap: 25px;
            }

            .service-card {
                padding: 35px 25px;
            }

            .feature-item h4 {
                font-size: 2.5em;
            }

            .categories-tabs {
                padding: 0 15px;
                gap: 5px;
            }

            .category-tab {
                max-width: 100%;
                height: 120px;
                font-size: 0.95em;
                margin: 0 2px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            footer {
                padding: 40px 20px 15px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .social-icons {
                display: flex;
                gap: 10px;
                justify-content: center;
            }

            .social-icons a {
                width: 28px;
                height: 28px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                gap: 10px;
                padding: 10px 0;
            }

            .top-bar-left,
            .top-bar-right {
                padding: 8px 15px;
                font-size: 12px;
            }

            .contact-info {
                gap: 8px;
            }

            .contact-info span {
                font-size: 11px;
            }

            .nav-menu {
                gap: 8px;
            }

            .hero-section {
                
                height: 300px;
            }

            .hero-logo-box {
                padding: 30px 20px;
            }

            .hero-logo-box h1 {
                font-size: 2em;
            }

            .hero-logo-box .tagline {
                font-size: 0.9em;
                line-height: 1.4;
            }

            .section-title {
                font-size: 1.6em;
            }

            .categories-tabs {
                padding: 0 10px;
            }

            .category-tab {
                height: 100px;
                font-size: 0.85em;
            }

            .service-icon {
                font-size: 3em;
            }

            .feature-item h4 {
                font-size: 2em;
            }

            .feature-item i {
                font-size: 2.5em;
            }
        }

        .scroll-animate {
            opacity: 0;
        }

        .scroll-animate.in-view {
            animation: fadeInUp 0.6s ease-out forwards;
        }
.vessel-card {
            border: none;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .vessel-card:hover {
            transform: translateY(-5px);
        }
        
        .vessel-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .vessel-card-body {
            padding: 1.5rem;
        }
        
        .vessel-card h4 {
            color: black;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .innovation-section {
            background-color: #f8f9fa;
        }
        
        .innovation-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .vessel-card img {
                height: 200px;
            }
        }

        .card {
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(220, 53, 69, 0.15) !important;
        }
        
        @media (max-width: 768px) {
            .vessel-card img {
                height: 200px;
            }
        }
    

