.sector-main {
    padding: 40px 0;
}

/* IMAGE */
.image-wrapper {
    max-width: 650px;
    margin: auto;
}

.sector-image {
    width: 85%;
    border-radius: 30px;
    transition: 0.5s ease;
}

.sector-image:hover {
    transform: scale(1.05);
}

/* CARD */
.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 10px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(18, 49, 87, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient hover border effect */
.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #123157, #2e6fbf);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 49, 87, 0.10);
}

/* ICON */
.icon-box1 {
    width: 100px;
    height:auto;
    margin: 0 auto 0px;
    border-radius: 18px;
    background: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0px !important;
}

.icon-box1 i {
    color: #fff;
    font-size: 24px;
}

.info-card:hover .icon-box1 {
    transform: rotate(-8deg) scale(1.1);
}

/* COUNTER */
.info-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: #123157;
    display: inline-block;
}

.percent-symbol {
    font-size: 22px;
    font-weight: 700;
    color: #2e6fbf;
}

/* TITLE */

/* LARGE CARD */
.large-card {
    padding: 40px;
}

/* MOBILE */
@media(max-width:768px) {

    .sector-main {
        padding: 60px 0;
    }

    .margin-top-mobile {
        margin-top: 40px;
    }

    .sector-image {
        width: 100%;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* MAP SECTION */

/* Wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;

    margin: 0 auto;

}

/* Map Image */
.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s ease;
}

/* Zoom Effect */
.map-wrapper:hover .map-image {
    transform: scale(1.05);
}

/* Overlay */
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(18, 49, 87, 0.65);
    padding: 30px 50px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.map-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

/* MOBILE */
@media(max-width:768px) {

    .map-section {
        padding: 60px 0;
    }

    .map-wrapper {
        border-radius: 20px;
    }

    .map-overlay {
        padding: 20px;
    }

    .map-overlay h2 {
        font-size: 22px;
    }

    .map-overlay p {
        font-size: 13px;
    }

}

/* ===== MAP SECTION ===== */
.market-global-map {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

/* IMAGE WRAPPER */
.map-image-wrapper {
    position: absolute;
    width: 100%;
    height: auto;
}

/* MAP IMAGE */
.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ⭐ FULL COVER PERFECT */
    animation: mapZoom 20s infinite linear;
}

/* SMOOTH ZOOM ANIMATION */
@keyframes mapZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* DARK OVERLAY */
.map-overlay {
    position: absolute;
    inset: 0;

}

/* CONTENT */
.map-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

/* TEXT STYLES */
.map-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffcc00;
    font-weight: 700;
}

.map-title {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.map-desc {
    font-size: 18px;
    color: #eee;
}

/* MOBILE */
@media(max-width:768px) {
    .section-subtitle-margin {
        margin-top: 50px;
    }

    .market-global-map {
        height: 300px;
    }

    .map-title {
        font-size: 28px;
    }
}

.market-chart-section-alt {
    padding: 40px 0;

}

/* TIMELINE STYLE */
.market-timeline {
    border-left: 3px solid #2d74a6;
    padding-left: 25px;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2d74a6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.timeline-item .content h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-item .content p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.why-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: .5px;
}

.why-timeline {
    position: relative;
    margin-top: 50px;
}

/* CENTER LINE */

.why-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2d74a6, #8ec5fc);
    border-radius: 50px;
}

/* ===============================
                          TIMELINE ITEM
                          =============================== */

.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    position: relative;
}

/* Alternate */

.why-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* ===============================
                          ICON — PREMIUM MODERN
                          =============================== */

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d74a6, #4facfe);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 50px rgba(45, 116, 166, 0.5);
}

.why-content {
    width: 44%;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;

}

.why-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-content p {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
}

.why-item::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border: 5px solid #2d74a6;
    border-radius: 50%;
    z-index: 1;
}

@media(max-width:768px) {

    .why-timeline::before {
        left: 30px;
    }

    .why-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .why-item::after {
        left: 30px;
    }

    .why-icon {
        position: absolute;
        left: 0;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .why-content {
        width: 100%;
    }
}

.card-image img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Section Background */
.enquiry-section {
    padding: 20px 20px;

}

/* Container */
.enquiry-container {
    max-width: 1000px;
    margin: auto;
}

/* Card */
.enquiry-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    border: 1px solid #e6eef8;
}

