/* Hero Section */

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--site-color); /* main color */
    border: 2px solid var(--secondary-color); /* secondary outline */
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1); /* subtle inner glow */
}

/* Double outline effect */
.hero-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--site-color);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Active slide style */
.hero-dot.active {
    transform: scale(1.4);
    box-shadow: 0 0 12px var(--secondary-color), 0 0 6px var(--secondary-color);
}

.hero-dot.active::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Hover effect */
.hero-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--site-color), 0 0 4px var(--secondary-color);
}

.hero-dot:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}


.hero-heading-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}
/* Super elegant badge / text in hero */
.shop-usa-text {
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 7.5vw, 4.8rem);
    text-transform: uppercase;
    color: var(--secondary-color);

    line-height: 1.25;          /* key fix */
    letter-spacing: -0.8px;
    display: block;

    margin-top: 0.4em;          /* real space, not padding */
    margin-bottom: 0.6rem;

    text-shadow: 2px 2px 6px rgba(0,0,0,0.08);
}


/* Optional: slightly smaller on very small screens */
@media (max-width: 480px) {
    .shop-usa-text {
        font-size: clamp(2.5rem, 8vw, 4rem); /* shrink on tiny screens */
        line-height: 1.2;                     /* more breathing room */
        padding-top: 0.3em;                   /* extra top spacing */
    }
}


/* Hero main heading */
.delivered-ghana {
    font-family: 'Lato', sans-serif;
    font-weight: 800;                        /* heavier for elegance */
    font-size: clamp(1.8rem, 5.5vw, 3.5rem);
    /* responsive scaling */
    color: #111;
    position: relative;
    line-height: 1.1;                        /* tighter line spacing */
    letter-spacing: -0.5px;
    margin-top: 0.2rem;

    /* Layered accent: subtle underline / highlight behind text */
}

.delivered-ghana span#countryName,
.delivered-ghana span#reliable-changeable {
    color: var(--site-color);
    font-weight: 900;
    position: relative;
}

/* Optional: subtle background highlight behind word */
.delivered-ghana span#countryName::after,
.delivered-ghana span#reliable-changeable::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 0;
    height: 0.4em;
    background: var(--site-color)/20;
    z-index: -1;
    border-radius: 4px;
}






#heroLottie {
    width: 100%;
    max-width: 600px; /* adjust to match your design */
    height: 60vh;
    margin: 0 auto;
}

#heroSection {
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #f4f5f7; /* premium white background */
    overflow: hidden;
}



/* Main Heading */
.hero-main-heading {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1.1;
    color: #111827; /* dark premium color */
    margin: 0 0 20px;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #4B5563; /* muted premium gray */
    margin: 0 0 24px;
}





/* Image Shadow */
.hero-text-content + div img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-main-heading {
        font-size: 48px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-main-heading {
        font-size: 36px;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-text-content {
        justify-content: flex-start; /* prevent top clipping */
    }
}

* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* Overlay content takes full height for proper centering */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* horizontal centering */
    justify-content: center; /* vertical centering */
    text-align: center;
}

/* Badge */
.usa-address {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid white;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Headline */
.video-slide-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Headline text wrapper */
.video-slide-text {
    display: inline-block;
}

/* Highlighted second line */
.video-slide-highlight {
    color: var(--site-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    display: block;
}

/* Buttons center aligned */
.hero-text-content .flex {
    justify-content: center;
}

.usa-address:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Subtle shadow for depth */
}





/* Headline container */
.hero-heading-container {
    text-align: center; /* center all content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* space between badge and headline */
}

/* Headline */
.video-slide-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: white; /* default for dark backgrounds */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* ensures readability */
}

/* Headline text wrapper */
.video-slide-text {
    display: inline-block;
}

/* Highlighted second line */
.video-slide-highlight {
    color: var(--site-color); /* accent color */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    display: block; /* makes second line stand out */
}


/* Service Cards Styles */
.service-cards-container {
    max-width: 1241px;
    margin: 0 auto;
}
/* Premium Service Card Styles */
.service-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #000000; /* Dark border like the image */

    /* The "Hard Shadow" Effect from your image */
    box-shadow: 6px 6px 0px 0px var(--site-color); /* Bright Yellow/Gold accent */

    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0;
}

