/* =====================================================
   DCC INDIA EXPO - ABOUT SECTION
===================================================== */

.dcc-india-about-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
        radial-gradient(circle at 90% 15%,
            rgba(7, 87, 166, 0.08),
            transparent 30%),
        radial-gradient(circle at 5% 90%,
            rgba(255, 107, 0, 0.06),
            transparent 28%),
        #f5f9fd;
}


/* BACKGROUND CIRCLES */

.dcc-india-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dcc-india-bg-circle-one {
    width: 430px;
    height: 430px;
    top: -200px;
    right: -180px;
    border: 70px solid rgba(7, 87, 166, 0.035);
}

.dcc-india-bg-circle-two {
    width: 300px;
    height: 300px;
    bottom: -160px;
    left: -170px;
    border: 50px solid rgba(255, 107, 0, 0.04);
}


/* SECTION LABEL */

.dcc-india-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;

    color: #ff6b00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.dcc-india-label-line {
    width: 38px;
    height: 3px;
    border-radius: 20px;

    background: linear-gradient(90deg,
            #ff6b00,
            #0757a6);
}


/* TITLE */

.dcc-india-about-title {
    margin: 0;

    color: #031d43;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}


/* SUBTITLE */

.dcc-india-about-subtitle {
    margin: 12px 0 20px;

    color: #0757a6;
    font-size: clamp(22px, 3vw, 33px);
    line-height: 1.2;
    font-weight: 700;
}


/* INTRO */

.dcc-india-about-intro {
    width: 850px;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;

    color: #000000;
    font-size: 20px;
    line-height: 1.8;
}


/* =====================================================
   EVENT INFO
===================================================== */

.dcc-india-event-info {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.dcc-india-event-card {
    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 245px;
    padding: 15px 18px;

    background: #fff;
    border: 1px solid rgba(7, 87, 166, 0.12);
    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(3, 29, 67, 0.06);

    transition: 0.3s ease;
}

.dcc-india-event-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(3, 29, 67, 0.10);
}


/* EVENT ICON */

.dcc-india-event-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    color: #fff;
    font-size: 19px;

    border-radius: 10px;

    background: linear-gradient(135deg,
            #0757a6,
            #0c82d8);
}

.dcc-india-orange-icon {
    background: linear-gradient(135deg,
            #ff6b00,
            #ff922e);
}


/* EVENT LABEL */

.dcc-india-event-label {
    display: block;
    margin-bottom: 3px;

    color: #66758a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.dcc-india-event-card strong {
    display: block;

    color: #031d43;
    font-size: 17px;
    line-height: 1.4;
}


/* =====================================================
   THEME BOX
===================================================== */

.dcc-india-theme-box {
    display: flex;
    max-width: 750px;
    margin: auto;
    align-items: center;
    gap: 15px;
    justify-content: center;

    margin-bottom: 0;
    padding: 17px 20px;

    border-left: 4px solid #ff6b00;
    border-radius: 0 12px 12px 0;

    background: linear-gradient(90deg,
            rgba(7, 87, 166, 0.08),
            rgba(7, 87, 166, 0.02));
}

.dcc-india-theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    color: #fff;
    font-size: 19px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #ff6b00,
            #ff922e);
}

.dcc-india-theme-label {
    color: #031d43;
    font-size: 14px;
    font-weight: 800;
}

.dcc-india-theme-box span {


    font-size: 17px;
}

.dcc-india-theme-box p {
    display: inline;

    margin: 0 0 0 5px;

    color: #0757a6;
    font-size: 17px;
    font-weight: 700;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.dcc-india-about-content {
    margin-bottom: 28px;
}

.dcc-india-about-content p {
    margin-bottom: 16px;
text-align: justify;
    color: #000000;
    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   BUTTON
===================================================== */

.dcc-india-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 23px;

    color: #fff !important;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    border-radius: 7px;

    background: linear-gradient(135deg,
            #0757a6,
            #0c82d8);

    box-shadow:
        0 12px 25px rgba(7, 87, 166, 0.20);

    transition: all 0.3s ease;
}

.dcc-india-more-btn i {
    font-size: 17px;

    transition: 0.3s ease;
}

.dcc-india-more-btn:hover {
    color: #fff !important;
    transform: translateY(-3px);

    box-shadow:
        0 17px 32px rgba(7, 87, 166, 0.25);
}

.dcc-india-more-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.dcc-india-visual {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* GLOW */

.dcc-india-visual-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(12, 130, 216, 0.15) 0%,
            rgba(12, 130, 216, 0.05) 42%,
            transparent 70%);
}


/* =====================================================
   LOGO CARD
===================================================== */

.dcc-india-logo-card {
    position: relative;
    z-index: 2;

    /* width: min(100%, 430px); */

    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 35px 70px rgba(3, 29, 67, 0.16),
        0 5px 18px rgba(7, 87, 166, 0.07);

    backdrop-filter: blur(12px);
}


/* TOP GRADIENT LINE */

.dcc-india-logo-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    border-radius: 24px 24px 0 0;

    background: linear-gradient(90deg,
            #0757a6,
            #0c82d8,
            #ff6b00,
            #078447);
}


/* CARD TOP */

.dcc-india-card-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 18px;

    color: #0757a6;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.dcc-india-card-top span:last-child {
    color: #ff6b00;
}


/* LOGO */

.dcc-india-logo {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* CARD BOTTOM */

.dcc-india-card-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 18px;
    padding-top: 16px;

    color: #66758a;

    border-top: 1px solid rgba(7, 87, 166, 0.1);

    font-size: 11px;
    font-weight: 700;
}

.dcc-india-card-bottom i {
    color: #0757a6;
    font-size: 15px;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.dcc-india-floating-card {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 16px;

    color: #031d43;

    font-size: 12px;
    font-weight: 800;

    border: 1px solid rgba(7, 87, 166, 0.10);
    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 16px 35px rgba(3, 29, 67, 0.12);

    animation: dcc-india-float 4s ease-in-out infinite;
}

.dcc-india-floating-card i {
    color: #0757a6;
    font-size: 17px;
}


/* CLOUD */

.dcc-india-floating-one {
        top: 45px;
    right: 25px;
}


/* AI */

.dcc-india-floating-two {
    top: 190px;
    left: -10px;

    animation-delay: 1s;
}


/* SECURITY */

.dcc-india-floating-three {
   right: 30px;
    bottom: 70px;
    animation-delay: 2s;
}

.dcc-india-floating-three i {
    color: #078447;
}


/* FLOAT ANIMATION */

@keyframes dcc-india-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .dcc-india-about-section {
        padding: 75px 0;
    }

    .dcc-india-visual {
        min-height: 480px;
        margin-bottom: 10px;
    }

    .dcc-india-logo-card {
        width: min(100%, 400px);
    }

    .dcc-india-floating-two {
        left: 0;
    }

    .dcc-india-floating-one {
        right: 0;
    }

    .dcc-india-floating-three {
        right: 0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .dcc-india-about-section {
        padding: 55px 0 65px;
    }

    .dcc-india-about-title {
        font-size: 38px;
    }

    .dcc-india-about-subtitle {
        font-size: 23px;
    }

    .dcc-india-about-intro {
        font-size: 15px;
        line-height: 1.7;
    }


    /* EVENT CARDS */

    .dcc-india-event-info {
        display: block;
    }

    .dcc-india-event-card {
        width: 100%;
        min-width: 0;
        margin-bottom: 12px;
    }


    /* THEME */

    .dcc-india-theme-box {
        align-items: flex-start;
    }

    .dcc-india-theme-box p {
        display: block;
        margin: 4px 0 0;
    }


    /* VISUAL */

    .dcc-india-visual {
        min-height: 410px;
    }

    .dcc-india-logo-card {
        width: calc(100% - 35px);
        padding: 18px;
        border-radius: 18px;
    }


    /* FLOATING */

    .dcc-india-floating-card {
        padding: 9px 12px;
        font-size: 10px;
    }

    .dcc-india-floating-one {
        top: 25px;
        right: 0;
    }

    .dcc-india-floating-two {
        top: 145px;
        left: 0;
    }

    .dcc-india-floating-three {
        right: 0;
        bottom: 35px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .dcc-india-about-title {
        font-size: 33px;
    }

    .dcc-india-about-subtitle {
        font-size: 21px;
    }

    .dcc-india-visual {
        min-height: 350px;
    }

    .dcc-india-logo-card {
        width: calc(100% - 25px);
    }

    .dcc-india-floating-card {
        font-size: 9px;
    }
}
/* =========================================
   DCC INDIA EXPO
   KEY FOCUS AREAS
========================================= */

.dcc-india-focus-section {
    position: relative;
    overflow: hidden;

    padding: 50px 0 50px;

    /* background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 106, 196, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 102, 0, 0.15),
            transparent 30%
        ),
        #031a35; */
}


/* =========================================
   TECHNOLOGY BACKGROUND
========================================= */

.dcc-india-focus-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .05;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    pointer-events: none;
}


/* Decorative circles */

.dcc-india-focus-section::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -350px;
    right: -250px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255,255,255,.015),
        0 0 0 140px rgba(255,255,255,.01);

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.dcc-india-focus-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 45px;
}


