body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
}

/* চ্যাটবট র্যাপার ও বাটন পজিশন */
.chatbot-wrapper {
  position: fixed;
  bottom: 100px; /* WhatsApp বাটন থেকে উপরে রাখার জন্য (WhatsApp সাধারণত bottom: 20px বা 30px এ থাকে) */
  right: 20px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-toggle-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1d9bf0, #00ffcc);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.chatbot-toggle-btn:hover {
  transform: scale(1.1);
}

/* চ্যাটবট উইন্ডো */
.chatbot-window {
  display: none; /* শুরুতে বন্ধ থাকবে */
  width: 330px;
  height: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  position: absolute;
  bottom: 80px;
  right: 0;
  flex-direction: column;
  overflow: hidden;
}

/* চ্যাটবট হেডার */
.chatbot-header {
  background: #0a1f3d;
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bot-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bot-img {
  font-size: 20px;
  background: rgba(255,255,255,0.1);
  padding: 5px;
  border-radius: 50%;
}
.text-success-light {
  color: #00ffcc;
  font-size: 11px;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* চ্যাটবট বডি ও মেসেজ বাবল */
.chatbot-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fa;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.4;
}
.bot-msg {
  background: #e9ecef;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.user-msg {
  background: #1d9bf0;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* সাজেস্টেড বাটনস */
.suggested-ques {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}
.suggested-ques button {
  background: white;
  border: 1px solid #1d9bf0;
  color: #1d9bf0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.suggested-ques button:hover {
  background: #1d9bf0;
  color: white;
}

/* চ্যাটবট ফুটার (ইনপুট ফিল্ড) */
.chatbot-footer {
  padding: 10px;
  background: white;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
}
.chatbot-footer input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 20px;
  outline: none;
  font-size: 13px;
}
.chatbot-footer button {
  background: #1d9bf0;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
}

/* NAVBAR */
.custom-navbar {
  background: #ffffff;
  height: 75px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  padding: 0;
}

/* BRAND */
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  height: 75px;
  padding: 0;
  margin: 0;
}

