/* ------------------------------------------------------------
   SIMPLE COLOR PALETTE
------------------------------------------------------------ */

:root {
    --brown-dark: #3b1f1a;
    --horse-blood: #7A0A0A;
    --cream: #f8e8d4;
}

.container-fluid{
    margin-left: 0;
    padding-left: 0;
}

/* ------------------------------------------------------------
   LOGO BLOCK
------------------------------------------------------------ */
.logo-block {
    background: var(--horse-blood);
    padding: 10px 90px 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    /* Slanted right side (top → bottom) */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.logo-img {
    height: 38px;
}


/* ------------------------------------------------------------
   RIGHT BLOCK (TRACK GOODS)
------------------------------------------------------------ */
.right-block {
    background: var(--horse-blood);
    padding: 15px 40px;
    cursor: pointer;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    transition: 0.5s;
}

.track-btn {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.track-btn:hover {
    color: #f0f0f0;
}

.right-block i{
    color: #fff;
    padding-left: 10px;
}

.right-block:hover {
    background: var(--brown-dark) !important;
}



/* ------------------------------------------------------------
   NAV LINKS
------------------------------------------------------------ */

.nav-link {
    color: var(--brown-dark) !important;
    font-weight: 500;
    padding: 15px 20px !important;
}

.nav-link:hover {
    color: var(--horse-blood) !important;
}

/* ------------------------------------------------------------
   HAMBURGER ANIMATION
------------------------------------------------------------ */
.custom-toggler {
    border: none;
    background: transparent;
    width: 35px;
    height: 28px;
    position: relative;
}

.toggler-icon {
    background-color: var(--brown-dark);
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: 0.3s;
    border-radius: 2px;
}

.top-bar { top: 0; }
.middle-bar { top: 12px; }
.bottom-bar { top: 24px; }

.custom-toggler[aria-expanded="true"] .top-bar {
    transform: rotate(45deg);
    top: 12px;
}
.custom-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0;
}
.custom-toggler[aria-expanded="true"] .bottom-bar {
    transform: rotate(-45deg);
    top: 12px;
}




/* hero section */

.hero {
    position: relative;
    background: url('../img/main-image.jpg') center/cover no-repeat;
    padding: 150px 0;
    color: #fff;
    overflow: hidden;
    min-height: 50vh;
}

/* ===== LEFT-SIDE DARK GRADIENT OVERLAY (LIKE YOUR REFERENCE) ===== */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 44, 56, 0.95) 20%,   /* very dark left */
        rgba(15, 44, 56, 0.65) 200%,  /* soft fade */
        rgba(15, 44, 56, 0.25) 10%  /* light right side */
    );
    z-index: 1;
}

/* BOTTOM SLANTED SHAPE */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: var(--horse-blood);
    clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
    z-index: 3;
}

/* CENTER CONTENT */
.hero .hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 700px;
}

/* TITLE BADGE */
.badge-title {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* HEADER TEXT */
.tag {
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* CTA BUTTON */
.cta-btn {
    background: var(--horse-blood);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: var(--cream);
    color: #3b1f1a;
}

/* TOP CIRCULAR IMAGE */
.hero-top-image {
    position: absolute;
    left: -90px;
    top: -100px;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid var(--horse-blood);
    z-index: 4;
}

.hero-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-top-image {
        left: -40px;
        top: -60px;
        width: 220px;
        height: 220px;
    }
}


















/* ================= ABOUT + SERVICES SECTION ================= */

.about-services {
    padding: 100px 0;
    background: #f9f9f9;
}

/* SERVICE CARDS */
.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.service-card i {
    font-size: 40px;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.service-card.active {
    background: var(--horse-blood);
    color: #fff;
}

.service-card.active i,
.service-card.active p {
    color: #fff;
}

.service-card .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    opacity: 0.2;
    font-size: 28px;
}

/* ABOUT IMAGE */
.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--horse-blood);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge h3 {
    margin: 0;
    font-size: 26px;
}

/* ABOUT CONTENT */
.section-tag {
    color: var(--horse-blood);
    font-weight: 600;
}

.about-content h2 {
    font-weight: 700;
    margin: 15px 0;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.about-list i {
    color: var(--horse-blood);
    margin-right: 8px;
}

/* STATS */
.stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.stat-box {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-box h4 {
    color: var(--horse-blood);
    margin: 0;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: var(--horse-blood);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
}

.about-btn:hover {
    background: #5f0808;
}










/* ================= SERVICES SECTION ================= */

.services {
    padding: 100px 0;
    background: #f8f8f8;
    position: relative;
}

/* HEADER */
.services-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-weight: 700;
    margin: 15px 0;
}

.services-header p {
    color: #666;
}

/* SERVICE CARD */
.service-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 30px;
}