/* Small label */

.dcc-india-focus-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 12px;

    color: #ff7412;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.dcc-india-focus-label i {
    font-size: 15px;
}


/* Main heading */

.dcc-india-focus-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 56px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.dcc-india-focus-heading h2 span {
    color: #ff7412;
}


/* =========================================
   CARDS
========================================= */

.dcc-india-focus-card {
    position: relative;

    /* min-height: 200px; */

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px 20px;

    text-align: center;

    background: #ffffff;

    border-radius: 17px;

    border: 1px solid rgba(255,255,255,.8);

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Top accent */

.dcc-india-focus-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 0 0 10px 10px;

    background:
        linear-gradient(
            90deg,
            #0757a6,
            #0c82d8,
            #ff7412
        );

    transition: width .3s ease;
}


.dcc-india-focus-card:hover {
    transform: translateY(-8px);

    border-color: rgba(7,87,166,.15);

    box-shadow:
        0 25px 55px rgba(0,0,0,.25);
}


.dcc-india-focus-card:hover::before {
    width: 70px;
}


/* =========================================
   ICON
========================================= */

.dcc-india-focus-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: #0757a6;

    font-size: 34px;

    border: 2px solid rgba(7,87,166,.18);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(7,87,166,.07),
            rgba(12,130,216,.02)
        );

    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.dcc-india-focus-card:hover
.dcc-india-focus-icon {
    color: #ffffff;

    border-color: #0757a6;

    background:
        linear-gradient(
            135deg,
            #0757a6,
            #0c82d8
        );

    transform: translateY(-3px);
}


/* Orange icon for selected cards */

.dcc-india-focus-card:nth-child(3)
.dcc-india-focus-icon,

.dcc-india-focus-card:nth-child(7)
.dcc-india-focus-icon {
    color: #ff7412;

    border-color: rgba(255,116,18,.20);

    background:
        rgba(255,116,18,.06);
}


.dcc-india-focus-card:nth-child(3):hover
.dcc-india-focus-icon,

.dcc-india-focus-card:nth-child(7):hover
.dcc-india-focus-icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f45c00,
            #ff8a25
        );

    border-color: #ff7412;
}


/* =========================================
   TITLE
========================================= */

.dcc-india-focus-card h3 {
    margin: 0;

    color: #0c3534;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================
   LAST CARD
   POWER BACKUP
========================================= */

.dcc-india-focus-card:last-child {
    max-width: 100%;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dcc-india-focus-section {
        padding: 75px 0 85px;
    }

    .dcc-india-focus-heading {
        margin-bottom: 35px;
    }

    .dcc-india-focus-card {
        min-height: 180px;
    }

}


@media (max-width: 575px) {

    .dcc-india-focus-section {
        padding: 60px 0 70px;
    }

    .dcc-india-focus-heading h2 {
        font-size: 34px;
    }

    .dcc-india-focus-label {
        font-size: 11px;
    }

    .dcc-india-focus-card {
        min-height: 165px;

        border-radius: 14px;
    }

    .dcc-india-focus-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 17px;

        font-size: 29px;
    }

    .dcc-india-focus-card h3 {
        font-size: 17px;
    }

}
/* =========================================
   DCC INDIA EXPO - ECOSYSTEM SECTION
========================================= */

.dcc-india-ecosystem-section {
    position: relative;
    padding: 95px 0;
    background: #f5f8fc;
    overflow: hidden;
}

.dcc-india-ecosystem-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(16, 91, 180, 0.05);
}


/* HEADING */

.dcc-india-section-heading {
    position: relative;
    margin-bottom: 48px;
}

.dcc-india-heading-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #f47b20;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dcc-india-section-heading h2 {
    margin: 0;
    color: #102c4c;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.dcc-india-section-heading h2 span {
    color: #002e60;
}

.dcc-india-heading-line {
    width: 60px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 10px;
    background: #f47b20;
}


/* MAIN PANEL */

.dcc-india-main-panel {
    position: relative;
    background: #ffffff;
    border: 1px solid #e4ebf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(21, 57, 91, 0.08);
}


/* CONTENT BLOCKS */

.dcc-india-content-block {
    padding: 45px 30px;
}

.dcc-india-block-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.dcc-india-title-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eaf3ff;
    color: #002e60;
    font-size: 23px;
}

.dcc-india-orange-icon {
    background: #fff1e7;
    color: #f47b20;
}

.dcc-india-block-title small {
    display: block;
    margin-bottom: 4px;
    color: #7b8da1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dcc-india-block-title h3 {
    margin: 0;
    color: #102c4c;
    font-size: 29px;
    font-weight: 750;
}


/* VERTICAL DIVIDER */

.dcc-india-vertical-divider {
    width: 1px;
    height: 78%;
    margin: auto;
    background: #dfe7ef;
}


/* EVENT HIGHLIGHTS */

.dcc-india-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.dcc-india-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
       color: #000000;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.dcc-india-highlight-item i {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: #002e60;
    font-size: 14px;
    font-weight: 700;
}

.dcc-india-highlight-last {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #e7edf3;
    color: #002e60;
}


/* WHY SECTION */

.dcc-india-why-list {
    display: flex;
    flex-direction: column;
}

.dcc-india-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid #edf1f5;
}

.dcc-india-why-item:first-child {
    padding-top: 0;
}

.dcc-india-why-item:last-child {
    border-bottom: 0;
}

.dcc-india-why-item > span {
    flex: 0 0 32px;
    color: #f47b20;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding-top: 3px;
}

.dcc-india-why-item p {
    margin: 0;
        color: #000000;
    font-size: 17px;
    line-height: 1.5;
}


/* EVENT CONNECTS */

.dcc-india-connects {
    padding: 34px 42px 38px;
    background: #f8fafc;
    border-top: 1px solid #e5ebf1;
}

.dcc-india-connects-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.dcc-india-connects-heading h3 {
    margin: 0;
    white-space: nowrap;
    color: #102c4c;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dcc-india-connects-line {
    height: 1px;
    flex: 1;
    background: #dce5ed;
}

.dcc-india-connect-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    color: #455a70;
    font-size: 14px;
}

.dcc-india-connect-item i {
    width: 28px;
    color: #002e60;
    font-size: 17px;
}

.dcc-india-connect-item span {
    transition: 0.25s ease;
}

.dcc-india-connect-item:hover span {
    color: #002e60;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dcc-india-ecosystem-section {
        padding: 70px 0;
    }

    .dcc-india-section-heading h2 {
        font-size: 34px;
    }

    .dcc-india-content-block {
        padding: 35px 30px;
    }

    .dcc-india-connects {
        padding: 30px;
    }
}


