:root {
    --cyan: #36f0ff;
    --muted: #9fdfff;
    --glass: rgba(255, 255, 255, .08);
    --border: rgba(54, 240, 255, .35);
}

/* ================= BODY ================= */
body {
    margin: 0; overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: radial-gradient(circle at top, #0b2a4a, #050b1e 60%);
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 40px 12px;
    position: relative;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(5, 11, 30, .85),
            rgba(5, 11, 30, .95));
    z-index: 0;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ================= TEXT ================= */
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 10vw, 120px);
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 28px;
}

.partner-subtitle {
    font-size: clamp(28px, 3vw, 18px);
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 28px;
}

/* ================= COUNTDOWN ================= */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 28px;
}

.time-box {
    background: var(--glass);
    padding: 12px 6px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.time-box h2 {
    margin: 0;
    font-size: clamp(18px, 5vw, 30px);
    font-weight: 700;
}

.time-box span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--muted);
}

/* ================= INFO ================= */
.info-line {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 600;
    margin-bottom: 10px;
}

.info-label {
    color: var(--cyan);
}

/* ================= ORGANIZER ================= */
.org-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    margin-top: 36px;
}

.org-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px 14px;
    width: clamp(160px, 45vw, 300px);
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

/* Keep org cards aligned properly */
.org-cards {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.org-card h6 {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #888;
    margin-bottom: 10px;
}

.org-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ================= BUTTON ================= */
.btn-register {
    margin-top: 30px;
    padding: 14px 44px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #00131d;
    background: linear-gradient(90deg, #22e6ff, #00b4ff);
    border: none;
    box-shadow: 0 0 35px rgba(34, 230, 255, .8);
}
/* ================= HERO IMAGE ================= */
.hero-image {
    max-width: 700px;
    margin: 0 auto 22px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

/* Mobile spacing */
@media (max-width: 576px) {
    .hero-image {
        max-width: 100%;
        margin-bottom: 18px;
    }
}

.section-heading {
    margin-top: 15px;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--muted);
}

/* ================= MINI CARDS ================= */
.mini-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, #0f3c5f 0%, transparent 40%),
        radial-gradient(circle at bottom right, #051937 0%, transparent 45%),
        linear-gradient(135deg, #050b1e 0%, #081a2f 45%, #020617 100%);
}

.mini-card {
    padding: 20px 18px;
    border-radius: 18px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    text-align: center;
    transition: .45s ease;
    transform-style: preserve-3d; min-height: 165px;
}

.mini-card:hover {
    transform: rotateZ(2deg) rotateX(-4deg) rotateY(6deg) translateY(-6px);
    box-shadow: 0 0 30px rgba(54, 240, 255, .35);
}

.mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}

.mini-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #bffaff;
}

.mini-text {
    font-size: 13px;
    opacity: .85;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 0;
}

/* Glass Card Base */
.glass-card {
    padding: 30px 20px;
    border-radius: 18px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    transition: .45s ease;
    transform-style: preserve-3d;
}

/* ================= QR CARD ================= */
.qr-img {
    width: 150px;
    height: 150px;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 22px;
}

.qr-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #ffffff;
}

.qr-subtitle {
    font-size: 14px;
    color: #ccefff;
    opacity: .9;
}
/* ================= QUERY CARD ================= */

/* Card */
.query-card {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 28px;
}

/* Badge */
.query-badge {
  display: inline-block;
  background: linear-gradient(90deg, #22e6ff, #00b4ff);
  color: #0b2a4a;
  padding: 8px 24px;
  border-radius: 30px;
  box-shadow: 0 0 35px rgba(34, 230, 255, 0.4);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

/* ================= QUERY ITEM ================= */

/* Desktop / Tablet → one line */
.query-item.one-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 0;
  text-align: center;
}

/* Name */
.query-item.one-line h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  white-space: nowrap;
}

/* Phone */
.query-item.one-line a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #9fdfff;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

/* Icon */
.query-item.one-line a i {
  font-size: 16px;
  color: #36f0ff;
}

/* Hover */
.query-item.one-line a:hover {
  color: #36f0ff;
}

/* Minimal gap between entries */
.query-item.one-line + .query-item.one-line {
  margin-top: 4px;
}
/* EVENT STARTED TEXT */
.event-started-text {
    display: none;
    text-align: center;
    margin-top: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    color: #22e6ff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: eventPop 1.2s ease-out forwards;
}

