/* ================= BODY ================= */
body {
    background: #ffffff;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */
        .top-header {
            background: #ffffff;
            border-bottom: 5px solid #b30000;
            padding: 30px 20px;
        }

        /* FLEX CONTAINER */
        .header-content {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 1300px;
            margin: auto;
        }

        /* LOGO */
        .logo {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 160px;
            height: auto;
        }

        /* TITLE SECTION */
        .title-section {
            text-align: center;
        }

        /* COMMON TITLE STYLE */
        .title-section h1 {
            color: #b30000;
            font-size: 46px;
            margin: 0;
            font-weight: 900;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        /* ENGLISH TITLE */
        .title-section h1:first-child {
            font-family: "Arial Black", Arial, sans-serif;
            text-transform: uppercase;
        }

        /* ODIA SUBTITLE */
        .subtitle {
            font-family: "Noto Sans Oriya", "Kalinga", sans-serif;
            text-transform: none;
        }

        /* DETAILS */
        .details {
            font-size: 17px;
            margin-top: 10px;
            color: #000;
            font-weight: 700;
            line-height: 1.6;
        }

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(to right, #4a79a8, #ff4b2b); /* keep base strip */
    text-align: center;
    padding: 10px 0;
}

/* COMMON BUTTON STYLE */
.navbar a {
    display: inline-block;
    margin: 5px 6px;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

/* 🔴 RED */
.navbar a:nth-child(3n+1) {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
}

/* 🔵 BLUE */
.navbar a:nth-child(3n+2) {
    background: linear-gradient(90deg, #396afc, #2948ff);
}

/* 🟡 YELLOW */
.navbar a:nth-child(3n+3) {
    background: linear-gradient(90deg, #f7971e, #ffd200);
    color: #333;
}

/* HOVER EFFECT */
.navbar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ================= SLIDER ================= */
.slider img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ================= LAYOUT ================= */
.page-wrapper {
    width: 1000px;
    margin: 30px auto;
    background: #ffffff;
}

.main-container {
    padding: 10px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
}

/* ================= LEFT ================= */
.left-content {
    width: 70%;
}

.content-area {
    margin-top: 10px;
}

/* ================= TEAM ================= */
.team-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-card {
    width: 90px;
    text-align: center;
}

.team-card img {
    width: 90px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.team-info {
    margin-top: 5px;
}

.team-info h4 {
    font-size: 11px;
    margin: 0;
    color: #333;
}

.team-info p {
    font-size: 10px;
    margin: 0;
    color: #777;
}

/* ================= SIDEBAR ================= */
.sidebar {
    width: 30%;
    padding: 10px;
}

/* MAIN CARD */
.box {
    border-radius: 20px;
    background: linear-gradient(145deg, #fdfdfd, #e6e6e6);
    box-shadow:
        10px 10px 25px rgba(0,0,0,0.12),
        -5px -5px 15px rgba(255,255,255,0.6);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    transition: 0.3s;
}

/* GLOW BORDER */
.box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff6a00, #ffd200, #3f51b5);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ================= TITLE ================= */
.circular-title {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #1a2f5c;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
}

/* ================= LIST ================= */
.circular-list {
    padding: 12px;
}

.circular-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LIST ITEM */
.circular-list li {
    background: rgba(255,255,255,0.95);
    margin: 10px 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    cursor: pointer;
}

/* LEFT COLOR STRIP */
/*.circular-list li::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 5px;*/
/*    height: 100%;*/
/*    border-radius: 12px 0 0 12px;*/
/*    background: linear-gradient(180deg, #ff512f, #dd2476);*/
/*}*/

/* HOVER EFFECT */
.circular-list li:hover {
    transform: translateX(8px);
    background: #ffffff;
}

/* ================= FEATURE BOXES ================= */
.box.blue {
    background: rgba(255,255,255,0.95);
    color: #1a2f5c;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

/* LEFT STRIP */
/*.box.blue::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 6px;*/
/*    height: 100%;*/
/*    background: linear-gradient(180deg, #396afc, #2948ff);*/
/*}*/

/* HOVER */
.box.blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ================= ICONS ================= */
.icon {
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: #ff512f;
    transition: 0.3s;
}

/* ICON HOVER */
.circular-list li:hover .icon,
.box.blue:hover .icon {
    color: #2948ff;
    transform: scale(1.2);
}

/* REMOVE YELLOW BACKGROUND EFFECT */
.yellow {
    background: transparent;
    box-shadow: none;
}
