* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

/* Color System */
:root {
    --primary: #FFD700;
    --primary-hover: #E6C200;
    --secondary: #F5F5F5;
    --background: #FFFFFF;
    --foreground: #000000;
    --muted: #666666;
    --border: #E5E5E5;
    --card-bg: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hide elements by default */
.hidden {
    display: none;
}

.section-padding {
    padding: 2rem 0;
}

.bg-secondary {
    background-color: var(--secondary);
}

/* header */


.header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7rem;
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
}

.logo-text {
    margin-left: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    display: none;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fcc861;
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius);
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: #fcc861;
    background-color: var(--secondary);
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius);
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: #fcc861;
    background-color: var(--secondary);
}

.mobile-menu-btn {
    background: none;
    border: none;
    width: 9%;
    height: 20%;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.9s ease;
    margin-bottom: 6%;
}

.mobile-menu-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-mobile {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile.active {
    display: flex;
}

/* Footer */

.footer {
    background: var(--foreground);
    color: #eee;
    padding: 60px 0 30px;
    /* font-family: 'Poppins', sans-serif; */
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-card {
    width: 35%;
}

.footer-section h3,
.footer-section h4 {
    color: #fcc861;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
    color: #ccc;
    margin: 10px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a {
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fcc861;
}

.social-icons a {
    color: #fcc861;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}




/* Hero Section */

.hero-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 6rem 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("./Images/Photos/Hero-banner.jpg") no-repeat center/cover;
    filter: blur(6px);
    transform: scale(1.1);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}


.hero-title {
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: #fcc861;
    color: var(--foreground);
}

.btn-primary:hover {
    background-color: #fcc556;
}

.btn-outline {
    border-color: #fcc861;
    color: #fcc861;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fcc861;
    color: var(--foreground);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    margin-left: 0.5rem;
}

/* Welcome */

.section-header {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.25rem;
    max-width: 60rem;
    margin: 0 auto;
}

/* company overview */

.about-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;

}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}


/* Mission and Vision */
.mission-vision-grid {
    display: grid;
    gap: 3rem;
}

.mission-vision-item {
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 1px 1px 10px 10px gainsboro;
}

.mission-vision-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mission-vision-header h3 {
    color: #fcc861;
}

.icon {
    font-size: 2rem;
}

/* Corporate values */

.values-grid {
    display: grid;
    gap: 2rem;
    padding-top: 4rem;
}

.value-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 1px 1px 10px 10px gainsboro;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    background-color: #fcc861;
}

.value-card:hover p {
    color: #fff;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.text-box {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.cv-btn:link,
.cv-btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    display: inline-block;
    border-radius: var(--radius);
    transition: all .2s;
    position: absolute;
}

.cv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cv-btn-white {
    background-color: #fcc861;
    color: #000;
    font-weight: bold;
}

/* Home Page End */

/* Page Header */
.page-header {
    background-color: #fcc861;
    color: var(--foreground);
    padding: 4rem 0;
}

.page-header-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
}

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--foreground);
    opacity: 0.9;
}

/* Core company activity */

.service-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: #fff;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #555;
}

.service-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.03);
}

/*  <!-- Products & Commodities --> */
.activities-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 20px 0;
    margin-top: 4rem;
}

.activities-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;

}

.activity-card {
    flex: 0 0 auto;
    width: 5%;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    margin: 0 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activity-card:hover {
    background: #fcc861;
}

.activity-card:hover p {
    color: #fff;
}


.activity-icon {
    font-size: 2rem;
}



.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.activities-marquee:hover .activities-track {
    animation-play-state: paused;
}


/* products & commodities */

.products-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.products-content {
    flex: 1;
    min-width: 300px;
}

.products-content h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 1rem;
}

.products-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.products-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.products-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.products-image img:hover {
    transform: scale(1.03);
}



/* product - transport*/

.alternate-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alternate-section img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    /* border-radius: 10px; */
}

.alternate-section .text {
    flex: 1;
    text-align: left;
}

.alternate-section h4 {
    margin-bottom: 10px;
    font-size: 22px;
}

.alternate-section p {
    font-size: 15px;
    line-height: 1.6;
}

.alternate-section:nth-child(even) {
    flex-direction: row-reverse;
}


/* Strengths Grid */
.strengths-grid {
    display: grid;
    gap: 2rem;
    padding-top: 4rem;
}

.strength-item {
    display: flex;
    gap: 1rem;
}

.strength-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.strength-content h4 {
    margin-bottom: 0.75rem;
    color: var(--foreground);
}


/* What we do page end */


/* Contact form */

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fcc861;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    display: none;
}

.error-message.show {
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.contact-details p {
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.map-placeholder {
    height: 16rem;
    background-color: var(--secondary);
    border-radius: var(--radius);
}

.map-content {
    text-align: center;
    height: 100%;
}


.map-content h4 {
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: var(--muted);
}


/* Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-content {
    padding: 1.5rem;
}

.card-content-no-padding {
    padding: 0;
}


/* Products Grid */
.products-grid {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.product-icon {
    font-size: 1.5rem;
}

.product-category {
    background-color: rgba(255, 215, 0, 0.1);
    color: #fcc861;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-card h4 {
    color: var(--foreground);
    font-weight: 600;
}

.product-para {
    font-size: 15px;
    margin-top: 5px;
}






iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
}




/* Responsive Layouts */

@media (max-width:1024px) {
    .service-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .service-intro {
        flex-direction: column;
        text-align: center;
    }

    .service-text {
        order: 1;
    }

    .service-image {
        order: 2;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .service-text h2 {
        font-size: 1.5rem;
    }

    .service-intro {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}




/* Responsive Design */
@media (min-width: 640px) {
    .logo-text {
        display: block;
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .logo-text {
        font-size: 1.50rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 4rem;
    }
}


@media (max-width: 768px) {
    .alternate-section {
        flex-direction: column !important;
        text-align: center;
    }

    .alternate-section img {
        width: 100%;
        height: auto;
    }
}


@media (max-width:1024px) {
    .products-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .products-section {
        flex-direction: column;
        text-align: center;
    }

    .products-content {
        order: 1;
    }

    .products-image {
        order: 2;
    }

    .products-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .products-content h2 {
        font-size: 1.5rem;
    }
}


@media (max-width:1024px) {
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-intro {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }

    .footer-card {
        width: 100%;
    }

    .footer-section p {
        margin: 5px 0;
    }
}