@media (max-width: 767px) {

    .dcc-india-ecosystem-section {
        padding: 55px 0;
    }

    .dcc-india-section-heading {
        margin-bottom: 30px;
    }

    .dcc-india-section-heading h2 {
        font-size: 29px;
    }

    .dcc-india-main-panel {
        border-radius: 12px;
    }

    .dcc-india-content-block {
        padding: 30px 22px;
    }

    .dcc-india-block-title h3 {
        font-size: 21px;
    }

    .dcc-india-title-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        font-size: 19px;
    }

    .dcc-india-connects {
        padding: 28px 22px;
    }

    .dcc-india-connects-heading {
        gap: 12px;
    }

    .dcc-india-connects-heading h3 {
        font-size: 15px;
        letter-spacing: 0.7px;
    }

    .dcc-india-connect-item {
        min-height: 38px;
        font-size: 14px;
    }
}
/* =========================================
   DCC INDIA EXPO
   THE EVENT CONNECTS SECTION
========================================= */

.dcc-india-connects-section {
    position: relative;
    padding: 90px 0;
    background: #f7f4f1;
    overflow: hidden;
}

/* Soft background shades */

.dcc-india-connects-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 104, 197, 0.06);
    top: -220px;
    left: -180px;
}

.dcc-india-connects-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(244, 123, 32, 0.055);
    bottom: -200px;
    right: -130px;
}


/* HEADER */

.dcc-india-connects-header {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

.dcc-india-connects-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #f47b20;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dcc-india-connects-header h2 {
    margin: 0;
    color: #102c4c;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.dcc-india-connects-header h2 span {
    color: #002e60;
}

.dcc-india-connects-header p {
    max-width: 650px;
    margin: 14px auto 0;
    color: #65788c;
    font-size: 15px;
    line-height: 1.7;
}


/* CONNECT ITEMS */

.dcc-india-connect-box {
    position: relative;
    z-index: 2;

    min-height: 78px;
    padding: 15px 22px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(210, 224, 237, 0.9);
    border-radius: 12px;

    box-shadow: 0 7px 22px rgba(31, 68, 102, 0.045);

    transition: all 0.3s ease;
}

.dcc-india-connect-box:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: rgba(11, 104, 197, 0.25);
    box-shadow: 0 12px 28px rgba(31, 68, 102, 0.10);
}


/* ICON */

.dcc-india-connect-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e8f2fc;
    color: #002e60;

    font-size: 20px;

    transition: all 0.3s ease;
}

.dcc-india-connect-box:hover .dcc-india-connect-icon {
    background: #002e60;
    color: #ffffff;
}


/* TEXT */

.dcc-india-connect-box span {
    color: #263f58;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.4;
}


/* ORANGE ACCENT ON EVERY SECOND ITEM */

.dcc-india-connect-box:nth-child(even) .dcc-india-connect-icon {
    background: #fff0e5;
    color: #f47b20;
}

.dcc-india-connect-box:nth-child(even):hover .dcc-india-connect-icon {
    background: #f47b20;
    color: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dcc-india-connects-section {
        padding: 70px 0;
    }

    .dcc-india-connects-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .dcc-india-connects-section {
        padding: 55px 0;
    }

    .dcc-india-connects-header {
        margin-bottom: 30px;
    }

    .dcc-india-connects-header h2 {
        font-size: 30px;
    }

    .dcc-india-connects-header p {
        font-size: 14px;
    }

    .dcc-india-connect-box {
        min-height: 68px;
        padding: 12px 15px;
        gap: 13px;
    }

    .dcc-india-connect-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .dcc-india-connect-box span {
        font-size: 14px;
    }
}
/* =========================================
   DCC INDIA EXPO
   KEY OBJECTIVES
========================================= */

.dcc-india-key-objectives {
    position: relative;
    padding: 70px 0;
    background: #f5f8fc;
    overflow: hidden;
}


/* Soft background elements */

.dcc-india-key-objectives::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(11, 104, 197, 0.045);
    top: -280px;
    right: -180px;
}

.dcc-india-key-objectives::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(244, 123, 32, 0.045);
    bottom: -220px;
    left: -150px;
}


/* =========================================
   SECTION HEADING
========================================= */

.dcc-india-objectives-top {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 65px;
}

.dcc-india-objectives-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #f47b20;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dcc-india-objectives-top h2 {
    margin: 0;
    color: #102c4c;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.dcc-india-objectives-top h2 span {
    color: #002e60;
}

.dcc-india-objectives-top p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #6b7e91;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   OBJECTIVES LIST
========================================= */

.dcc-india-objectives-list {
    position: relative;
    z-index: 2;
    /* max-width: 1080px; */
    margin: 0 auto;
}


/* Main vertical line */

.dcc-india-objectives-list::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 74px;
    width: 1px;
    background: #d5e1ec;
}


/* =========================================
   OBJECTIVE ROW
========================================= */

.dcc-india-objective-row {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 38px;
    padding: 0 0 45px;
}


/* Number */

.dcc-india-objective-number {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.dcc-india-objective-number span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd9e7;

    color: #002e60;
    font-size: 15px;
    font-weight: 800;

    box-shadow: 0 4px 15px rgba(20, 63, 99, 0.07);

    transition: all 0.3s ease;
}


/* Content */

.dcc-india-objective-content {
    padding-top: 2px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dfe7ef;
}

.dcc-india-objective-content h3 {
    margin: 0 0 10px;
    color: #153753;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 750;
}

.dcc-india-objective-content p {
    /* max-width: 850px; */
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   HOVER EFFECT
========================================= */

.dcc-india-objective-row:hover
.dcc-india-objective-number span {
    background: #002e60;
    border-color: #002e60;
    color: #ffffff;
    transform: scale(1.08);
}

.dcc-india-objective-row:hover
.dcc-india-objective-content h3 {
    color: #002e60;
}


/* Orange accent on selected numbers */

.dcc-india-objective-row:nth-child(3n)
.dcc-india-objective-number span {
    color: #f47b20;
}

.dcc-india-objective-row:nth-child(3n):hover
.dcc-india-objective-number span {
    background: #f47b20;
    border-color: #f47b20;
    color: #ffffff;
}


/* Last item */

.dcc-india-objective-last {
    padding-bottom: 0;
}

.dcc-india-objective-last
.dcc-india-objective-content {
    border-bottom: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .dcc-india-key-objectives {
        padding: 65px 0;
    }

    .dcc-india-objectives-top {
        margin-bottom: 45px;
    }

    .dcc-india-objectives-top h2 {
        font-size: 32px;
    }

    .dcc-india-objectives-top p {
        font-size: 14px;
    }

    .dcc-india-objectives-list::before {
        left: 24px;
    }

    .dcc-india-objective-row {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding-bottom: 35px;
    }

    .dcc-india-objective-number {
        justify-content: flex-start;
    }

    .dcc-india-objective-number span {
        width: 48px;
        height: 48px;
        font-size: 12px;
    }

    .dcc-india-objective-content {
        padding-bottom: 25px;
    }

    .dcc-india-objective-content h3 {
        font-size: 18px;
    }

    .dcc-india-objective-content p {
        font-size: 14px;
        line-height: 1.65;
    }
}
strong{
    color: #002e60
}
/* =====================================================
   DCC INDIA - IMPROVED DARK SECTION
===================================================== */

.dcc-india-dark-showcase-section {
    position: relative;
    padding: 75px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 25%, rgba(0, 161, 238, 0.12), transparent 28%),
        radial-gradient(circle at 90% 75%, rgba(0, 111, 192, 0.14), transparent 32%),
        linear-gradient(120deg, #062642 0%, #0a3d67 48%, #0b4776 100%);
}


/* subtle grid */

.dcc-india-dark-grid-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);

    background-size: 38px 38px;
}


/* =====================================================
   LEFT AREA
===================================================== */

.dcc-india-dark-attractions-wrap {
    position: relative;
    z-index: 2;

    padding-right: 45px;
}


/* heading */

.dcc-india-dark-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.dcc-india-dark-subtitle {
    display: inline-block;

    margin-bottom: 9px;

    color: #7ed1ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.dcc-india-dark-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.18;

    font-weight: 800;
}


/* orange + green underline */

.dcc-india-dark-title-line {
    display: flex;
    gap: 6px;

    margin-top: 20px;
}

.dcc-india-dark-title-line span:first-child {
    width: 52px;
    height: 4px;

    border-radius: 50px;

    background: #ff7900;
}

