/* INDAM 2027 Announcement Bar */
.indam-announcement-bar{
    width:100%;
    min-height:42px;
    background:linear-gradient(90deg,#123C69,#1E5A8A,#31B46B);
    display:flex;
    align-items:center;
    overflow:hidden;
    z-index:99;
    position:relative;
    box-shadow:0 8px 20px rgba(18,60,105,.18);
}
.indam-ann-label{
    background:#F28C28;
    color:#102A43;
    font-weight:800;
    padding:12px 22px;
    text-transform:uppercase;
    white-space:nowrap;
}
.indam-ann-scroll{
    flex:1;
    overflow:hidden;
}
.indam-ann-track{
    display:inline-flex;
    gap:45px;
    white-space:nowrap;
    padding-left:100%;
    animation:indamAnnMove 30s linear infinite;
}
.indam-ann-track a{
    color:#EAF7FF;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}
.indam-ann-track a:hover{
    color:#F28C28;
}
@keyframes indamAnnMove{
    0%{transform:translateX(0);}
    100%{transform:translateX(-100%);}
}

/* INDAM 2027 Social Cards */
.indam-social-section{
    padding:70px 0;
    background:linear-gradient(180deg,#EAF7FF 0%,#F4FAFF 100%);
}
.indam-social-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.indam-social-card{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:170px;
    padding:26px;
    border-radius:22px;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(18,60,105,.14);
    transition:.25s ease;
    color:#102A43;
}
.indam-social-card:hover{
    transform:translateY(-5px);
}
.indam-social-card span{
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:12px;
}
.indam-social-card b{
    font-size:22px;
    line-height:1.35;
    margin-bottom:10px;
}
.indam-social-card small{
    font-size:14px;
    line-height:1.6;
}
.indam-social-card.instagram{
    background:linear-gradient(135deg,#FFE5F1,#FFD8A8);
}
.indam-social-card.linkedin{
    background:linear-gradient(135deg,#DFF3FF,#BFE7FF);
}
.indam-social-card.youtube{
    background:linear-gradient(135deg,#FFE7E7,#FFF3D6);
}
.indam-social-note{
    margin-top:18px;
    color:#52677A;
    font-size:14px;
}

/* Human-style Local Chatbot */
.indam-chatbot{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;
    font-family:Arial,Helvetica,sans-serif;
}
.indam-chat-toggle{
    border:0;
    border-radius:999px;
    padding:12px 20px;
    background:linear-gradient(135deg,#123C69,#1E5A8A,#31B46B);
    color:#EAF7FF;
    box-shadow:0 18px 38px rgba(18,60,105,.28);
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.2;
}
.indam-chat-toggle span{
    font-size:15px;
    font-weight:900;
}
.indam-chat-toggle small{
    font-size:11px;
    opacity:.9;
}
.indam-chat-panel{
    width:370px;
    max-width:calc(100vw - 30px);
    height:500px;
    background:#F4FAFF;
    border:1px solid #D7E8F7;
    border-radius:22px;
    box-shadow:0 24px 60px rgba(18,60,105,.25);
    overflow:hidden;
    display:none;
    margin-bottom:12px;
}
.indam-chat-panel.open{
    display:block;
}
.indam-chat-head{
    background:linear-gradient(135deg,#123C69,#1E5A8A);
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.indam-chat-head b{
    color:#EAF7FF;
    display:block;
    font-size:16px;
}
.indam-chat-head span{
    color:#DFF3FF;
    font-size:12px;
}
.indam-chat-head button{
    background:transparent;
    border:0;
    color:#EAF7FF;
    font-size:24px;
    cursor:pointer;
}
.indam-chat-body{
    height:365px;
    padding:16px;
    overflow-y:auto;
    background:#F4FAFF;
}
.bot-msg,
.user-msg{
    padding:12px 14px;
    border-radius:16px;
    margin-bottom:12px;
    line-height:1.55;
    font-size:14px;
}
.bot-msg{
    background:#FFFFFF;
    border:1px solid #D7E8F7;
    color:#102A43;
}
.bot-msg b{
    color:#123C69;
}
.bot-msg p{
    margin:0 0 8px;
}
.bot-msg ul{
    padding-left:18px;
    margin:8px 0 0;
}
.bot-msg li{
    margin-bottom:8px;
}
.bot-msg a{
    color:#123C69;
    font-weight:800;
}
.user-msg{
    background:#DFF3FF;
    color:#102A43;
    font-weight:700;
    margin-left:40px;
}
.typing-msg{
    font-style:italic;
    color:#52677A;
}
.quick-questions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}
.quick-questions button{
    border:1px solid #C8DAEA;
    background:#EAF7FF;
    color:#123C69;
    padding:8px 11px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}
.quick-questions button:hover{
    background:#DFF3FF;
}
.indam-chat-form{
    display:flex;
    padding:12px;
    gap:8px;
    border-top:1px solid #D7E8F7;
    background:#FFFFFF;
}
.indam-chat-form input{
    flex:1;
    border:1px solid #C8DAEA;
    border-radius:999px;
    padding:11px 14px;
    outline:none;
}
.indam-chat-form button{
    border:0;
    border-radius:999px;
    padding:0 16px;
    background:#31B46B;
    color:#102A43;
    font-weight:800;
    cursor:pointer;
}
@media(max-width:768px){
    .indam-social-grid{
        grid-template-columns:1fr;
    }
    .indam-announcement-bar{
        flex-direction:column;
        align-items:stretch;
    }
    .indam-ann-label{
        text-align:center;
    }
    .indam-chatbot{
        right:12px;
        bottom:12px;
    }
    .indam-chat-panel{
        height:480px;
    }
}
