:root {
    --primary: #0A192F;
    --primary-light: #112240;
    --secondary: #0077B6;
    --accent: #FF8C00;
    --accent-hover: #E67E00;
    --text-main: #2b3a4a;
    --text-light: #5f7082;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.section-header h2 span {
    color: var(--accent);
}
.divider {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin-bottom: 25px;
    border-radius: 4px;
}
section {
    padding: 100px 0;
}

/* Animations (3D Motions) */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-slow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 4s ease-in-out infinite;
}
.floating-slow {
    animation: float-slow 6s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
}
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 140, 0, 0.3);
}
.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: none;
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background:  rgba(10, 25, 47, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
   
}
.navbar.scrolled .nav-logo {
    height: 55px;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 35px;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--accent);
    
}
.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}
.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-image: url('Assest/port_logistics_1786089131038.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.7) 40%, rgba(10,25,47,0.3) 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
    perspective: 1000px;
}
.badge {
    background: rgba(255, 140, 0, 0.9);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
}
.hero-title .highlight {
    color: var(--accent);
}
.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #e2e8f0;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}
.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform-style: preserve-3d;
    border: 1px solid rgba(0,0,0,0.03);
}
.stat-item {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    flex: 1;
    transform: translateZ(20px);
}
.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1;
}
.stat-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 500;
}
.about-image {
    position: relative;
    perspective: 1000px;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 10px solid var(--white);
}
.experience-badge {
    position: absolute;
    bottom: -50px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.4);
    transform-style: preserve-3d;
}
.experience-badge i {
    font-size: 2.5rem;
    color: var(--accent);
    transform: translateZ(10px);
}

/* Vision & Mission */
.vision-mission {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vm-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    transform-style: preserve-3d;
}
.vm-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    transform: translateZ(30px);
    display: inline-block;
}
.vm-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    transform: translateZ(20px);
}
.vm-card p, .vm-card ul {
    color: var(--text-light);
    font-size: 1.15rem;
    transform: translateZ(10px);
}
.vm-card ul {
    list-style: none;
}
.vm-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.vm-card ul li i {
    color: var(--accent);
    margin-top: 5px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transform-style: preserve-3d;
}
.service-inner {
    transform: translateZ(30px);
}
.service-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    color: var(--accent);
    transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-light);
}

/* Why Choose Us */
.why-us {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
}
.why-us .section-header h2 {
    color: var(--white);
}
.why-us .section-header p {
    color: #a0aec0;
    font-size: 1.1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}
.feature-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.feature-item i {
    color: var(--accent);
    font-size: 1.8rem;
}

/* Core Values */
.values {
    background: var(--bg-light);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}
.value-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transform-style: preserve-3d;
}
.value-card i {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 25px;
    background: var(--bg-light);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: var(--transition);
    display: inline-block;
    transform: translateZ(20px);
}
.value-card:hover i {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255,140,0,0.3);
}
.value-card h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    transform: translateZ(15px);
}
.value-card p {
    color: var(--text-light);
    transform: translateZ(10px);
}

/* Compliance & License */
.compliance {
    background: var(--white);
}
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.compliance-card {
    padding: 50px;
    background: var(--bg-light);
    border-radius: 20px;
    border-left: 6px solid var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform-style: preserve-3d;
}
.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transform: translateZ(30px);
}
.compliance-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transform: translateZ(20px);
}
.compliance-card p {
    color: var(--text-light);
    font-size: 1.15rem;
    transform: translateZ(10px);
}

.license-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 30px 60px rgba(10,25,47,0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.license-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    border-radius: 50%;
}
.license-icon {
    font-size: 6rem;
    color: var(--accent);
    transform: translateZ(40px);
}
.license-text {
    transform: translateZ(30px);
}
.license-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.license-text p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

/* Footer */
footer {
    background: #020813;
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 70px;
}
.footer-logo-img {
    height: 120px;
    margin-bottom: 0px;
   
}
.footer-about p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}
.footer-links h3, .footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}
.footer-links ul, .footer-contact ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 18px;
}
.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}
.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}
.footer-contact ul li {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    color: #94a3b8;
    font-size: 1.05rem;
}
.footer-contact ul li i {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
}
.footer-contact ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact ul li a:hover {
    color: var(--accent);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
}

/* Animations & Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid, .vm-grid, .compliance-grid {
        grid-template-columns: 1fr;
    }
    .services-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    .experience-badge {
        left: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(255,140,0,0.98) 0%, rgba(255,158,44,0.95) 100%);
        backdrop-filter: blur(15px);
        padding: 25px 20px;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        gap: 15px;
        
        /* Smooth dropdown animation */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links a {
        color: var(--white) !important;
        padding: 12px 20px;
        font-size: 1.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.2);
        transition: var(--transition);
    }
    .nav-links a:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: scale(1.03);
    }
    .nav-links a::after {
        display: none;
    }
    .hamburger {
        display: block;
        color: var(--white);
    }
    .services-grid, .values-grid, .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
		margin:0px;
    }
	.badge
	{
		margin-bottom:0px;
	}
	.container
	{
		width:434px;
	}
	.vision-mission
	{
		width:434px;
	}
	footer{
		width:434px;
	}
	.values{
		width:434px;
	}
	.why-us{
		width:434px;
	}
	.hero {
   width:434px;
}
    .license-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    animation: float-slow 4s ease-in-out infinite;
}
.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 35px;
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}
