/* -----------head section--------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ---------------------------nav section-------------------------- */
.topbar {
    background: #c1121f;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: #faf7f7;
}

.website-layout {
    display: flex;
    position: relative;
}

.modern-sidebar {
    width: 290px;
    min-width: 290px;
    height: calc(100vh - 40px);
    position: fixed;
    top: 20px;
    left: 20px;
    border-radius: 32px;
    padding: 28px 18px;
    background:
        linear-gradient(180deg,
            rgba(8, 8, 8, 0.98),
            rgba(0, 0, 0, 0.98));
    backdrop-filter: blur(18px);
    border:
        1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
    z-index: 999;
    transition: 0.5s ease;
}

/* RED GLOW */
.modern-sidebar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14%;
    width: 4px;
    height: 72%;
    border-radius: 30px;
    background:
        linear-gradient(to bottom,
            transparent,
            #ff003c,
            transparent);
    box-shadow:
        0 0 22px #ff003c;
}

.modern-sidebar.hide-sidebar {
    transform: translateX(-120%);
}

.sidebar-logo {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    padding-bottom: 22px;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-logo span {
    color: #ff2342;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 600;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* MENU LEFT */
.menu-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ICON */
.menu-left i {
    width: 20px;
    text-align: center;
}

/* HOVER */
.sidebar-links li a:hover {
    background:
        linear-gradient(135deg,
            rgba(255, 0, 60, 0.16),
            rgba(255, 255, 255, 0.03));
    color: #fff;
    transform: translateX(6px);
}

/* ACTIVE */
.sidebar-links li a.active {
    background:
        linear-gradient(135deg,
            #ff003c,
            #ff2f55);
    color: #fff;
    box-shadow:
        0 12px 30px rgba(255, 0, 60, 0.35);
}

/* ACTIVE GLOW */
.sidebar-links li a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.12),
            transparent);
    pointer-events: none;
}

.submenu-wrapper {
    padding-top: 10px;
}

.submenu {
    padding-left: 18px;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu li a {
    background:
        rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.submenu li a:hover {
    background:
        rgba(255, 0, 60, 0.10);
    color: #fff;
}

.new-badge {
    background: #fff;
    color: #ff003c;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 30px;
    animation: blinkBadge 1s infinite;
}

@keyframes blinkBadge {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }

    100% {
        opacity: 1;
    }
}

.website-content {
    width: 100%;
    padding-left: 330px;
    transition: 0.5s ease;
}

.website-content.full-width {
    padding-left: 0;
}

.sidebar-toggle {
    position: fixed;
    top: 83px;
    left: 18px;
    width: 35px;
    height: 35px;
    border: none;
    outline: none;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #ff003c,
            #d10034);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 2000;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow:
        0 12px 30px rgba(255, 0, 60, 0.35);
}

/* HOVER */
.sidebar-toggle:hover {
    transform: translateY(-3px);
}

/* LINES */
.sidebar-toggle span {
    position: absolute;
    width: 15px;
    height: 3px;
    border-radius: 20px;
    background: #fff;
    transition: 0.4s ease;
}

/* DEFAULT = CROSS */
.sidebar-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.sidebar-toggle span:nth-child(2) {
    opacity: 0;
}

.sidebar-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

/* CLOSED = HAMBURGER */
.sidebar-toggle.active span:nth-child(1) {
    transform:
        translateY(-8px) rotate(0deg);
}

.sidebar-toggle.active span:nth-child(2) {
    opacity: 1;
}

.sidebar-toggle.active span:nth-child(3) {
    transform:
        translateY(8px) rotate(0deg);
}

@media(max-width:991px) {
    .modern-sidebar {
        transform: translateX(-120%);
    }

    .modern-sidebar.show-sidebar {
        transform: translateX(0);
    }

    .website-content {
        padding-left: 0;
    }
}

/* -------------------------------hero section----------------------------- */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* SLIDE */
.hero-slider .carousel-item {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* BACKGROUND IMAGE */
.hero-slider .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: heroZoom 12s ease-in-out infinite alternate;
    will-change: transform;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.58),
            rgba(193, 18, 31, 0.16));
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0px 15px;
    overflow: hidden;
}