.dcc-india-dark-title-line span:last-child {
    width: 27px;
    height: 4px;

    border-radius: 50px;

    background: #00a153;
}


/* =====================================================
   ATTRACTION LIST
===================================================== */

.dcc-india-dark-attraction-item {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    min-height: 105px;

    padding: 17px 8px 18px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.11);

    transition: 0.3s ease;
}


.dcc-india-dark-attraction-item:hover {
    padding-left: 7px;
}


/* icon */

.dcc-india-dark-attraction-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 20px;

    background:
        linear-gradient(
            135deg,
            #078ce1,
            #00b1ff
        );

    box-shadow:
        0 8px 20px rgba(0, 156, 236, 0.22);

    transition: 0.3s ease;
}


.dcc-india-dark-attraction-item:hover
.dcc-india-dark-attraction-icon {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0, 156, 236, 0.32);
}


/* content */

.dcc-india-dark-attraction-content {
    padding-top: 2px;
}

.dcc-india-dark-attraction-number {
    display: block;

    margin-bottom: 5px;

    color: #ff981f;

    font-size: 14px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;
}

.dcc-india-dark-attraction-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.94);

    font-size: 17px;
    line-height: 1.55;

    font-weight: 600;
}



/* =====================================================
   RIGHT COUNTER PANEL
===================================================== */

.dcc-india-dark-counter-panel {
    position: relative;
    z-index: 2;

    height: 100%;
    min-height: 470px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    margin-left: 15px;

    padding: 25px 30px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.035)
        );

    border:
        1px solid rgba(255,255,255,0.14);

    box-shadow:
        0 22px 50px rgba(0,0,0,0.14);

    backdrop-filter: blur(8px);
}


/* subtle accent line */

.dcc-india-dark-counter-panel::before {
    content: "";

    position: absolute;

    left: 0;
    top: 35px;
    bottom: 35px;

    width: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            to bottom,
            #ff7900,
            #078ce1,
            #008c44
        );
}


/* each stat */

.dcc-india-dark-counter-box {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}


.dcc-india-dark-counter-box:last-child {
    border-bottom: 0;
}


/* counter icon */

.dcc-india-dark-counter-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #ffffff;

    font-size: 26px;

    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff9d38
        );

    box-shadow:
        0 10px 25px rgba(255, 121, 0, 0.20);
}


/* counter text */

.dcc-india-dark-counter-content h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 50px;
    line-height: 1;

    font-weight: 800;
}

.dcc-india-dark-counter-content h3 span {
    color: #eaebeb;
}

.dcc-india-dark-counter-content p {
    margin: 0;

    color: rgb(255, 255, 255);

    font-size: 17px;
    line-height: 1.4;

    font-weight: 600;
}



/* =====================================================
   DESKTOP WIDTH BALANCE
===================================================== */

@media (min-width: 992px) {

    .dcc-india-dark-showcase-section .col-lg-7 {
        width: 61%;
    }

    .dcc-india-dark-showcase-section .col-lg-5 {
        width: 39%;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .dcc-india-dark-showcase-section {
        padding: 65px 0;
    }

    .dcc-india-dark-attractions-wrap {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .dcc-india-dark-counter-panel {
        height: auto;
        min-height: auto;

        margin-left: 0;

        display: block;
    }

    .dcc-india-dark-heading h2 {
        font-size: 32px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .dcc-india-dark-showcase-section {
        padding: 50px 0;
    }

    .dcc-india-dark-heading {
        margin-bottom: 25px;
    }

    .dcc-india-dark-heading h2 {
        font-size: 27px;
    }

    .dcc-india-dark-attraction-item {
        min-height: auto;

        padding: 16px 0;
    }

    .dcc-india-dark-attraction-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;

        font-size: 19px;
    }

    .dcc-india-dark-attraction-content p {
        font-size: 14px;
    }

    .dcc-india-dark-counter-panel {
        padding: 18px 22px;

        border-radius: 18px;
    }

    .dcc-india-dark-counter-box {
        padding: 20px 0;
    }

    .dcc-india-dark-counter-icon {
        width: 57px;
        height: 57px;

        min-width: 57px;

        font-size: 23px;
    }

    .dcc-india-dark-counter-content h3 {
        font-size: 33px;
    }

}
/* ==================================================
   DCC INDIA - PREMIUM DAYS LEFT SECTION
================================================== */

.dcc-india-days-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 30%, rgba(0, 140, 220, 0.10), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(0, 140, 68, 0.07), transparent 24%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f1f8fd 48%,
            #f7fbff 100%
        );
}


/* =====================================
   GRID BACKGROUND
===================================== */

.dcc-india-days-grid {
    position: absolute;
    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(rgba(0, 72, 125, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 72, 125, 0.045) 1px, transparent 1px);

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to right,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.15)
        );
}


/* Glows */

.dcc-india-days-glow {
    position: absolute;
    border-radius: 50%;

    pointer-events: none;

    filter: blur(5px);
}

.dcc-india-days-glow-one {
    width: 350px;
    height: 350px;

    left: -180px;
    top: -130px;

    background:
        radial-gradient(
            circle,
            rgba(8,120,209,0.12),
            rgba(8,120,209,0)
        );
}

.dcc-india-days-glow-two {
    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -160px;

    background:
        radial-gradient(
            circle,
            rgba(255,121,0,0.10),
            rgba(255,121,0,0)
        );
}


/* ==================================================
   MAIN WRAPPER
================================================== */

.dcc-india-days-wrapper {
    position: relative;
    z-index: 2;

    padding: 15px 0;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.dcc-india-days-content {
    position: relative;
    padding-right: 30px;
}


.dcc-india-days-label {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #0878d1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dcc-india-days-label span {
    width: 30px;
    height: 3px;

    border-radius: 20px;

    background: #ff7900;
}


/* Heading */

.dcc-india-days-content h2 {
    margin: 0 0 22px;

    color: #052d56;

    font-size: 50px;
    line-height: 1.05;

    font-weight: 800;
}

.dcc-india-days-content h2 span {
    display: block;

    margin-top: 8px;

    color: #ff7900;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 600;
}


/* Date & venue */

.dcc-india-days-date,
.dcc-india-days-venue {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 0 0 10px;

    color: #010101;

    font-size: 17px;
    line-height: 1.5;

    font-weight: 600;
}

.dcc-india-days-date i,
.dcc-india-days-venue i {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #0878d1;

    background: rgba(8,120,209,0.08);
}

.dcc-india-days-venue i {
    color: #ff7900;

    background: rgba(255,121,0,0.08);
}


/* Tricolour Line */

.dcc-india-days-brand-line {
    display: flex;
    gap: 5px;

    margin-top: 24px;
}

.dcc-india-days-brand-line span:nth-child(1) {
    width: 45px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-days-brand-line span:nth-child(2) {
    width: 22px;
    height: 4px;

    border-radius: 20px;

    background: #0878d1;
}

.dcc-india-days-brand-line span:nth-child(3) {
    width: 35px;
    height: 4px;

    border-radius: 20px;

    background: #008c44;
}


/* ==================================================
   COUNTER PANEL
================================================== */

.dcc-india-days-counter-panel {
    position: relative;

    padding: 30px 32px 24px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0,161,238,0.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #041b31 0%,
            #073b67 55%,
            #07568e 100%
        );

    border: 1px solid rgba(255,255,255,0.13);

    box-shadow:
        0 25px 60px rgba(0,56,99,0.20);
}


/* Orange top line */

.dcc-india-days-counter-panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #ff7900 0%,
            #ff7900 30%,
            #ffffff 30%,
            #ffffff 60%,
            #008c44 60%,
            #008c44 100%
        );
}


/* Decorative circle */

.dcc-india-days-counter-panel::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -130px;

    border-radius: 50%;

    border: 40px solid rgba(255,255,255,0.035);
}


/* ==================================================
   PANEL HEADER
================================================== */

.dcc-india-days-counter-head {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}