/* Header */
.enquiry-header {
    text-align: center;
    margin-bottom: 40px;
}

.enquiry-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b5e8e;
    margin-bottom: 10px;
}

.enquiry-header p {
    color: #666;
    font-size: 15px;
    max-width: 650px;
    margin: auto;
}

/* Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Full Width */
.full-width {
    grid-column: 1 / -1;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d6e2f1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0b5e8e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 94, 142, 0.1);
    outline: none;
}

/* Button */
.form-button {
    text-align: center;
    margin-top: 30px;
}

.form-button button {
    padding: 14px 40px;
    background: #0b5e8e;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-button button:hover {
    background: #08486d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-card {
        padding: 35px;
    }
}

.required1 {
    color: red;
    font-weight: bold;
}
.sustain-visual-section {
    background: #ffff;
}

/* CARD */
.visual-card {
    position: relative;
    height: auto;

    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.visual-card img {
    width: 100%;
    height: auto;
    object-fit: cover;


}



/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(13, 59, 102, 0.95),
            rgba(13, 59, 102, 0.6),
            transparent);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: 0.5s ease;
}

.visual-card:hover .overlay {
    transform: translateY(0);
}

/* TEXT */
.overlay h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 14px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .visual-card {
        height: 260px;
    }

    .overlay {
        transform: translateY(100%);
        background: linear-gradient(to top, rgba(13, 59, 102, 0.95), rgba(13, 59, 102, 0.6), transparent);
    }
}

.packaging-section {
    padding: 80px 6%;
    background: #ffff;
}

.container-pack {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.pack-left {
    flex: 1;
    min-width: 420px;
}

.pack-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 20px;
    position: relative;
}

.pack-left h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #f4b400;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.pack-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* LIST */
.pack-list {
    list-style: none;
    padding: 0;
}

.pack-list li {
    padding-left: 32px;
    margin-bottom: 15px;
    position: relative;
    color: #444;
}

/* ICON BULLET */
.pack-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4b400;
    font-size: 18px;
    font-weight: bold;
}

/* RIGHT IMAGE */
.pack-right {
    flex: 1;
    text-align: center;
}

.pack-image {
    position: relative;
    display: inline-block;
}

.pack-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.pack-image:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .container-pack {
        flex-direction: column;
    }
}

.premium-info-section {
    background: #ffff;
    padding: 80px 6%;
}

.container-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 40px;
}

/* CARD */
.premium-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

/* LEFT ACCENT STRIP */
.premium-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--rs-theme-orange);
}



/* TITLE */
.premium-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1b2a41;
    font-weight: 700;
}

/* TEXT */
.premium-card p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LIST */
.premium-card ul {
    list-style: none;
    padding: 0;
}

.premium-card ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #000;
    line-height: 1.6;
}

/* ICON BULLET */
.premium-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--rs-theme-orange);
    font-weight: bold;
}



/* CARD */
.premium-card1 {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

/* LEFT ACCENT STRIP */
.premium-card1::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--rs-theme-orange);
}



/* TITLE */
.premium-card1 h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1b2a41;
    font-weight: 700;
}

/* TEXT */
.premium-card1 p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LIST */
.premium-card1 ul {
    list-style: none;
    padding: 0;
}

.premium-card1 ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #000;
    line-height: 1.6;
}

/* ICON BULLET */
.premium-card1 ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--rs-theme-orange);
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .container-info {
        grid-template-columns: 1fr;
    }
}




/* Card Styling */
.market-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon Animation */
.market-card .icon i {
    transition: transform 0.3s, color 0.3s;
}

.market-card:hover .icon i {
    transform: scale(1.2) rotate(10deg);
    color: #ff7f50;
}

.market-card h5 {
    color: #0d3b66;
}

/* Animate.css delay helpers */
.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

.animate__delay-3s {
    animation-delay: 0.6s;
}

.animate__delay-4s {
    animation-delay: 0.8s;
}

.animate__delay-5s {
    animation-delay: 1s;
}

.sectors-section {
    background: #f8f9fa;
}

/* ===== FULLSCREEN PIE SECTION ===== */
.sectors-section {
    background: #ffff;
    padding: 80px 0;
}

/* Chart container */
.chart-wrapper {
    width: 100%;
    height: 700px;

    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
}

.chart-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

/* Make canvas full size */
#sectorsChart {
    width: 100% !important;
    height: 100% !important;
}