  /* --- THEME VARIABLES --- */
        :root {
            --primary-color: #0a2540; /* Dark Navy */
            --secondary-color: #dda35d; /* Muted Gold */
            --action-color: #ffb700; /* BRIGHT Orange/Gold for Buttons */
            --light-bg: #f8f9fa;
            --dark-bg: #0f172a;
            --text-color: #333;
            --white: #ffffff;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- NAVIGATION --- */
        .navbar {
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a { font-weight: 600; color: var(--primary-color); font-size: 1rem; }
        .nav-links a:hover { color: var(--action-color); }



        
        /* --- HIGH VISIBILITY QUOTE BUTTON --- */
        .btn-quote {
            background: var(--action-color);
            color: var(--primary-color);
            padding: 0.8rem 1.8rem;
            border-radius: 50px; /* Rounded pill shape */
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4); /* Glow effect */
            transition: transform 0.3s ease;
            animation: pulse-animation 2s infinite; /* Attention grabber */
        }

        .btn-quote:hover {
            transform: scale(1.05);
            background: #e6a500;
            color: #000;
        }

        /* Pulse Animation Keyframes */
        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 183, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0); }
        }

        .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary-color); }

        /* --- HERO SECTION (NEW IMAGE) --- */
        .hero {
            height: 90vh;
            /* UPDATED IMAGE: Large Container Ship / Port */
            background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.6)), 
                        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
            margin-top: 70px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-inline: auto;
            color: #f0f0f0;
        }

        .btn-hero {
            background: transparent;
            border: 2px solid orange;
            color: var(--white);
            padding: 1rem 1.3rem;
            font-weight: bold;
            font-size: 1.1rem;
            border-radius: 10px;
        }
        .btn-hero:hover { background: var(--white); color: var(--primary-color); }

        /* --- SERVICES --- */
        /* --- General Layout --- */
        .section-padding {
            padding: 80px 20px;
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, orange, #cbdcdf);
            margin: 0 auto;
            border-radius: 2px;
        }



        /* --- Grid System --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Card Styling --- */
        .service-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
            border-bottom: 3px solid transparent;
            position: relative;
            overflow: hidden;
            border: 2px solid orange;
            
            /* Initial State for Animation */
            opacity: 0;
            transform: translateY(50px);
        }

          .service-card p{
            font-family:Georgia, 'Times New Roman', Times, serif;
          }

        /* --- Hover Animations --- */
        .service-card:hover {
            transform: translateY(-15px) scale(3.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-bottom: 10px solid orange;
        }

        /* Icon Styling */
        .icon-circle {
            width: 50px;
            height: 80px;
            
            color: #2c3e50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 32px;
            transition: all 0.4s ease;
        }

        .service-card:hover .icon-circle {
            background: #2c3e50;
            color: #ffffff;
            transform: rotateY(360deg); /* 3D Spin effect */
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-card p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* --- Animation Class (Triggered by JS) --- */
        .service-card.reveal {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for a cascading effect */
        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }



        /* --- ABOUT (NEW IMAGE) --- */
        .about-container { display: flex; gap: 6rem; align-items: center; flex-wrap: wrap; }
        .about-text { flex: 1; min-width: 300px; }
        
        .about-img { 
            flex: 1; 
            min-width: 70px; 
            position: relative;
            border-radius:25px ;
        }

        /* UPDATED IMAGE: Modern Warehouse Tech */
        .about-img img { 
            margin-left: 15px;
            width: 90%;
            border:3px solid orange;
            border-radius: 10px;
            box-shadow: -15px 15px 0px rgb(199, 196, 166);  
            /* Cool shadow effect */
        }

        /* --- CONTACT FORM --- */

        .contact-form {
            margin-bottom: 40px;
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            padding: 1rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 10px;
            border: 1px solid var(--action-color);
            border-top: 5px solid orange;
        }
        
        input, select, textarea {
            width: 100%; padding: 1rem; margin-bottom: 1.5rem;
            border: 1px solid #ddd; border-radius: 4px;
            font-size: 1rem; outline: none; background: #fdfdfd;
        }
        input:focus, textarea:focus { border-color: var(--action-color); background: #fff; }

        .submit-btn {
            background: var(--primary-color);
            color: var(--white);
            width: 100%; padding: 1rem;
            border: none; border-radius: 4px;
            font-size: 1.2rem; font-weight: bold;
            cursor: pointer; transition: 0.3s;
        }
        .submit-btn:hover { background: #1a3c5e; }

        /* --- FOOTER (FROM PREVIOUS) --- */
        footer {
            background: var(--dark-bg);
            color: #b0b8c4;
            padding: 4rem 5% 1rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-col h3 { color: var(--white); margin-bottom: 1.5rem; }

/*footer direct link view  */
.footer-links {
            display: flex;             
            flex-direction: column;    
            align-items:first baseline;  
} 
        
        /* Container Style */
.gst-box.scanner {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    padding: 15px 30px;
    background: #0f172a; /* Dark background */
    color: #00d4ff;      /* Cyan text */
    font-family: monospace;
    font-size: 1.2rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

/* The Scanning Bar */
.gst-box.scanner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(0, 212, 255, 0.5), 
        transparent
    );
    transform: skewX(-20deg);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; } /* Pause effect */
}


        

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: absolute; top: 70px; left: -100%;
                width: 100%; background: var(--white);
                flex-direction: column; padding: 2rem;
                transition: 0.4s; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { left: 0; }
            .hero-content h1 { font-size: 2.5rem; }
            .about-container { flex-direction: column-reverse; }
            .btn-quote { width: 100%; justify-content: center; }
        }