.dcc-india-days-counter-head span {
    display: block;

    margin-bottom: 3px;

    color: #81d4ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dcc-india-days-counter-head strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


/* header icon */

.dcc-india-days-counter-head-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #ffffff;

    font-size: 24px;

    background:
        linear-gradient(
            135deg,
            #078ce1,
            #00afff
        );

    box-shadow:
        0 8px 22px rgba(0,165,245,0.24);
}


/* ==================================================
   COUNTER
================================================== */

.dcc-india-days-counter-wrap {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 32px 0 25px;
}


/* Individual counter */

.dcc-india-days-counter-item {
    flex: 1;

    text-align: center;
}

.dcc-india-days-counter-item strong {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 44px;
    line-height: 1;

    font-weight: 800;
}

.dcc-india-days-counter-item span {
    color: rgba(255,255,255,0.65);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* Separator */

.dcc-india-days-counter-separator {
    margin-top: -18px;

    color: #ff8a19;

    font-size: 31px;
    font-weight: 800;
}


/* ==================================================
   COUNTER BOTTOM
================================================== */

.dcc-india-days-counter-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    gap: 15px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255,255,255,0.10);
}

.dcc-india-days-counter-bottom span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,0.73);

    font-size: 12px;
    font-weight: 500;
}

.dcc-india-days-counter-bottom i {
    color: #ff931e;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .dcc-india-days-section {
        padding: 50px 0;
    }

    .dcc-india-days-content {
        padding-right: 0;

        text-align: center;
    }

    .dcc-india-days-label,
    .dcc-india-days-date,
    .dcc-india-days-venue,
    .dcc-india-days-brand-line {
        justify-content: center;
    }

    .dcc-india-days-content h2 {
        font-size: 43px;
    }

}


@media (max-width: 767px) {

    .dcc-india-days-section {
        padding: 55px 0;
    }

    .dcc-india-days-content h2 {
        font-size: 36px;
    }

    .dcc-india-days-content h2 span {
        font-size: 17px;
    }

    .dcc-india-days-counter-panel {
        padding: 25px 16px 20px;

        border-radius: 18px;
    }

    .dcc-india-days-counter-head {
        padding-bottom: 18px;
    }

    .dcc-india-days-counter-head strong {
        font-size: 14px;
    }

    .dcc-india-days-counter-head-icon {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .dcc-india-days-counter-wrap {
        padding: 26px 0 20px;
    }

    .dcc-india-days-counter-item strong {
        font-size: 29px;
    }

    .dcc-india-days-counter-item span {
        font-size: 8px;
    }

    .dcc-india-days-counter-separator {
        margin-top: -14px;

        font-size: 21px;
    }

    .dcc-india-days-counter-bottom {
        flex-direction: column;
        align-items: center;

        gap: 8px;
    }

}
/* ==========================================
   DCC INDIA - KEY VISITOR INDUSTRIES DARK
========================================== */

.dcc-india-visitor-industries-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%, rgba(0, 161, 238, 0.14), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(0, 140, 68, 0.09), transparent 24%),
        linear-gradient(
            135deg,
            #03182d 0%,
            #06345c 48%,
            #075184 100%
        );
}


/* subtle tech grid */

.dcc-india-visitor-industries-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.05;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.12) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}


/* decorative glow */

.dcc-india-visitor-industries-section::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -170px;
    top: -190px;

    border-radius: 50%;

    border: 70px solid rgba(255,255,255,0.025);
}


/* Heading */

.dcc-india-visitor-industries-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 45px;
}

.dcc-india-visitor-industries-subtitle {
    display: inline-block;

    margin-bottom: 8px;

    color: #7fd4ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dcc-india-visitor-industries-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 700;
    text-transform: uppercase;
}


/* Brand underline */

.dcc-india-visitor-industries-line {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 17px;
}

.dcc-india-visitor-industries-line span:first-child {
    width: 50px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-visitor-industries-line span:last-child {
    width: 26px;
    height: 4px;

    border-radius: 20px;

    background: #00a153;
}


/* ==========================================
   LIST
========================================== */

.dcc-india-visitor-industries-list {
    position: relative;
    z-index: 2;

    max-width: 1080px;

    margin: 0 auto;
}


/* Right column */

.dcc-india-visitor-industries-right {
    position: relative;

    padding-left: 45px;
}

.dcc-india-visitor-industries-right::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;
    bottom: 5px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,0.18),
            rgba(255,255,255,0.18),
            transparent
        );
}


/* List Item */

.dcc-india-visitor-industry-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    min-height: 70px;

    padding: 14px 18px 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    transition: all 0.3s ease;
}


.dcc-india-visitor-industry-item:last-child {
    border-bottom: 0;
}


/* icon */

.dcc-india-visitor-industry-icon {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #8bdcff;

    font-size: 18px;

    background:
        rgba(0, 161, 238, 0.10);

    border:
        1px solid rgba(115, 212, 255, 0.18);

    transition: 0.3s ease;
}


/* Text */

.dcc-india-visitor-industry-item span {
    color: #ffffff;

    font-size: 18px;
    line-height: 1.5;

    font-weight: 500;
}


/* hover */

.dcc-india-visitor-industry-item:hover {
    padding-left: 8px;
}


.dcc-india-visitor-industry-item:hover
.dcc-india-visitor-industry-icon {
    color: #ffffff;

    border-color: transparent;

    background:
        linear-gradient(
            135deg,
            #078ce1,
            #00b5ff
        );

    box-shadow:
        0 8px 22px rgba(0, 165, 240, 0.25);
}


.dcc-india-visitor-industry-item:hover span {
    color: #ffffff;
}


/* small orange indicator */

.dcc-india-visitor-industry-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ff7900,
            #00a153
        );

    transition: width 0.3s ease;
}


.dcc-india-visitor-industry-item:hover::after {
    width: 55px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .dcc-india-visitor-industries-section {
        padding: 65px 0;
    }

    .dcc-india-visitor-industries-heading h2 {
        font-size: 34px;
    }

    .dcc-india-visitor-industries-right {
        padding-left: 12px;
    }

    .dcc-india-visitor-industries-right::before {
        display: none;
    }

}


@media (max-width: 767px) {

    .dcc-india-visitor-industries-section {
        padding: 50px 0;
    }

    .dcc-india-visitor-industries-heading {
        margin-bottom: 30px;
    }

    .dcc-india-visitor-industries-heading h2 {
        font-size: 29px;
    }

    .dcc-india-visitor-industry-item {
        min-height: 60px;

        padding: 12px 0;
    }

    .dcc-india-visitor-industry-icon {
        width: 40px;
        height: 40px;

        min-width: 40px;

        font-size: 16px;
    }

    .dcc-india-visitor-industry-item span {
        font-size: 16px;
    }

}
/* ===============================================
   DCC INDIA - BENEFITS OF PARTICIPATION
=============================================== */

.dcc-india-benefits-section {
    position: relative;
    padding: 85px 0 90px;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 20%, rgba(0, 130, 210, 0.07), transparent 25%),
        radial-gradient(circle at 92% 80%, rgba(0, 140, 68, 0.05), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f5faff 55%, #eef7fc 100%);
}


/* subtle tech pattern */

.dcc-india-benefits-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        linear-gradient(rgba(0, 70, 125, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 70, 125, 0.18) 1px, transparent 1px);

    background-size: 40px 40px;
}


/* ===============================================
   CENTER HEADING
=============================================== */

.dcc-india-benefits-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.dcc-india-benefits-subtitle {
    display: inline-block;

    margin-bottom: 8px;

    color: #0878d1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dcc-india-benefits-heading h2 {
    margin: 0;

    color: #052f59;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 700;
    text-transform: uppercase;
}


/* orange + green underline */

.dcc-india-benefits-line {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 17px;
}