/* ANIMATION */
@keyframes eventPop {
    0% {
        opacity: 0;
        transform: scale(0.6);
        text-shadow: 0 0 0 rgba(34, 230, 255, 0);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
        text-shadow: 0 0 25px rgba(34, 230, 255, 1);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(34, 230, 255, 0.8);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .event-started-text {
        font-size: 30px;
    }
}

/* ================= MOBILE BREAK ================= */
@media (max-width: 576px) {
  .query-item.one-line {
    flex-direction: column;
    gap: 4px;
  }

  .query-item.one-line h5,
  .query-item.one-line a {
    white-space: normal;
  }
}


/* Mobile behavior */
@media (max-width: 576px) {
  .query-card {
    width: 100%;              /* full width on mobile */
    padding: 20px;
  }

  .query-item {
    white-space: normal;      /* allow wrap on small screens */
  }
}

.itpp-group-section {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #36f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

/* White Card */
.logo-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Image */
.logo-card img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
}

/* Hover */
.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(54, 240, 255, .45);
}

/* Center last 2 logos */
.logo-row-center {
    grid-column: 1 / -1;
    /* span full grid */
    display: flex;
    justify-content: center;
    gap: 22px;
}


/* ================= APPENDIX SECTION ================= */
.appendix-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, #0f3c5f 0%, transparent 45%),
    linear-gradient(180deg, #050b1e, #020617);
}

.appendix-pills {margin-top: 10px !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.appendix-section .section-title {
  margin-bottom: 20px !important;
}


/* Pills */
.appendix-pill {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;

  color: var(--cyan);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);

  cursor: pointer;
  transition: all .35s ease;
}

.appendix-pill:hover {
  background: rgba(54,240,255,.18);
  box-shadow: 0 0 25px rgba(54,240,255,.5);
  transform: translateY(-2px);
}

/* ================= MODAL STYLING ================= */
.appendix-modal {
  background: rgba(10,15,35,.85);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  border: 1px solid var(--border);
  color: #e6faff;
}

/* Header */
.appendix-modal .modal-header {
  border-bottom: 1px solid rgba(54,240,255,.25);
}