.service-tag {
    font-size: 13px;
    color: var(--horse-blood);
    font-weight: 600;
}

.service-content h4 {
    font-weight: 600;
    margin: 10px 0;
}

.service-content p {
    font-size: 14px;
    color: #666;
}

.service-content a {
    color: var(--horse-blood);
    font-weight: 600;
    text-decoration: none;
}

/* ICON CIRCLE */
.service-icon {
    position: absolute;
    top: 190px;
    right: 25px;
    background: var(--horse-blood);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* FEATURED CARD (CENTER) */
.service-box.featured {
    border: 2px solid var(--horse-blood);
}


.link-centered {
    text-align: center;
    margin-top: 20px;
}














/* SECTION WRAPPER */
.wide-ship {
    margin: 20px;
}

/* SHIP */
.ship-inner {
    background: var(--cream);
    border-radius: 20px;
    padding: 70px 60px;
    box-shadow: 0 25px 60px rgba(59, 31, 26, 0.15);
}

/* TOP ROW */
.top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* TITLE */
.ship-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 0;
}

/* TEXT */
.ship-text p {
    font-size: 16px;
    color: #5a3a35;
    margin: 0;
    line-height: 1.7;
}

/* DIVIDER */
.ship-divider {
    height: 1px;
    background: rgba(59, 31, 26, 0.2);
    margin: 60px 0;
}

/* BOTTOM GRID (2 COLUMNS, MULTI-ROW) */
.bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

/* FEATURE BLOCK */
.ship-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ICON */
.feature-icon {
    font-size: 46px;
    color: var(--horse-blood);
    line-height: 1;
    flex-shrink: 0;
}

/* FEATURE CONTENT */
.feature-content h5 {
    margin: 0 0 8px;
    font-weight: 600;
    color: var(--brown-dark);
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #6a4a45;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .top-row {
        grid-template-columns: 1fr;
    }

    .bottom-row {
        grid-template-columns: 1fr;
    }

    .ship-title h2 {
        font-size: 36px;
    }
}











/* ------------------------------------------------------------
   FREIGHT SHOWCASE SECTION
------------------------------------------------------------ */


.freight-section {
    padding: 80px 0;
}

/* OFFSET CONTAINER */
.freight-offset {
    position: relative;
    padding-left: 200px;
}

/* BACKGROUND IMAGE WRAPPER */
.freight-wrapper {
    position: relative;
    background: url("../img/ship-port.jpg") center/cover no-repeat;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    margin-left: 150px;
    min-height: 420px;
    overflow: hidden;
}

/* DARK OVERLAY */
.freight-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}

/* RED CARD FLOATING ABOVE EVERYTHING */
.freight-card {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 10;
    background: var(--horse-blood);
    width: 420px;
    padding: 40px;
    border-radius: 20px;
    margin-left: 150px;
    color: #fff;
}

/* TAG */
.card-tag {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.85;
    display: inline-block;
    margin-bottom: 15px;
}

/* TITLE */
.freight-card h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* TEXT */
.freight-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* STATS */
.card-stats {
    display: flex;
    gap: 25px;
}

.card-stats h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.card-stats span {
    font-size: 12px;
    opacity: 0.85;
}

/* BOTTOM STRIP */
.freight-strip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    font-size: 14px;
}

/* RATING */
.rating {
    color: gold;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .freight-offset {
        padding-left: 0;
    }

    .freight-wrapper {
        margin-left: 0;
        border-radius: 0;
        min-height: 300px;
    }

    .freight-card {
        position: relative;
        top: auto;
        left: auto;
        margin: -150px auto 0 auto;
        width: 80%;
        padding: 30px;
    }

    .card-stats {
        flex-direction: column;
        gap: 15px;
    }

    .freight-strip {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 20px auto 0;
        width: fit-content;
        font-size: 13px;
        padding: 12px 20px;
    }
}







































/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.site-footer {
    background: var(--brown-dark);
    color: #fff;
    margin-top: 80px;
}

/* MAIN FOOTER AREA */
.footer-inner {
    background: var(--horse-blood);
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    gap: 60px;

    /* Slanted top edge (matches navbar style) */
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
}