.dcc-india-benefits-line span:first-child {
    width: 50px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-benefits-line span:last-child {
    width: 27px;
    height: 4px;

    border-radius: 20px;

    background: #008c44;
}


/* ===============================================
   BENEFIT GRID
=============================================== */

.dcc-india-benefits-grid {
    position: relative;
    z-index: 2;

    max-width: 1180px;

    margin: 0 auto;
}


/* individual point */

.dcc-india-benefit-item {
    position: relative;

    min-height: 120px;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 17px 12px;

    border-right:
        1px solid rgba(0, 70, 125, 0.10);

    border-bottom:
        1px solid rgba(0, 70, 125, 0.10);

    transition: all 0.3s ease;
}


/* remove border on every 4th */

.dcc-india-benefits-grid > div:nth-child(3n)
.dcc-india-benefit-item {
    border-right: 0;
}


/* remove bottom border last row */

.dcc-india-benefits-grid > div:nth-child(n+9)
.dcc-india-benefit-item {
    border-bottom: 0;
}


/* check icon */

.dcc-india-benefit-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 16px;

    background: linear-gradient(135deg, #0757a6, #0c82d8);

    box-shadow:
        0 7px 16px rgba(0, 110, 185, 0.15);

    transition: 0.3s ease;
}


/* text */

.dcc-india-benefit-item p {
    margin: 3px 0 0;

    color: #000000;

    font-size: 18px;
    line-height: 1.55;

    font-weight: 500;
}


/* hover */

.dcc-india-benefit-item:hover {
    background:
        rgba(255,255,255,0.65);

    transform: translateY(-3px);
}

.dcc-india-benefit-item:hover
.dcc-india-benefit-icon {
    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff9c35
        );

    transform: scale(1.08);
}


/* ===============================================
   TABLET
=============================================== */

@media (max-width: 991px) {

    .dcc-india-benefits-section {
        padding: 65px 0;
    }

    .dcc-india-benefits-heading h2 {
        font-size: 34px;
    }

    .dcc-india-benefits-grid > div:nth-child(4n)
    .dcc-india-benefit-item {
        border-right:
            1px solid rgba(0, 70, 125, 0.10);
    }

    .dcc-india-benefits-grid > div:nth-child(2n)
    .dcc-india-benefit-item {
        border-right: 0;
    }

    .dcc-india-benefits-grid > div:nth-child(n+9)
    .dcc-india-benefit-item {
        border-bottom:
            1px solid rgba(0, 70, 125, 0.10);
    }

    .dcc-india-benefits-grid > div:nth-child(n+11)
    .dcc-india-benefit-item {
        border-bottom: 0;
    }

}


/* ===============================================
   MOBILE
=============================================== */

@media (max-width: 767px) {

    .dcc-india-benefits-section {
        padding: 50px 0;
    }

    .dcc-india-benefits-heading {
        margin-bottom: 30px;
    }

    .dcc-india-benefits-heading h2 {
        font-size: 29px;
    }

    .dcc-india-benefit-item {
        min-height: auto;

        padding: 17px 5px;

        border-right: 0 !important;

        border-bottom:
            1px solid rgba(0, 70, 125, 0.10) !important;
    }

    .dcc-india-benefits-grid > div:last-child
    .dcc-india-benefit-item {
        border-bottom: 0 !important;
    }

    .dcc-india-benefit-item p {
        font-size: 14px;
    }

}
/* ==================================================
   DCC INDIA - CONFERENCE COMING SOON
================================================== */

.dcc-india-conference-soon-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 30%, rgba(0,161,238,0.17), transparent 28%),
        radial-gradient(circle at 88% 75%, rgba(255,121,0,0.10), transparent 25%),
        linear-gradient(
            135deg,
            #03172b 0%,
            #07375f 48%,
            #075181 100%
        );
}


/* Tech grid */

.dcc-india-conference-soon-grid {
    position: absolute;
    inset: 0;

    opacity: 0.045;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


/* Glows */

.dcc-india-conference-soon-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dcc-india-conference-soon-glow-one {
    width: 420px;
    height: 420px;

    top: -230px;
    left: -160px;

    border: 80px solid rgba(255,255,255,0.025);
}

.dcc-india-conference-soon-glow-two {
    width: 350px;
    height: 350px;

    right: -160px;
    bottom: -190px;

    border: 65px solid rgba(0,161,238,0.05);
}


/* Main Content */

.dcc-india-conference-soon-content {
    position: relative;
    z-index: 2;
}


/* Icon */

.dcc-india-conference-soon-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 22px;

    color: #ffffff;

    font-size: 34px;

    background:
        linear-gradient(
            135deg,
            #078ce1,
            #00b5ff
        );

    box-shadow:
        0 18px 40px rgba(0,161,238,0.25);
}


/* Small title */

.dcc-india-conference-soon-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #82d8ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


/* Main Heading */

.dcc-india-conference-soon-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 52px;
    line-height: 1.1;

    font-weight: 800;
}

.dcc-india-conference-soon-content h2 span {
    display: block;

    margin-top: 6px;

    color: #ff931e;
}


/* Description */

.dcc-india-conference-soon-content p {
    max-width: 600px;

    margin: 22px auto 0;

    color: rgba(255,255,255,0.75);

    font-size: 17px;
    line-height: 1.7;

    font-weight: 500;
}


/* Brand line */

.dcc-india-conference-soon-line {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 28px;
}

.dcc-india-conference-soon-line span:nth-child(1) {
    width: 45px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-conference-soon-line span:nth-child(2) {
    width: 25px;
    height: 4px;

    border-radius: 20px;

    background: #ffffff;
}

.dcc-india-conference-soon-line span:nth-child(3) {
    width: 38px;
    height: 4px;

    border-radius: 20px;

    background: #00a153;
}


/* Update badge */

.dcc-india-conference-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 30px;

    padding: 11px 19px;

    border-radius: 50px;

    color: rgba(255,255,255,0.9);

    font-size: 13px;
    font-weight: 600;

    background: rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.13);

    backdrop-filter: blur(8px);
}

.dcc-india-conference-soon-badge i {
    color: #ff941f;
}


/* Responsive */

@media (max-width: 991px) {

    .dcc-india-conference-soon-section {
        padding: 80px 0;
    }

    .dcc-india-conference-soon-content h2 {
        font-size: 44px;
    }

}


@media (max-width: 767px) {

    .dcc-india-conference-soon-section {
        padding: 65px 0;
    }

    .dcc-india-conference-soon-icon {
        width: 68px;
        height: 68px;

        font-size: 28px;
    }

    .dcc-india-conference-soon-content h2 {
        font-size: 35px;
    }

    .dcc-india-conference-soon-content p {
        font-size: 15px;
    }

}/* ==================================================
   DCC INDIA - OVERVIEW SECTION
================================================== */

.dcc-india-overview-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 5% 15%, rgba(0, 132, 211, 0.08), transparent 28%),
        radial-gradient(circle at 95% 85%, rgba(0, 140, 68, 0.05), transparent 24%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6fbff 55%,
            #eef7fc 100%
        );
}


/* Tech Grid */

.dcc-india-overview-grid {
    position: absolute;
    inset: 0;

    opacity: 0.025;

    background-image:
        linear-gradient(rgba(0, 70, 125, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 70, 125, 0.25) 1px, transparent 1px);

    background-size: 42px 42px;
}


/* ==================================================
   HEADING
================================================== */

.dcc-india-overview-heading {
    margin-bottom: 27px;
}

.dcc-india-overview-subtitle {
    display: inline-block;

    margin-bottom: 9px;

    color: #0878d1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dcc-india-overview-heading h2 {
    max-width: 650px;

    margin: 0;

    color: #052f59;

    font-size: 42px;
    line-height: 1.18;

    font-weight: 800;
}


.dcc-india-overview-line {
    display: flex;
    gap: 5px;

    margin-top: 18px;
}

.dcc-india-overview-line span:first-child {
    width: 52px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-overview-line span:last-child {
    width: 27px;
    height: 4px;

    border-radius: 20px;

    background: #008c44;
}


/* ==================================================
   CONTENT
================================================== */

.dcc-india-overview-content p {
    margin: 0 0 18px;

    color: #000000;

    font-size: 17px;
    line-height: 1.85;
    text-align: justify;

    font-weight: 400;
}

.dcc-india-overview-content strong {
    color: #073c68;
    font-weight: 700;
}


/* ==================================================
   IMAGE
================================================== */

.dcc-india-overview-image {
    position: relative;

    height: 620px;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 25px 55px rgba(0, 56, 99, 0.16);
}

.dcc-india-overview-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dcc-india-overview-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(1, 27, 50, 0.90),
            rgba(0, 70, 120, 0.15) 60%
        );
}