/* Professional Hover Effect */
.service-card:hover {
    top: -2px;
    left: -2px;
    box-shadow: 10px 10px 0px 0px #000000; /* Shadow turns black and deepens on hover */
    background: #fafafa;
}

.service-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: #F3F4F6; /* Neutral premium grey */
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-container {
    transform: scale(1.1) rotate(-3deg);
    background: var(--secondary-color); /* Icon container pops on hover */
}

.service-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800; /* Heavier weight for premium feel */
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 8px;
}

.service-description {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #4B5563;
    margin: 0;
}

/* Responsive Grid Adjustment */
@media (max-width: 768px) {
    .service-cards-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.underline {
    height: 4px;               /* thickness */
    width: 80px;               /* length */
    margin-top: 8px;           /* spacing */
    background-color: var(--site-color); /* uses your site color variable */
    border-radius: 2px;        /* slightly rounded ends */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: add premium hover animation */
.underline:hover {
    transform: scaleX(1.2);
    box-shadow: 0 0 8px var(--site-color);
}



/* =========================== About Section Start Here ========================= */
/* Badge Styling */
/* Precise Alignment for Lottie Column */

/* Ensure the feature items on the left still feel balanced */


.section-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

/* Hard Shadow Icons */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #000;
    box-shadow: 4px 4px 0px var(--site-color); /* Consistent with your brand */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Text Refinement */
.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.feature-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

/* Image Container */
.courier-thumb-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.courier-main-img {
    z-index: 2;
    max-width: 100%;
    height: auto;
}

/* Background floating badge for the image */
.floating-delivery-tag {
    position: absolute;
    right: 10%;
    top: 20%;
    z-index: 3;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #000;
    box-shadow: 8px 8px 0px var(--site-color);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Layout Alignment */
.about-grid-container {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    align-items: center; /* Centers the Lottie vertically relative to the text */
    justify-content: space-between;
    gap: 40px;
}

.content-column {
    flex: 1; /* Takes equal space */
    min-width: 320px;
}

.image-column {
    flex: 1; /* Takes equal space */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

/* Premium Lottie Wrapper */
.lottie-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.4); /* Elegant glass background */
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid #000;
    box-shadow: 12px 12px 0px var(--site-color); /* Hard shadow to match buttons */
    padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-grid-container {
        flex-direction: column-reverse; /* Shows text first, then animation on mobile */
    }
    .lottie-wrapper {
        height: 350px;
    }
}

/* =========================== About Section End Here ========================= */


/* =========================== Shopping Brands ========================= */

/* Container styling */
.logo-slider-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    /* Masking gradient creates a "fade out" edge effect on sides */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    width: calc(250px * 14); /* Adjust based on logo count */
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.partner-thumb {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: all 0.4s ease;
}

.partner-thumb img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%); /* Premium monochrome look by default */
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Hover effect for individual logos */
.partner-thumb:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); } /* Half the track width */
}

/*========================= Brand Logos End ========================= */



/*========================= Client review start ========================= */
.premium-badge {
    background: var(--site-color);
    color: #000;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Headline */
.premium-h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #000;
}
/* Card Container */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #000;
    box-shadow: 8px 8px 0px var(--site-color); /* Matches your brand */
    margin: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote Mark Position */
.quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
    color: var(--site-color);
}

/* Text Management - No Overlap */
.testimonial-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Footer Alignment */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 60px !important; /* Forces Owl Carousel to obey size */
    height: 60px !important;
    border-radius: 12px; /* Modern slightly rounded look */
    object-fit: cover;
    border: 2px solid #eee;
}

.testimonial-name {
    font-weight: 800;
    color: #111;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Owl dots */
.testimonial-carousel .owl-dots {
    margin-top: 30px;
}

.testimonial-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    margin: 0 6px;
    border-radius: 50%;
}

.testimonial-carousel .owl-dot.active span {
    background: var(--site-color);
}

/*========================= Client reviews End ========================= */


/*========================= What We Do Start ========================= */
/*========================= What We Do End ========================= */