.hero-inner {
    width: 100%;
    max-width: 1150px;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    animation: fadeDown 1s ease;
}

.hero-badge span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff3347;
    animation: pulse 1s infinite;
}

.hero-badge p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* TITLE */
.hero-title {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 28px;
    animation: fadeUp 1s ease;
}

.hero-title span {
    color: #ff4457;
}

/* SUBTITLE */
.hero-subtitle {
    color: #f3f3f3;
    font-size: 20px;
    line-height: 1.8;
    animation: fadeUp 1.2s ease;
}

/* ORGANIZER */
.hero-org {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    animation: fadeUp 1.4s ease;
}

.hero-org span {
    color: #ff4457;
}

/* DATE */
.hero-date {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 60px;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 38px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    animation: fadeUp 1.5s ease;
}

/* LOGOS */
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-logo-box {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.hero-logo-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.16);
}

.hero-logo-box img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* BUTTONS */
.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeUp 1.7s ease;
}

.hero-btn {
    min-width: 220px;
    padding: 16px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.35s ease;
}

/* PRIMARY */
.hero-btn-primary {
    background: #c1121f;
    border: 2px solid #c1121f;
    color: #fff;
    box-shadow: 0 10px 25px rgba(193, 18, 31, 0.3);
}

.hero-btn-primary:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}

/* OUTLINE */
.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}

/* CONTROLS */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 70px;
    opacity: 1;
    z-index: 5;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    background-size: 22px;
    transition: 0.3s ease;
}