/* FULL HEIGHT LOGO */
.logo-img{
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}
.profile-avatar{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    font-weight:700;
    font-family:'Poppins', sans-serif;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.avatar-1{
    background:linear-gradient(135deg,#2563eb,#1e3a8a);
}

/* CARD 2 */
.avatar-2{
    background:linear-gradient(135deg,#0ea5e9,#1e40af);
}

/* CARD 3 */
.avatar-3{
    background:linear-gradient(135deg,#1d4ed8,#172554);
}

/* CARD 4 */
.avatar-4{
    background:linear-gradient(135deg,#3b82f6,#0f172a);
}

/* TEXT WRAPPER */
.brand-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  margin-left: -16px;
}

/* TRUSTLYTICS */
.brand-text strong{
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

/* CONSULTING */
.brand-text small{
  font-size: 13px;
  letter-spacing: 3px;
  color: #9ca3af;
  margin-top: 2px;
  margin-left: 5px;
}

.navbar > .container{
  height: 75px;
}
.nav-link {
   position: relative;
  font-size: 14px;
  color: #374151;
  margin: 0 10px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link.active {
  background: linear-gradient(135deg, #1d9bf0, #4dabf7);
  color: #fff !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(29,155,240,0.3);
}
.nav-link.active:hover {
  background: #1d9bf0;
  color: #fff !important;
  /* padding: 6px 14px; */
  border-radius: 8px;
}

.nav-link:hover{
  background: rgba(29, 155, 240, 0.1);
  color: #1d9bf0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(29,155,240,0.2);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #1d9bf0;
  transition: 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 60%;
}


.demo-btn {
  background: #1d9bf0;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.demo-btn:hover{
  background-color: #1d9bf0;
  color: white;
}
/* HERO */
.hero-modern {
  background: radial-gradient(circle at top,#0d2f66,#081c3a);
  color: white;
  overflow: hidden;
  position: relative;
  padding: 140px 0 10px; /* increase bottom space */
  /* overflow: hidden; */
  z-index: 1;
}
.hero-modern::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 350px;
  height: 350px;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 3px);

  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;

  opacity: 0.4;
  pointer-events: none;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
.left{
  margin-top: -60px;
}
.left p{
  width: 90%;
}
.hero-modern h1 {
  font-size: 2.5rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.hero-modern span {
  color: #2ea3ff;
}

.hero-btns .btn {
  margin-right: 10px;
}

/* RIGHT SIDE */
.hero-right {
  display: flex;
  justify-content: center;
}

/* MAIN WRAPPER */
.hero-layout {
  position: relative;
  width: 490px;
  margin-left: -40px;
  min-height: 420px;
}

/* MAIN DASHBOARD */
.main-dashboard {
  background: #fff;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 35px 30px;
  min-height: 320px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 12px;   /* ðŸ‘ˆ CLEAN spacing instead of space-between */
}

/* BADGE */
.dash-badge {
  display: inline-block;
  background: rgba(46,163,255,0.1);
  color: #2ea3ff;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* TITLE */
.dash-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.dash-title span {
  background: linear-gradient(90deg, #2ea3ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MODERN FEATURES */
.features-modern {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* FEATURE PILL */
.feature-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.03);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.feature-pill i {
  color: #2ea3ff;
  font-size: 12px;
}

/* HOVER EFFECT */
.feature-pill:hover {
  background: linear-gradient(135deg, #2ea3ff, #00e5ff);
  color: #fff;
  transform: translateY(-2px);
}

.feature-pill:hover i {
  color: #fff;
}

/* TEXT */
.main-dashboard h3 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #000;
  width: 80%;
}

.main-dashboard .sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
  width: 60%;
}

.mockup-header {
    background: #1d9bf0;
    /* width: 100%; */
    padding: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    gap: 6px;
    /* margin-top: -33px; */
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

/* BUTTON */
.start-btn {
  width: 33%;
  display: inline-block;
  padding: 6px 14px;
  background: #2ea3ff;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 15px;
}

/* FEATURES */
.features {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #333;
}

.features i {
  margin-right: 5px;
  color: #2ea3ff;
}

/* IMAGE (SLIGHT RIGHT, NOT FULL) */
.hero-img {
  height: 480px;
  position: absolute;
  width: 360px;
  bottom: -10px;  /* ðŸ‘ˆ pushes it slightly outside dashboard */
  right: -60px;     /* ðŸ‘ˆ closer to edge */

  z-index: 2;
}

/* SIDE CARDS (VERY CLOSE) */
.side-cards {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;

  justify-content: center; /* ensures equal alignment */
}

/* MINI CARDS */
.mini-card {
  color: black;
  width: 150px;
  height: 140px; 
  /* padding: 10px; */
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-size: 8px;
}
.mini-card h4,h5,h3{
  font-size: 15px;
}
#performanceChart {
  height: 20px !important;
}
#miniChart {
  height: 20px !important;
}
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
}
.icon-circle span{
  font-size: 20px;
}
/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {

  .hero-layout {
    width: 100%;
    margin-left: 0;
  }

  .hero-img {
    height: 420px;
    width: 230px;
  }

  .side-cards {
    right: -80px;
  }

  .main-dashboard h3,
  .main-dashboard .sub {
    width: 80%;
  }

  .start-btn {
    width: auto;
  }
}

/* Small tablets / large phones (<= 768px) */
@media (max-width: 768px) {

  .hero-modern {
    padding: 100px 0 40px;
    text-align: center;
  }

  .left {
    margin-top: 0;
  }

  .left p {
    width: 100%;
  }

  .hero-layout {
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-right {
    justify-content: center;
  }

  .main-dashboard {
    width: 100%;
    padding: 25px;
  }

  .main-dashboard h3,
  .main-dashboard .sub {
    width: 100%;
  }

  .features-modern {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-img {
    position: relative;
    width: 200px;
    height: auto;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }

  .side-cards {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .mini-card {
    width: 120px;
    height: 150px;
    font-size: 11px;
    padding: 8px;
  }

  .mini-card h4,
  .mini-card h5 {
    font-size: 14px;   /* reduce heading size */
  }

  .mini-card p {
    font-size: 11px;   /* if you have text inside */
  }
.mini-card h6 {
    font-size: 12px;
  }
  #performanceChart,
  #miniChart {
    height: 20px !important;
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {

  .hero-modern h1 {
    font-size: 26px;
  }

  .hero-btns .btn {
    margin-bottom: 10px;
  }

  .main-dashboard {
    padding: 18px;
  }

  .dash-title {
    font-size: 18px;
  }

  .feature-pill {
    font-size: 11px;
    padding: 5px 10px;
  }

  .mini-card {
    width: 100px;
    height: 150px;
    font-size: 10px;
    padding: 6px;
  }

  .mini-card h4,
  .mini-card h5 {
    font-size: 12px;
  }
.mini-card h6 {
    font-size: 12px;
  }
  .mini-card p {
    font-size: 10px;
  }

  #performanceChart,
  #miniChart {
    height: 15px !important;
  }

  .hero-img {
    width: 180px;
  }
}


/* SECTION */
.team-chart-section {
  padding: 30px 0;
  background: radial-gradient(circle at top,#081c3a,#0d2f66);
  color: #fff;
}

/* HEADING */
.team-chart-section h2 {
  font-weight: 600;
  font-size: 28px;
}

.team-chart-section .sub-text {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 5px;
}

/* KPI CARDS */
.kpi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px;
  transition: 0.3s;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.kpi-card h6 {
  font-size: 12px;
  color: #94a3b8;
}

.kpi-card h3 {
  font-size: 20px;
  margin-top: 5px;
  font-weight: 600;
}

/* RANKING BOX */
.ranking-box {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 15px;
  max-width: 400px;
  margin: auto;
}

.ranking-box h5 {
  font-size: 15px;
  margin-bottom: 10px;
}

.ranking-box ol {
  padding-left: 18px;
  text-align: left;
}

.ranking-box li {
  font-size: 13px;
  margin-bottom: 5px;
  color: #cbd5f5;
}

/* DROPDOWN */
#employeeSelect {
  background: white;
  color: black;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
}

/* CHART BOX */
/* CHART BOX - AUTO FIT */
.team-chart-section .team-dashboard-box {
  margin-top: 20px;
  width: 100%;
  max-width: 650px;

  margin-left: auto;
  margin-right: auto;

  background: rgba(255,255,255,0.03);
  border-radius: 15px;
  padding: 12px 15px;
  backdrop-filter: blur(15px);
}

/* CANVAS - CONTROL SIZE */
#teamChart {
  width: 100% !important;
  height: 180px !important;  /* âœ… SMALL & PERFECT */
}




.hero-solutions-section{
  padding: 80px 0;
  background: #f8fbff;
}

.section-subtitle{
  color: #2ea3ff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-title{
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

.section-desc{
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
}

/* CARD */
.solution-card{
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
}

.solution-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON */
.icon-box{
  width: 55px;
  height: 55px;
  background: #0d2b5c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.solution-card h5{
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-card p{
  font-size: 14px;
  color: #666;
}

.solution-card ul{
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.solution-card ul li{
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

/* IMAGE BOX */
.image-box {
  position: relative;
  border-radius: 14px;
  overflow: visible; /* allow cards outside */
}

.image-box img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* ðŸ”¥ 98% TOP RIGHT (exact like screenshot) */
.card-98 {
  position: absolute;
  top: -10px;
  right: -20px;
  background: #f9fafb;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  min-width: 140px;
}

.card-98 h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #10b981;
}

.card-98 p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* ðŸ”¥ +40% BOTTOM LEFT (exact like screenshot) */
.card-40 {
  position: absolute;
  bottom: -35px;
  left: -17px;
  background: #f9fafb;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  min-width: 150px;
}

.card-40 h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1d9bf0;
}

.card-40 p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 9999;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero {
    padding: 110px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    margin: 15px auto;
  }

  .image-box {
    margin-top: 30px;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

/* SIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MENU CONTENT */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.close-menu {
  font-size: 24px;
  color: #111;   /* make it visible */
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.mobile-menu ul li {
  padding: 12px;
  font-size: 16px;
  color: #374151;
}

.mobile-menu {
  z-index: 9999;   /* increase */
}

.mobile-menu ul li.active {
  background: #1d9bf0;
  color: #fff;
  border-radius: 8px;
}

.menu-btn {
  background: #1d9bf0;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}

/* HIDE DEFAULT MENU IN MOBILE */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
  a{
    text-decoration: none;
  }
}
/* WHY SECTION */
.why-section {
  padding: 40px 0;
  background: #f9fafb;
}

.why-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.sub-text {
  margin-top: 10px;
  color: #6b7280;
  font-size: 16px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card i {
  font-size: 28px;
  color: #1d9bf0;
  margin-bottom: 15px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.why-card:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}

/* SECTION */
.industry-section {
  padding: 40px 0;
  background: #ffffff;
}

.industry-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.industry-section .sub-text {
  color: #6b7280;
  margin-top: 10px;
}

/* BOX */
.industry-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 15px;
  border: 1px solid lightgrey;
}

/* HEADER */
.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

/* ICON */
.toggle-icon {
  transition: 0.3s;
}

/* CONTENT */
.industry-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* LIST */
.industry-content ul {
  margin-top: 15px;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 10px 20px;
}

/* custom blue bullet */
.industry-content li {
   list-style: none;
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #374151;
}

/* bullet dot */
.industry-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ACTIVE STATE */
.industry-box.active .industry-content {
  max-height: 300px;
}

.industry-box.active .toggle-icon {
  transform: rotate(180deg);
}
.industry-box:hover {
  background: #eef2ff;
}
.industry-content li:hover {
  color: black;
  transform: translateX(3px);
  transition: 0.2s;
}
@media (max-width: 576px) {
  .industry-content ul {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}

/* SECTION */
.testimonial-section {
  padding: 40px 0;
  background: #f9fafb;
}

.testimonial-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.testimonial-section .sub-text {
  color: #6b7280;
  margin-top: 10px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* REVIEW TEXT */
.review {
  font-size: 12px;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

/* TAG */
.tag {
  display: inline-block;
  margin-top: 15px;
  background: #e0f2fe;
  color: #0284c7;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* NAME */
.testimonial-card h6 {
  margin-top: 15px;
  font-weight: 500;
}

/* COMPANY + LOCATION */
.company {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.location {
  font-size: 12px;
  color: #9ca3af;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* STARS */
.stars {
  color: #facc15; /* yellow */
  margin-bottom: 10px;
}
.stars .fa-solid {
  color: #facc15; /* yellow filled stars */
}

.stars .fa-regular {
  color: #d1d5db; /* gray empty star */
}

.stars i {
  font-size: 14px;
  margin-right: 2px;
}
/* SMALL GRAY LINE */
.divider {
  width: 100%;            /* control size */
  height: 1px;
  background: #e5e7eb;    /* light gray */
  margin: 12px 0;         /* spacing */
  border-radius: 2px;
}

/* BACKGROUND ANIMATION */
.contact-section {
  background: linear-gradient(270deg, #eef4ff, #dfe9ff, #f5f9ff);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
  padding: 40px 0;
}

@keyframes gradientMove {
  0% {background-position: 0%}
  50% {background-position: 100%}
  100% {background-position: 0%}
}

/* GRADIENT TEXT */
.gradient-text {
  font-weight: 700;
  background: linear-gradient(90deg, #0d6efd, #6ea8fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GLASS EFFECT FORM */
.form-glass {
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  animation: floatBox 4s ease-in-out infinite;
}

/* FLOATING BOX ANIMATION */
@keyframes floatBox {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* INPUT GROUP */
.floating-group {
  position: relative;
  margin-bottom: 20px;
}

/* INPUT STYLE */
.floating-group input,
.floating-group textarea,
.floating-group select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.8);
  outline: none;
  transition: 0.3s;
}

/* GLOW ON FOCUS */
.floating-group input:focus,
.floating-group textarea:focus,
.floating-group select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 10px rgba(13,110,253,0.3);
}

/* LABEL */
.floating-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: transparent;
  color: #666;
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT LABEL */
.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label,
.floating-group select:focus + label,
.floating-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #0d6efd;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #0d6efd, #4f8cff);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* BUTTON HOVER */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13,110,253,0.4);
}

/* RIPPLE EFFECT */
.submit-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.submit-btn:active::after {
  width: 300px;
  height: 300px;
}

/* CTA BUTTON */
.join-btn {
  /* background: #1d9bf0; */
  color: black;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
  border: 1px solid rgb(219, 218, 218);
}

/* HOVER */
.join-btn:hover {
  background: #0d8ae5;
  color: #fff;
  transform: translateY(-2px);
}

/* ICON ANIMATION */
.join-btn i {
  transition: 0.3s;
}

.join-btn:hover i {
  transform: translateX(5px);
}
/* CTA SECTION */
.cta-section {
  background: #1d9bf0;
  padding: 60px 20px;
  color: #fff;
}

/* HEADING */
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTEXT */
.cta-section p {
  margin-top: 15px;
  font-size: 16px;
  opacity: 0.9;
}

/* BUTTON */
.cta-btn {
  margin-top: 25px;
  background: #fff;
  color: #1d9bf0;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

/* HOVER */
.cta-btn:hover {
  background: #f1f5f9;
  color: #1d9bf0;
  transform: translateY(-3px);
}

/* ICON ANIMATION */
.cta-btn i {
  transition: 0.3s;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* FOOTER */
.footer {
  background: #ffffff;
  color: #374151;
  padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.footer-logo img{
  height: 22px;   
  width: au