.appendix-modal .modal-title {
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body */
.appendix-content {
  font-size: 14px;
  line-height: 1.7;
  color: #ccefff;
}

/* Scrollbar */
.appendix-content::-webkit-scrollbar {
  width: 6px;
}
.appendix-content::-webkit-scrollbar-thumb {
  background: rgba(54,240,255,.4);
  border-radius: 10px;
}
/* ===== Modal Gallery Scrollbar ===== */

.modal-dark .modal-body{
  max-height: 75vh;
  overflow-y: auto;
  padding-right: 8px; /* space for scrollbar */
}

/* Chrome, Edge, Safari */
.modal-dark .modal-body::-webkit-scrollbar{
  width:6px;
}

.modal-dark .modal-body::-webkit-scrollbar-thumb{
  background: rgba(54,240,255,.4);
  border-radius:10px;
}

.modal-dark .modal-body::-webkit-scrollbar-track{
  background: transparent;
}

/* Firefox */
.modal-dark .modal-body{
  scrollbar-width: thin;
  scrollbar-color: rgba(54,240,255,.4) transparent;
}
.winner-modal-text{
  text-align:center;
  margin-top:10px;
}

.winner-position{
  font-size:15px;
  font-weight:700;
  color:#22e6ff;
  letter-spacing:.6px;
}

.winner-team{
  font-size:14px;
  color:#ffffff;
  margin-top:2px;
}




.countdown { display: none; }
    #eventStarted { display: none; }

/* ===============================
   FLOATING CHAT TRIGGER
================================ */
.floating-chat-trigger {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #dff7ff;
  z-index: 1000;

  background: rgba(34,230,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(34,230,255,.35);

  box-shadow:
    0 0 25px rgba(34,230,255,.45),
    inset 0 0 10px rgba(255,255,255,.05);

  animation: chatPulse 2.8s infinite;
}

@keyframes chatPulse {
  0%,100% { box-shadow: 0 0 20px rgba(34,230,255,.35); }
  50% { box-shadow: 0 0 45px rgba(34,230,255,.75); }
}

/* ===============================
   CHAT CONTAINER
================================ */
.chat-container {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 380px;
  height: 540px;

  display: none;
  flex-direction: column;

  background: rgba(10,15,35,.78);
  backdrop-filter: blur(22px);
  border-radius: 26px;
  border: 1px solid rgba(34,230,255,.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 90px rgba(34,230,255,.18);

  transform: translateY(30px) scale(.95);
  opacity: 0;
  transition: all .45s cubic-bezier(.4,0,.2,1);
  z-index: 1001;
}

.chat-container.active {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===============================
   CHAT HEADER
================================ */
.chat-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(34,230,255,.2);
}

.chat-header-left {
  display: flex;
  gap: 12px;
}

.bot-avatar img {

  width: 100%;
  height: 40px;
  object-fit: cover;
}

.bot-name {
  color: #22e6ff;
  font-weight: 600;
}

.bot-status {
  font-size: 12px;
  color: #00ff88;
}

.chat-close {
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
}

/* ===============================
   CHAT BODY
================================ */
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.chat-row {
  margin-bottom: 14px;
  animation: msgIn .35s ease-out;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-row.bot .chat-bubble {
  background: rgba(34,230,255,.1);
  border: 1px solid rgba(34,230,255,.25);
  color: #e6faff;
}

.chat-row.user {
  text-align: right;
}

.chat-row.user .chat-bubble {
  background: linear-gradient(135deg,
    rgba(34,230,255,.35),
    rgba(34,230,255,.15));
  color: #fff;
}

.chat-bubble {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  font-size: 14px;
}

/* ===============================
   TYPING INDICATOR
================================ */
/* ===============================
   TYPING INDICATOR (DOTS ONLY)
================================ */
.typing {
  background: rgba(34,230,255,.08);
  border: 1px solid rgba(34,230,255,.25);
  padding: 10px 16px;
  border-radius: 18px;
  width: fit-content;
}

.typing-dots {
  display: flex;
  gap: 6px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  background: #22e6ff;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  opacity: .5;
}

.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes typingDot {
  0%,100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-6px); opacity: 1; }
}

/* ===============================
   QUICK ACTIONS
================================ */
.chat-actions {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}

.chat-actions button {
  background: rgba(34,230,255,.12);
  border: 1px solid rgba(34,230,255,.35);
  color: #22e6ff;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
}

.chat-actions button:hover {
  background: rgba(34,230,255,.25);
}

/* ===============================
   CHAT INPUT
================================ */
.chat-input {
  padding: 14px;
  border-top: 1px solid rgba(34,230,255,.2);
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(34,230,255,.35);
  border-radius: 22px;
  padding: 10px 14px;
  color: #fff;
}

.chat-input button {
  background: none;
  border: none;
  color: #22e6ff;
  font-size: 18px;
  cursor: pointer;
}
/* ===============================
   CHAT SCROLLBAR
================================ */
.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: rgba(255,255,255,.02);
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(34,230,255,.35);
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(34,230,255,.6);
}
.chat-actions {
  overflow-x: auto;
  white-space: nowrap;
}

/* Scrollbar height (horizontal) */
.chat-actions::-webkit-scrollbar {
  height: 6px;
}

/* Scrollbar track */
.chat-actions::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

/* Scrollbar thumb */
.chat-actions::-webkit-scrollbar-thumb {
  background: rgba(34, 230, 255, 0.35);
  border-radius: 10px;
}

/* Hover effect */
.chat-actions::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 230, 255, 0.6);
}

/* ========= 03.02.2026 =========== */
 
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.45) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px;
    opacity: 0;
    transition: opacity .4s ease;
}



        .modal-dark{
background: rgba(10,15,35,.85);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  border: 1px solid var(--border);
  color: #e6faff;
}
/* ================= GALLERY CARD WRAPPER ================= */

.gallery-card-wrapper{
  background:#0b1e33;
  border-radius:6px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  transition:transform .35s ease, box-shadow .35s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.gallery-card-wrapper:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}


/* ================= CAROUSEL IMAGE AREA ================= */

.gallery-carousel{
  overflow:hidden;
  position:relative;
  flex-shrink:0;
}

/* Smooth cinematic zoom */
.gallery-carousel img{
  width:100%;
  height: 100%;
  object-fit:cover;

  transform:scale(1);
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Zoom when hovering card */
.gallery-card-wrapper:hover .gallery-carousel img{
  transform:scale(1.12);
}


/* ================= BOTTOM INFO BAR ================= */

.gallery-info-bar{
  background:#071426;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
}

.gallery-title-text{
  color:#ffffff;
  font-weight:600;
  letter-spacing:1px;
  font-size:14px;
}

.open-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid #22e6ff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#22e6ff;
  font-size:14px;
  transition:.3s ease;
}

.gallery-card-wrapper:hover .open-icon{
  background:#22e6ff;
  color:#071426;
}


/* ================= MODAL GALLERY GRID ================= */

.gallery-card{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  height:220px;
}

/* Smooth zoom in modal */
.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;

  transform:scale(1);
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.gallery-card:hover img{
  transform:scale(1.12);
}


/* ================= OVERLAY IN MODAL ================= */

.img-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
  display:flex;
  align-items:flex-end;
  padding:16px;
  opacity:0;
  transition:opacity .4s ease;
}