.hero-slider .carousel-control-prev-icon:hover,
.hero-slider .carousel-control-next-icon:hover {
    background-color: #c1121f;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:991px) {
    .hero-content {
        padding: 120px 20px 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-org {
        font-size: 21px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media(max-width:767px) {
    .hero-content {
        padding: 110px 15px 90px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-org {
        font-size: 18px;
    }

    .hero-date {
        font-size: 14px;
        padding: 12px 24px;
    }

    .hero-logo-box {
        width: 85px;
        height: 85px;
        border-radius: 18px;
    }

    .hero-logo-box img {
        width: 56px;
        height: 56px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
}

/* -----------------------------------latest news section------------------------- */
.latest-news {
    position: relative;
    padding: 40px 0;
    background: #f8f9fb;
    overflow: hidden;
}

.latest-news::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: rgba(193, 18, 31, 0.05);
    border-radius: 50%;
}

.latest-news::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
}

.news-heading {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.news-heading h2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #ff1d25, #d60000);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 40px;
    line-height: 1;
    margin: 0;
    clip-path: polygon(0 0,
            90% 0,
            100% 50%,
            90% 100%,
            0 100%,
            6% 50%);
    box-shadow: 0 8px 20px rgba(214, 0, 0, 0.18);
}

.news-wrapper .row.g-4 {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.feature-news {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    padding: 24px;
    color: #fff;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* BACKGROUND EFFECT */
.feature-news::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(193, 18, 31, 0.22),
            rgba(0, 0, 0, 0.1));
}

.feature-news-content {
    position: relative;
    z-index: 2;
}

/* TAG */
.feature-news-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    margin-bottom: 18px;
}

.feature-news-tag span {
    width: 8px;
    height: 8px;
    background: #ff4457;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.feature-news-tag p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

/* TITLE */
.feature-news h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* TEXT */
.feature-news p {
    font-size: 14px;
    line-height: 1.7;
    color: #e7e7e7;
    margin-bottom: 0;
}

.feature-news strong {
    color: #fff;
}

/* IMAGE */
.feature-news img {
    width: 90px;
    margin-top: 16px;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.news-small-box {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.news-small-box:hover {
    transform: translateY(-4px);
}

/* ICON */
.news-small-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(193, 18, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.news-small-box:hover .news-small-icon {
    background: #c1121f;
}

.news-small-icon i {
    font-size: 22px;
    color: #c1121f;
    transition: 0.3s ease;
}

.news-small-box:hover .news-small-icon i {
    color: #fff;
}

/* CONTENT */
.news-small-content {
    flex: 1;
}

/* TITLE */
.news-small-box h4 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

/* TEXT */
.news-small-box p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* LINK */
.news-small-box a {
    display: inline-block;
    margin-top: 10px;
    color: #c1121f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.proceeding-img {
    max-width: 90px;
    width: 100%;
    margin: auto;
    display: block;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media(max-width:991px) {
    .feature-news {
        margin-bottom: 18px;
    }

    .feature-news h3 {
        font-size: 20px;
    }
}

@media(max-width:767px) {
    .latest-news {
        padding: 30px 0;
    }

    .news-heading {
        margin-bottom: 30px;
    }

    .news-heading h2 {
        font-size: 13px;
        padding: 14px 55px;
    }

    .feature-news {
        padding: 20px;
        border-radius: 16px;
    }

    .feature-news h3 {
        font-size: 18px;
    }

    .news-small-box {
        padding: 18px;
        border-radius: 16px;
        gap: 14px;
    }

    .news-small-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .news-small-box h4 {
        font-size: 17px;
    }
}

/* -----------------------------dates css-------------------------------- */
.news {
    position: relative;
    overflow: hidden;
}

.news::before,
.news::after {
    content: "📅";
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    animation: floatCalendar 12s linear infinite;
    z-index: 0;
}

.news::before {
    left: 5%;
    top: 10%;
    animation-delay: 0s;
}

.news::after {
    right: 8%;
    bottom: 5%;
    animation-delay: 5s;
}

/* extra floating dates */
.news .date-animation {
    position: absolute;
    color: rgba(255, 255, 255, 0.06);
    font-size: 80px;
    font-weight: 700;
    pointer-events: none;
    z-index: 0;
    animation: moveDate 15s linear infinite;
}

.news .date1 {
    top: 0%;
    left: 10%;
    animation-delay: 60s;
}

.news .date2 {
    bottom: 50%;
    right: 10%;
    animation-delay: 60s;
}

@keyframes floatCalendar {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes moveDate {
    0% {
        transform: translateY(0px);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-25px);
        opacity: 0.08;
    }

    100% {
        transform: translateY(0px);
        opacity: 0.03;
    }
}

/* keep cards above animation */
.spectacledcoder-expanding-cards-container {
    position: relative;
    z-index: 2;
}

.news {
    margin: 0;
    width: 100%;
    padding: 20px 0px;
    height: auto;
    display: flex;
    background-image: linear-gradient(120deg, rgb(247 228 225) 0%, rgb(243 233 232) 100%);
    font-family: "Poppins", serif;
    overflow-x: hidden;
}

.spectacledcoder-expanding-cards-container {
    margin: auto;
    width: 500px;
    height: 400px;
    background-color: rgb(255, 255, 255);
    display: flex;
    padding-left: 30px;
    border-radius: 70px;
    zoom: 0.7;
}

.spectacledcoder-cards {
    margin: auto;
    display: flex;
    width: 90%;
    height: 90%;
    border-radius: 50px;
    align-items: center;
}

.spectacledcoder-cards .card {
    position: absolute;
    margin: auto;
    width: 250px;
    height: 250px;
    border-radius: 60px;
    background-color: black;
    display: flex;
    border-right: none;
    border-bottom: none;
    border-left: 2px solid #311113;
    ;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px rgba(255, 186, 49, 0.226);
    z-index: 150;
}

.spectacledcoder-cards .card:hover {
    box-shadow: -20px -20px 0px rgba(255, 186, 49, 0.226);
    transition: box-shadow 1s;
}

.spectacledcoder-cards .card:first-child {
    background-color: #311113;
    background-image: url("https://img.icons8.com/fluency/48/submit-document.png");
    background-position: center 135px;
    background-size: 55px;
    background-repeat: no-repeat;
}

.spectacledcoder-cards .card:nth-child(2) {
    background-color: #311113;
    ;
    margin-left: 50px;
    background-image: url("https://img.icons8.com/fluency/48/approval.png");
    background-position: center 135px;
    background-size: 55px;
    background-repeat: no-repeat;
}

.spectacledcoder-cards .card:nth-child(3) {
    background-color: #311113;
    ;
    margin-left: 100px;
    background-image: url("https://img.icons8.com/fluency/48/edit-property.png");
    background-position: center 135px;
    background-size: 55px;
    background-repeat: no-repeat;
}

.spectacledcoder-cards .card:last-child {
    background-color: #311113;
    ;
    margin-left: 150px;
    background-image: url("https://img.icons8.com/fluency/48/calendar.png");
    background-position: center 135px;
    background-size: 55px;
    background-repeat: no-repeat;
}

.spectacledcoder-cards .card h3 {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    z-index: 5;
    width: calc(100% - 56px);
    word-break: break-word;
}

/* DATE TEXT */
.spectacledcoder-cards .card h3 span {
    display: block;
    margin-top: 12px !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82) !important;
}

.spectacledcoder-cards .card .bigsquare {
    margin: auto;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 90px;
    height: 90px;
    background-color: rgb(255, 255, 255);
    display: flex;
    z-index: 30;
}

.spectacledcoder-cards .card .bigsquare .col {
    margin: auto;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spectacledcoder-cards .card .bigsquare .col .sq1 {
    margin: auto;
    margin-top: 0px;
    margin-left: 0px;
    width: 40px;
    height: 40px;
    background-color: #311113;
    ;
    display: flex;
}

.spectacledcoder-cards .card .bigsquare .col .sq1 .cl1 {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100% 0% 100% 0% / 100% 100% 0% 0%;
    background-color: rgb(255, 255, 255);
    display: flex;
}

.spectacledcoder-cards .card .bigsquare .col .sq2 {
    margin: auto;
    margin-bottom: 0px;
    margin-left: -40px;
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    display: flex;
}

.spectacledcoder-cards .card .bigsquare .col .sq2 .cl2 {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100% 0% 100% 0% / 0% 0% 100% 100%;
    background-color: #311113;
    ;
    display: flex;
}

.spectacledcoder-cards .card .bigsquare .col .sq3 {
    margin: auto;
    margin-top: -40px;
    margin-right: 0px;
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    display: flex;
}

.spectacledcoder-cards .card .bigsquare .col .sq3 .cl3 {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100% 0% 100% 0% / 0% 0% 100% 100%;
    background-color: #311113;
    ;
    display: flex;
}

.spectacledcoder-cards .card .sq4 {
    position: absolute;
    margin: auto;
    margin-bottom: 10px;
    margin-left: 0px;
    width: 0px;
    height: 0px;
    background-color: #311113;
    ;
    display: flex;
    border-radius: 30%;
    z-index: 50;
    opacity: 0;
}

.spectacledcoder-cards .card:hover .sq4 {
    transform: translateX(90px) translateY(90px);
    width: 40px;
    height: 40px;
    opacity: 100;
    transition: all 0.7s;
}

.spectacledcoder-cards .card .sq4 img {
    margin: auto;
    rotate: -45deg;
    width: 0px;
    height: 0px;
}

.spectacledcoder-cards .card:hover .sq4 img {
    width: 40px;
    height: 40px;
    transition: all 1s;
}

.expanding-btn {
    width: 60px;
    height: 100px;
    margin: auto;
    margin-right: -15px;
    display: flex;
    flex-direction: column;
}

.expanding-btn .square1 {
    width: 20px;
    height: 20px;
    margin: auto;
    margin-right: -5px;
    margin-bottom: -6px;
    background-color: rgb(255, 255, 255);
}

.expanding-btn .square1 .circle1 {
    width: 20px;
    height: 20px;
    border-radius: 100% 0% 26% 74% / 0% 100% 0% 100%;
    background-color: #f4e7e5;
}

.expand-btn-container {
    margin: auto;
    margin-right: -15px;
    width: 61px;
    height: 61px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    z-index: 150;
    display: flex;
}

.expand-btn-container img {
    margin: auto;
    margin-right: 5px;
    z-index: 150;
}

.expanding-btn .square2 {
    width: 20px;
    height: 20px;
    margin: auto;
    margin-right: -5px;
    margin-top: -5px;
    background-color: rgb(255, 255, 255);
}

.expanding-btn .square2 .circle2 {
    width: 20px;
    height: 20px;
    border-radius: 74% 26% 0% 100% / 100% 0% 100% 0%;
    background-color: #f4e7e5;
}

@media only screen and (max-width: 700px) {
    body {
        height: 100vh;
        max-height: 100%;
    }

    .spectacledcoder-expanding-cards-container {
        margin: auto;
        width: 80%;
        height: 400px;
        flex-direction: column;
        padding-left: 0px;
    }

    .spectacledcoder-cards {
        margin: auto;
        flex-direction: column;
        justify-content: start;
        margin-top: 50px;
    }

    .spectacledcoder-cards .card {
        border-top: 1px solid #ffd399;
        zoom: 0.6;
    }

    .spectacledcoder-cards .card:first-child {
        background-color: #311113;
        ;
        background-image: url("https://img.icons8.com/fluency/48/submit-document.png");
        background-position: right 20px bottom 20px;
        background-size: 70px;
        background-repeat: no-repeat;
        margin-left: 0px;
        margin-top: 20%;
    }

    .spectacledcoder-cards .card:nth-child(2) {
        background-color: #311113;
        ;
        margin-top: 50px;
        background-image: url("https://img.icons8.com/fluency/48/approval.png");
        background-position: right 20px bottom 20px;
        background-size: 70px;
        background-repeat: no-repeat;
        margin-left: 0px;
    }

    .spectacledcoder-cards .card:nth-child(3) {
        background-color: #311113;
        ;
        margin-top: 100px;
        background-image: url("https://img.icons8.com/fluency/48/edit-property.png");
        background-position: right 20px bottom 20px;
        background-size: 70px;
        background-repeat: no-repeat;
        margin-left: 0px;
    }

    .spectacledcoder-cards .card:last-child {
        background-color: #311113;
        ;
        margin-top: 150px;
        background-image: url("https://img.icons8.com/fluency/48/calendar.png");
        background-position: right 20px bottom 20px;
        background-size: 70px;
        background-repeat: no-repeat;
        margin-left: 0px;
    }

    .expanding-btn {
        width: 100px;
        height: 100px;
        flex-direction: row;
        margin: auto !important;
    }

    .expanding-btn .square1 {
        margin: auto;
        margin-bottom: -20px;
        margin-right: -5px;
    }

    .expanding-btn .square1 .circle1 {
        width: 20px;
        height: 20px;
        border-radius: 0% 100% 0% 100% / 100% 74% 26% 0%;
        background-color: rgba(255, 179, 26, 0.489);
    }

    .expand-btn-container {
        margin: auto;
        margin-bottom: -30px;
    }

    .expand-btn-container img {
        margin: auto;
        rotate: 90deg;
        margin-bottom: 5px;
        z-index: 150;
    }

    .expanding-btn .square2 {
        margin: auto;
        margin-left: -5px;
        margin-bottom: -20px;
    }

    .expanding-btn .square2 .circle2 {
        width: 20px;
        height: 20px;
        border-radius: 100% 0% 100% 0% / 74% 100% 0% 26%;
        background-color: rgba(255, 60, 26, 0.49);
    }

    .disclaimer {
        top: 0;
    }
}

.disclaimer {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin-left: auto;
    right: 0;
    margin-right: auto;
    width: fit-content;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'Belanosima', sans-serif;
}

.disclaimer a {
    text-decoration: none;
    color: #202020;
    font-weight: 900;
}

.disclaimer a:hover {
    text-decoration: overline;
}

.news .container {
    position: relative;
    z-index: 2;
}

.news-heading {
    margin-bottom: 35px;
}

/* ----------------------------------member css---------------------------- */
.chief-guests {
    position: relative;
    padding: 50px 0;
    background-color: white;
    overflow: hidden;
}

.speaker-card {
    background: #f5f3f3;
    border-radius: 30px;
    padding: 35px 20px 75px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 0, 0, 0.08);
}

.speaker-card:hover {
    transform: translateY(-8px);
}

.speaker-img {
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
}

.speaker-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.speaker-content {
    margin-top: 18px;
}

.speaker-name {
    color: #120909;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.speaker-role {
    color: #120909;
    font-size: 16px;
    margin: 0;
}

.speaker-country {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    background: linear-gradient(135deg, #ff0000, #b30000);
    border-radius: 50px;
    padding: 10px 10px 10px 12px;
    color: white;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    justify-content: flex-start;
}

.flag-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flag-box img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.speaker-country span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ---------------------------proceeding section-------------------------------- */
.custom-indexing {
    overflow: hidden;
    font-family: "Roboto", serif;
    background: linear-gradient(135deg, #e18787, #f5f3f7);
    position: relative;
}

.custom-carousel {
    position: relative;
    z-index: 1;
    height: 80vh;
    overflow: hidden;
    pointer-events: none;
}

.custom-carousel-item {
    --items: 10;
    --width: clamp(120px, 22vw, 220px);
    --height: clamp(100px, 30vw, 300px);
    --x: calc(var(--active) * 800%);
    --y: calc(var(--active) * 200%);
    --rot: calc(var(--active) * 120deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 10px;
    top: 50%;
    left: 50%;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.5);
    background: black;
    pointer-events: all;
    transform: translate(var(--x), var(--y)) rotate(var(--rot));
    transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.custom-carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    opacity: var(--opacity);
    font-family: "Orelo-sw-db", serif;
}

.custom-carousel-box::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.5));
}

.custom-title {
    position: absolute;
    z-index: 2;
    color: #fff;
    bottom: 20px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 3vw, 30px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.custom-num {
    position: absolute;
    z-index: 2;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 4vw, 40px);
}

.custom-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.blink-icon {
    color: #fff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.custom-cursor {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
    transition: transform 0.85s cubic-bezier(0, 0.02, 0, 1);
    display: none;
    pointer-events: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

.custom-cursor2 {
    --size: 2px;
    transition-duration: 0.7s;
}

/* ----------------------------countdown css------------------------ */
/* =========================
    COUNTDOWN SECTION
========================= */

.conference-countdown {
    position: relative;
    padding: 45px 0;
    background: #f8f9fb;
    overflow: hidden;
}

/* LIGHT SHAPE */

.conference-countdown::before {
    content: "";
    position: absolute;

    top: -120px;
    right: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(193, 18, 31, 0.05);
}

/* =========================
    WRAPPER
========================= */

.countdown-wrapper {
    position: relative;
    z-index: 2;

    background: linear-gradient(135deg,
            #ffffff,
            #fff4f4);

    border-radius: 24px;

    padding: 28px 32px;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* =========================
    CONTENT
========================= */

.countdown-content {
    max-width: 320px;
}

/* BADGE */

.countdown-badge {
    display: inline-block;

    background: rgba(193, 18, 31, 0.08);

    color: #c1121f;

    padding: 7px 14px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 12px;
}

/* TITLE */

.countdown-content h2 {
    font-size: 28px;
    font-weight: 800;

    line-height: 1.3;

    color: #111;

    margin-bottom: 10px;
}

/* TEXT */

.countdown-content p {
    font-size: 13px;
    line-height: 1.7;

    color: #666;

    margin-bottom: 0;
}

/* =========================
    TIMER
========================= */

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* COUNT BOX */

.countdown-box {
    width: 92px;
    height: 92px;

    border-radius: 20px;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);

    position: relative;

    transition: 0.3s ease;

    overflow: hidden;
}

/* TOP RED LINE */

.countdown-box::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(to right,
            #ff1d25,
            #d60000);

    border-radius: 20px 20px 0 0;
}

.countdown-box:hover {
    transform: translateY(-4px);
}

/* NUMBER */

.count-number {
    font-size: 28px;
    font-weight: 800;

    color: #c1121f;

    line-height: 1;

    margin-bottom: 6px;
}

/* TEXT */

.count-text {
    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: #666;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px) {

    .countdown-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .countdown-content {
        max-width: 100%;
    }
}

@media(max-width:767px) {

    .conference-countdown {
        padding: 35px 0;
    }

    .countdown-wrapper {
        padding: 22px;
        border-radius: 20px;
    }

    .countdown-content h2 {
        font-size: 22px;
    }

    .countdown-content p {
        font-size: 12px;
    }

    .countdown-timer {
        width: 100%;
        flex-wrap: wrap;
    }

    .countdown-box {
        width: calc(50% - 7px);
        height: 85px;
    }

    .count-number {
        font-size: 24px;
    }
}