/* BRAND BLOCK */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    height: 42px;
}

.footer-brand h5 {
    margin: 0;
    font-weight: 700;
}

.footer-brand small {
    opacity: 0.8;
}

/* FOOTER LINKS */
.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 6px;
}

/* BOTTOM BAR */
.footer-bottom {
    background: var(--brown-dark);
    text-align: center;
    padding: 18px;
    font-size: 14px;
    opacity: 0.85;
}

.footer-brand img {
    width: 150px;
    height: 120px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        padding: 50px 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

































































/* about hero section */


.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0)
    );
}

.about-hero-inner {
    max-width: 650px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-btn {
    display: inline-block;
    background: var(--horse-blood);
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: var(--brown-dark);
}

















/* who we are section */

/* ------------------------------------------------------------
   FREIGHT SHOWCASE SECTION
------------------------------------------------------------ */
.freight-about {
    padding: 0;
}

/* MAIN BACKGROUND WRAPPER */
.freight-about {
    position: relative;
    background: url("../img/ship-port.jpg") center/cover no-repeat;
    border-radius: 24px;
    min-height: 420px;
    overflow: hidden;
    margin: 0 20px;
}


/* LEFT RED CARD */
.about-card {
    position: relative;
    z-index: 2;
    background: var(--horse-blood);
    width: 420px;
    padding: 40px;
    border-radius: 20px;
    margin: 40px;
    color: #fff;
    opacity: 0.7;
}

/* TAG */
.about-tag {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.85;
    display: inline-block;
    margin-bottom: 15px;
}

/* TITLE */
.about-card h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* TEXT */
.about-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 25px;
}

.about-stats h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.about-stats span {
    font-size: 12px;
    opacity: 0.85;
}

/* BOTTOM STRIP */
.about-strip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    font-size: 14px;
}

/* RATING */
.rating {
    color: gold;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .freight-card {
        width: auto;
        margin: 20px;
    }

    .card-stats {
        flex-direction: column;
        gap: 15px;
    }

    .freight-strip {
        font-size: 13px;
        padding: 12px 20px;
    }
}












/* Testimonial Carousel */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.testimonial-card p{
    color: #222;
}
.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}
/* Feature Section */
.feature-icon {
    font-size: 2rem;
    color: #b74b4b;
    margin-bottom: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(0);
}





@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-card {
        width: auto;
        margin: 20px;
        opacity: 0.9;
    }

    .about-card h2 {
        font-size: 24px;
    }

    .about-strip {
        font-size: 13px;
        padding: 12px 18px;
    }

    .about-testimonial h2 {
        font-size: 28px;
    }
}























.service-highlight {
    background: rgba(139, 0, 0, 0.88); /* horse blood with opacity */
    backdrop-filter: blur(2px);
}



/* HOW IT WORKS SECTION */
.services-process {
    padding: 90px 0;
    background: #fafafa;
}

.services-process h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-process p {
    font-size: 15px;
    color: #666;
}

/* PROCESS CARD */
.process-card {
    position: relative;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.35s ease;
    overflow: hidden;
}

/* STEP NUMBER (TOP RIGHT) */
.process-card span {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 42px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
}

/* TITLE */
.process-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* TEXT */
.process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* HOVER EFFECT */
.process-card:hover {
    transform: translateY(-10px);
}

/* HIGHLIGHTED CARD (SECOND CARD) */
.services-process .col-md-3:nth-child(2) .process-card {
    background: var(--horse-blood);
    color: #ffffff;
}

/* TEXT COLOR ON HIGHLIGHT */
.services-process .col-md-3:nth-child(2) .process-card h6,
.services-process .col-md-3:nth-child(2) .process-card p {
    color: #ffffff;
}

/* NUMBER COLOR ON HIGHLIGHT */
.services-process .col-md-3:nth-child(2) .process-card span {
    color: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-card {
        padding: 40px 25px;
    }

    .services-process h2 {
        font-size: 28px;
    }
}











































































































/* contact page */

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero p{
  color: #fff;
}

.contact-info {
  padding: 40px 0;
  color: #000;
}
.contact-info p{
  color: #000;
}

.contact-form h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.contact-icon {
  font-size: 2rem;
  color: var(--horse-blood);
  margin-bottom: 10px;
}

.contact-form {
  color: #fff;
  padding: 40px 0;
}

.contact-form .btn-form {
    background: var(--horse-blood);
    color: #fff;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 480px) {
  .contact-hero p {
    font-size: 1rem;
  }
}