.gallery-card:hover .img-overlay{
  opacity:1;
}

.img-overlay span{
  color:#fff;
  font-size:14px;
  letter-spacing:.5px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .gallery-carousel,
  .gallery-carousel img,
  .gallery-card,
  .gallery-card img{
    height:180px;
  }

  .gallery-title-text{
    font-size:13px;
  }
}




/* 03.02.2026 */

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .appendix-pill {
    width: 100%;
    text-align: center;
  }

}

/* Maintain same width as grid items */
.logo-row-center .logo-card {
    width: calc((100% - (5 * 22px)) / 6);
}
/* ================= FOOTER ================= */
.site-footer{
  padding:0px 0 40px;
  background:
    linear-gradient(
      180deg,
      rgba(5,11,30,0) 0%,
      rgba(5,11,30,0.9) 40%,
      #020617 100%
    );
}

.footer-card{
  text-align:center;
  padding:34px 22px;
  border-radius:20px;
  background:var(--glass);
  backdrop-filter:blur(16px);
  border:1px solid var(--border);
  box-shadow:0 0 40px rgba(54,240,255,.15);
}

.footer-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(28px,5vw,40px);
  letter-spacing:2px;
  margin-bottom:10px;
  background:linear-gradient(90deg,#ffffff,#36f0ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-text{
  font-size:15px;
  color:#ccefff;
  margin-bottom:18px;
}

.footer-link{
  color:#36f0ff;
  font-weight:600;
  text-decoration:none;
  position:relative;
  transition:.3s ease;
}

.footer-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#22e6ff,#00b4ff);
  transition:.3s ease;
}

.footer-link:hover{
  color:#ffffff;
}

.footer-link:hover::after{
  width:100%;
}

.footer-divider{
  width:70px;
  height:3px;
  background:linear-gradient(90deg,#22e6ff,#00b4ff);
  border-radius:10px;
  margin:18px auto;
}

.footer-copy{
  font-size:13px;
  color:#9fdfff;
  opacity:.85;
}
.itpp-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.itpp-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.itpp-logo img {
  width: 100%;
  max-width: 420px;   /* Desktop */
  height: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .itpp-logo img {
    max-width: 360px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .itpp-logo img {
    max-width: 260px;
  }
}

/* Tablet */
@media(max-width:992px) {
    .logo-row-center .logo-card {
        width: calc((100% - (3 * 22px)) / 4);
    }
}

/* Mobile */
@media(max-width:576px) {
    .logo-row-center {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .logo-row-center .logo-card {
        width: 100%;
    }
    .btn-register {    padding: 8px 36px;

}
}

/* Tablet */
@media(max-width:992px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media(max-width:576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .contact-section {
        padding: 60px 0;
    }

    .qr-img {
        width: 130px;
        height: 130px;
    }
}

/* Mobile safety */
@media(max-width:768px) {
    .mini-card:hover {
        transform: translateY(-4px);
    }

    .query-card {
        text-align: center;
    }
    .partner-subtitle {
    font-size: clamp(22px, 3vw, 18px);
}
}


/* ===============================
   RESPONSIVE CHAT FIX
================================ */

/* ---------- TABLET ---------- */
@media (max-width: 991px) {
  .chat-container {
    width: 90vw;
    height: 70vh;
    right: 5vw;
    bottom: 120px;
    border-radius: 22px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {

  /* Floating trigger stays visible */
  .floating-chat-trigger {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 12px;
  }

  /* Fullscreen chat */
  .chat-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh; /* mobile safe height */
    right: 0;
    bottom: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: transform .35s ease;
  }

  .chat-container.active {
    transform: translateY(0);
  }

  /* Header compact */
  .chat-header {
    padding: 12px 14px;
  }

  .bot-name {
    font-size: 14px;
  }

  .bot-status {
    font-size: 11px;
  }

  /* Body scroll fix */
  .chat-body {
    padding: 14px;
    overscroll-behavior: contain;
  }

  /* Bubbles wider */
  .chat-bubble {
    max-width: 92%;
    font-size: 13px;
  }

  /* Quick actions – bottom safe */
  .chat-actions {
    padding: 8px 10px;
  }

  .chat-actions button {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Input always visible */
  .chat-input {
    padding: 10px;
    gap: 8px;
  }

  .chat-input input {
    font-size: 14px;
    padding: 10px 12px;
  }

  .chat-input button {
    font-size: 20px;
  }
}

/* ---------- SMALL DEVICES (≤ 360px) ---------- */
@media (max-width: 360px) {
  .chat-actions button {
    font-size: 11px;
    padding: 5px 10px;
  }

  .chat-bubble {
    font-size: 12px;
  }
}