.dcc-india-overview-image-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


.dcc-india-overview-image-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 23px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #078ce1,
            #00b4ff
        );
}


/* ==================================================
   EXHIBITOR SECTORS
================================================== */

.dcc-india-overview-industries {
    position: relative;

    margin-top: 75px;

    padding: 55px 45px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #041c33,
            #073b67 55%,
            #075384
        );

    box-shadow:
        0 25px 60px rgba(0, 55, 98, 0.16);

    overflow: hidden;
}


.dcc-india-overview-industries::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    border: 60px solid rgba(255,255,255,0.035);
}


.dcc-india-overview-industries-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 35px;
}


.dcc-india-overview-industries-heading > span {
    display: block;

    margin-bottom: 7px;

    color: #79d1ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.dcc-india-overview-industries-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;
    font-weight: 800;
}


/* List */

.dcc-india-overview-industries-list {
    position: relative;
    z-index: 2;
}


.dcc-india-overview-industry-item {
    min-height: 72px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    border-right:
        1px solid rgba(255,255,255,0.09);

    border-bottom:
        1px solid rgba(255,255,255,0.09);

    transition: 0.3s ease;
}


.dcc-india-overview-industry-item i {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #89dcff;

    font-size: 16px;

    background:
        rgba(0, 161, 238, 0.11);

    border:
        1px solid rgba(120, 215, 255, 0.18);

    transition: 0.3s ease;
}


.dcc-india-overview-industry-item span {
    color: rgb(255, 255, 255);

    font-size: 17px;
    line-height: 1.45;

    font-weight: 600;
}


.dcc-india-overview-industry-item:hover {
    background:
        rgba(255,255,255,0.04);
}


.dcc-india-overview-industry-item:hover i {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff9c34
        );

    border-color: transparent;
}


/* ==================================================
   BOTTOM CONTENT
================================================== */

.dcc-india-overview-bottom {
    margin-top: 70px;
}


.dcc-india-overview-bottom-item {
    position: relative;

    padding-left: 70px;
}


.dcc-india-overview-bottom-icon {
    position: absolute;

    left: 0;
    top: 0;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #ffffff;

    font-size: 30px;

    background:
        linear-gradient(
            135deg,
            #055a96,
            #0794df
        );

    box-shadow:
        0 10px 25px rgba(0, 90, 150, 0.15);
}


.dcc-india-overview-bottom-item p {
    margin: 0 0 18px;

    color: #000000;

    font-size: 17px;
    line-height: 1.85;
}


.dcc-india-overview-bottom-item strong {
    color: #063d69;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .dcc-india-overview-section {
        padding: 70px 0;
    }

    .dcc-india-overview-heading h2 {
        font-size: 35px;
    }

    .dcc-india-overview-image {
        height: 400px;
    }

    .dcc-india-overview-industries {
        padding: 45px 30px;
    }

}


@media (max-width: 767px) {

    .dcc-india-overview-section {
        padding: 55px 0;
    }

    .dcc-india-overview-heading h2 {
        font-size: 29px;
    }

    .dcc-india-overview-image {
        height: 320px;
    }

    .dcc-india-overview-industries {
        margin-top: 50px;

        padding: 38px 18px;

        border-radius: 18px;
    }

    .dcc-india-overview-industries-heading h3 {
        font-size: 24px;
    }

    .dcc-india-overview-industry-item {
        border-right: 0;
    }

    .dcc-india-overview-bottom {
        margin-top: 50px;
    }

    .dcc-india-overview-bottom-item {
        padding-left: 0;
    }

    .dcc-india-overview-bottom-icon {
        position: relative;

        margin-bottom: 18px;
    }

}
/* ==================================================
   DCC INDIA - WHY EXHIBIT BOX DESIGN
================================================== */

.dcc-india-exhibit-benefits-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 8% 15%, rgba(0, 131, 210, 0.08), transparent 27%),
        radial-gradient(circle at 95% 85%, rgba(0, 140, 68, 0.05), transparent 24%),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6faff 50%,
            #edf7fc 100%
        );
}


/* background pattern */

.dcc-india-exhibit-benefits-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        linear-gradient(
            rgba(0, 65, 115, 0.20) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 65, 115, 0.20) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


/* ==================================================
   HEADING
================================================== */

.dcc-india-exhibit-benefits-heading {
    margin-bottom: 50px;
}

.dcc-india-exhibit-benefits-subtitle {
    display: inline-block;

    margin-bottom: 8px;

    color: #0878d1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.dcc-india-exhibit-benefits-heading h2 {
    margin: 0;

    color: #052f59;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;
    text-transform: uppercase;
}


.dcc-india-exhibit-benefits-line {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 18px;
}

.dcc-india-exhibit-benefits-line span:first-child {
    width: 52px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}

.dcc-india-exhibit-benefits-line span:last-child {
    width: 27px;
    height: 4px;

    border-radius: 20px;

    background: #008c44;
}


/* ==================================================
   BOX
================================================== */

.dcc-india-exhibit-benefit-box {
    position: relative;

    height: 100%;
    min-height: 320px;

    padding: 34px 30px 30px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbfe
        );

    border:
        1px solid rgba(0, 84, 145, 0.09);

    box-shadow:
        0 15px 40px rgba(0, 50, 90, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* top accent */

.dcc-india-exhibit-benefit-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #0567a9,
            #00a1ee,
            #008c44
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


/* decorative circle */

.dcc-india-exhibit-benefit-box::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    border:
        25px solid rgba(0, 119, 190, 0.035);

    transition: 0.35s ease;
}


/* Number */

.dcc-india-exhibit-benefit-number {
    position: absolute;

    right: 24px;
    top: 24px;

    color: rgba(0, 70, 125, 0.10);

    font-size: 36px;
    line-height: 1;

    font-weight: 800;
}


/* Icon */

.dcc-india-exhibit-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    color: #ffffff;

    font-size: 26px;

    background:
        linear-gradient(
            135deg,
            #045589,
            #078ddb
        );

    box-shadow:
        0 10px 25px rgba(0, 103, 175, 0.18);

    transition: 0.35s ease;
}


/* Heading */

.dcc-india-exhibit-benefit-box h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #073b65;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;
}


/* Description */

.dcc-india-exhibit-benefit-box p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #000000;

    font-size: 15px;
    line-height: 1.7;
}


/* ==================================================
   HOVER
================================================== */

.dcc-india-exhibit-benefit-box:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0, 115, 190, 0.18);

    box-shadow:
        0 22px 50px rgba(0, 54, 96, 0.13);
}


.dcc-india-exhibit-benefit-box:hover::before {
    transform: scaleX(1);
}


.dcc-india-exhibit-benefit-box:hover::after {
    border-color:
        rgba(255, 121, 0, 0.06);

    transform: scale(1.15);
}


.dcc-india-exhibit-benefit-box:hover
.dcc-india-exhibit-benefit-icon {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff9a30
        );

    box-shadow:
        0 12px 28px rgba(255, 121, 0, 0.20);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {

    .dcc-india-exhibit-benefits-section {
        padding: 70px 0;
    }

    .dcc-india-exhibit-benefits-heading h2 {
        font-size: 34px;
    }

    .dcc-india-exhibit-benefit-box {
        min-height: 300px;
    }

}


@media (max-width: 767px) {

    .dcc-india-exhibit-benefits-section {
        padding: 55px 0;
    }

    .dcc-india-exhibit-benefits-heading {
        margin-bottom: 32px;
    }

    .dcc-india-exhibit-benefits-heading h2 {
        font-size: 28px;
    }

    .dcc-india-exhibit-benefit-box {
        min-height: auto;

        padding: 28px 24px;
    }

    .dcc-india-exhibit-benefit-icon {
        width: 54px;
        height: 54px;

        font-size: 22px;
    }

}/* ==================================================
   DCC INDIA - WHY ATTEND
================================================== */

.dcc-india-why-attend-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(0, 130, 210, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(0, 140, 68, 0.05),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6faff 50%,
            #edf7fc 100%
        );
}


/* Background Pattern */

.dcc-india-why-attend-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        linear-gradient(
            rgba(0, 65, 115, 0.20) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 65, 115, 0.20) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}


/* ==================================================
   HEADING
================================================== */

.dcc-india-why-attend-heading {
    margin-bottom: 50px;
}


.dcc-india-why-attend-subtitle {
    display: inline-block;

    margin-bottom: 8px;

    color: #0878d1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.6px;
}


.dcc-india-why-attend-heading h2 {
    margin: 0;

    color: #052f59;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}


/* Accent Line */

.dcc-india-why-attend-line {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin-top: 17px;
}


.dcc-india-why-attend-line span:first-child {
    width: 52px;
    height: 4px;

    border-radius: 20px;

    background: #ff7900;
}


.dcc-india-why-attend-line span:last-child {
    width: 27px;
    height: 4px;

    border-radius: 20px;

    background: #008c44;
}


/* ==================================================
   BOX
================================================== */

.dcc-india-why-attend-box {
    position: relative;

    height: 100%;
    min-height: 245px;

    padding: 30px 12px 26px;

    overflow: hidden;

    text-align: center;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f9fcff
        );

    border:
        1px solid rgba(0, 80, 145, 0.09);

    box-shadow:
        0 14px 35px rgba(0, 49, 88, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top Accent */

.dcc-india-why-attend-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #0567a9,
            #00a1ee,
            #008c44
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.35s ease;
}


/* Decorative circle */

.dcc-india-why-attend-box::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    border:
        22px solid rgba(0, 115, 185, 0.035);

    transition: 0.35s ease;
}


/* Number */

.dcc-india-why-attend-number {
    position: absolute;

    top: 18px;
    right: 19px;

    color: rgba(0, 66, 118, 0.09);

    font-size: 28px;
    line-height: 1;

    font-weight: 800;
}


/* ==================================================
   ICON
================================================== */

.dcc-india-why-attend-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 5px auto 24px;

    border-radius: 18px;

    color: #ffffff;

    font-size: 27px;

    background:
        linear-gradient(
            135deg,
            #045789,
            #078ddb
        );

    box-shadow:
        0 10px 24px rgba(0, 100, 170, 0.18);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* Text */

.dcc-india-why-attend-box h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #000000;

    font-size: 17px;
    line-height: 1.55;

    font-weight: 500;
}


/* ==================================================
   HOVER
================================================== */

.dcc-india-why-attend-box:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0, 112, 190, 0.18);

    box-shadow:
        0 22px 48px rgba(0, 54, 96, 0.13);
}


.dcc-india-why-attend-box:hover::before {
    transform: scaleX(1);
}


.dcc-india-why-attend-box:hover
.dcc-india-why-attend-icon {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff9a30
        );

    box-shadow:
        0 12px 28px rgba(255, 121, 0, 0.20);
}


.dcc-india-why-attend-box:hover::after {
    border-color:
        rgba(0, 140, 68, 0.06);

    transform: scale(1.15);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199px) {

    .dcc-india-why-attend-box {
        min-height: 230px;
    }

}


@media (max-width: 991px) {

    .dcc-india-why-attend-section {
        padding: 70px 0;
    }

    .dcc-india-why-attend-heading h2 {
        font-size: 35px;
    }

}


@media (max-width: 767px) {

    .dcc-india-why-attend-section {
        padding: 55px 0;
    }

    .dcc-india-why-attend-heading {
        margin-bottom: 32px;
    }

    .dcc-india-why-attend-heading h2 {
        font-size: 30px;
    }

    .dcc-india-why-attend-box {
        min-height: auto;

        padding: 28px 22px;
    }

    .dcc-india-why-attend-icon {
        width: 56px;
        height: 56px;

        font-size: 23px;
    }

}/* ==================================================
   DCC INDIA - EXHIBITORS PROFILE LIST
================================================== */

.dcc-india-exhibitor-list-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(0, 130, 210, 0.08), transparent 28%),
        radial-gradient(circle at 92% 85%, rgba(0, 140, 68, 0.05), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 55%, #edf7fc 100%);
}


/* subtle background pattern */

.dcc-india-exhibitor-list-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(0, 68, 120, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 68, 120, 0.22) 1px, transparent 1px);
    background-size: 42px 42px;
}


/* ==================================================
   HEADING
================================================== */

.dcc-india-exhibitor-list-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.dcc-india-exhibitor-list-subtitle {
    display: inline-block;
    margin-bottom: 8px;
    color: #0878d1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.dcc-india-exhibitor-list-heading h2 {
    margin: 0;
    color: #052f59;
    font-size: 40px;
    line-height: 1.2;
        font-weight: 700;
    text-transform: uppercase;
}

.dcc-india-exhibitor-list-line {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 18px;
}

.dcc-india-exhibitor-list-line span:first-child {
    width: 52px;
    height: 4px;
    border-radius: 20px;
    background: #ff7900;
}

.dcc-india-exhibitor-list-line span:last-child {
    width: 27px;
    height: 4px;
    border-radius: 20px;
    background: #008c44;
}


/* ==================================================
   ITEM
================================================== */

.dcc-india-exhibitor-list-item {
    position: relative;
    height: 100%;
    padding: 28px 28px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f9fcff);
    border: 1px solid rgba(0, 78, 140, 0.09);
    box-shadow: 0 14px 35px rgba(0, 50, 90, 0.07);
    transition: all 0.35s ease;
    overflow: hidden;
}


/* top accent */

.dcc-india-exhibitor-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0568aa, #00a1ee, #008c44);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}


/* decorative circle */

.dcc-india-exhibitor-list-item::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 22px solid rgba(0, 115, 185, 0.035);
    transition: 0.35s ease;
}


/* top row */

.dcc-india-exhibitor-list-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-right: 45px;
}

.dcc-india-exhibitor-list-number {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(0, 66, 118, 0.09);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.dcc-india-exhibitor-list-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-size: 22px;
    background: linear-gradient(135deg, #045789, #078ddb);
    box-shadow: 0 10px 24px rgba(0, 100, 170, 0.18);
    transition: 0.35s ease;
}

.dcc-india-exhibitor-list-top h3 {
    margin: 0;
    color: #000000;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}


/* list */

.dcc-india-exhibitor-list-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.dcc-india-exhibitor-list-item ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
   color: #000000;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.dcc-india-exhibitor-list-item ul li:last-child {
    margin-bottom: 0;
}

.dcc-india-exhibitor-list-item ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0878d1;
    box-shadow: 0 0 0 4px rgba(8, 120, 209, 0.08);
}


/* hover */

.dcc-india-exhibitor-list-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 112, 190, 0.18);
    box-shadow: 0 22px 48px rgba(0, 54, 96, 0.13);
}

.dcc-india-exhibitor-list-item:hover::before {
    transform: scaleX(1);
}

.dcc-india-exhibitor-list-item:hover::after {
    border-color: rgba(255, 121, 0, 0.06);
    transform: scale(1.12);
}

.dcc-india-exhibitor-list-item:hover .dcc-india-exhibitor-list-icon {
    background: linear-gradient(135deg, #ff7900, #ff9a30);
    transform: translateY(-3px);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .dcc-india-exhibitor-list-section {
        padding: 70px 0;
    }

    .dcc-india-exhibitor-list-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .dcc-india-exhibitor-list-section {
        padding: 55px 0;
    }

    .dcc-india-exhibitor-list-heading {
        margin-bottom: 32px;
    }

    .dcc-india-exhibitor-list-heading h2 {
        font-size: 28px;
    }

    .dcc-india-exhibitor-list-item {
        padding: 24px 20px 20px;
    }

    .dcc-india-exhibitor-list-top h3 {
        font-size: 18px;
    }

    .dcc-india-exhibitor-list-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .dcc-india-exhibitor-list-item ul li {
        font-size: 14px;
    }
}