/* ===============================
   GLOBAL
================================= */
body{
  font-family: 'Inter', sans-serif;
  overflow-x:hidden;
}

/* ===============================
   NAVBAR
================================= */
.navbar{
  padding:12px 0;
  background:#ffffff;
}

.navbar-brand{
  font-weight:700;
  font-size:20px;
  display:flex;
  align-items:center;
}

.circle-logo{
  width:65px;
  height:65px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid #0d6efd;
}

.navbar-toggler{
  border:0;
  box-shadow:none !important;
}

.navbar-toggler:focus{
  box-shadow:none;
}

/* ===============================
   HERO SECTION
================================= */
.hero-section{
  padding:140px 0 100px;
  background:#f8fafc;
}

.hero-title{
  font-size:52px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-text{
  font-size:18px;
  color:#64748b;
  max-width:520px;
  margin-bottom:30px;
}

.hero-btn{
  padding:14px 28px;
  font-size:16px;
  font-weight:600;
  border-radius:10px;
}

.hero-img{
  max-width:90%;
  height:auto;
}

/* ===============================
   HERO IMAGE SLIDER
================================= */
.hero-image-wrapper{
  position:relative;
  height:420px;
}

.hero-slide{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  max-height:420px;
  object-fit:contain;
  opacity:0;
  transition:opacity 1s ease-in-out, transform 4s ease-in-out;
  transform:translateY(20px);
}

.hero-slide.active{
  opacity:1;
  transform:translateY(0);
}

.hero-image-wrapper::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:radial-gradient(circle, rgba(13,110,253,0.2), transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:-1;
  filter:blur(40px);
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 991px){

  .hero-section{
    padding:100px 0 60px;
    text-align:center;
  }

  .hero-title{
    font-size:34px;
  }

  .hero-text{
    font-size:16px;
    margin:0 auto 25px;
  }

  .circle-logo{
    width:38px;
    height:38px;
  }

  .navbar-brand{
    font-size:18px;
  }

  .hero-image-wrapper{
    height:300px;
    margin-top:30px;
  }

  .hero-slide{
    max-height:300px;
  }
}

@media (max-width: 576px){

  .hero-title{
    font-size:28px;
  }

  .hero-section{
    padding:80px 0 50px;
  }

  .circle-logo{
    width:34px;
    height:34px;
  }

}
.section{
  padding:80px 0;
}
.integration-section{
  padding:100px 0;
}

.section-label{
  color:#2563eb;
  font-size:14px;
  font-weight:600;
  letter-spacing:.05em;
}

.section-title{
  font-size:40px;
  font-weight:700;
  margin:15px 0;
}

.section-desc{
  font-size:18px;
  color:#475569;
  max-width:480px;
}

.timeline{
  position:relative;
  padding-left:40px;
}

.timeline::before{
  content:'';
  position:absolute;
  left:22px;
  top:0;
  width:2px;
  height:100%;
  background:#e5e7eb;
}

.timeline-item{
  display:flex;
  gap:25px;
  margin-bottom:50px;
  position:relative;
}

.icon-box{
  width:46px;
  height:46px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.icon-box img{
  width:22px;
}

.timeline-content h5{
  font-size:18px;
  font-weight:600;
}

.timeline-content p{
  color:#475569;
  margin-top:5px;
}

.tools-section{
  padding:70px 0;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
  background:#fff;
}

.tools-label{
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  color:#64748b;
  margin-bottom:30px;
}

.tools-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

.tools-logos img{
  height:34px;
  opacity:.7;
  transition:.3s;
}

.tools-logos img:hover{
  opacity:1;
  transform:scale(1.05);
}
.adoption-section{
  padding:100px 0;
  background:#fff;
}

.adoption-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:15px;
}

.adoption-desc{
  font-size:18px;
  color:#475569;
  max-width:700px;
}

.adoption-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:35px 30px;
  height:100%;
  transition:.3s;
}

.adoption-card:hover{
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  transform:translateY(-4px);
}

.adoption-icon{
  width:52px;
  height:52px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  font-size:24px;
}

.adoption-icon.blue{
  background:#eff6ff;
  color:#2563eb;
}

.adoption-icon.purple{
  background:#f5f3ff;
  color:#7c3aed;
}

.adoption-icon.green{
  background:#ecfdf5;
  color:#059669;
}

.adoption-card h5{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.adoption-card p{
  color:#475569;
  line-height:1.6;
}
.adoption-link{
  font-size:18px;
  font-weight:500;
  color:#0d6efd;
  text-decoration:none;
}

.adoption-link:hover{
  text-decoration:underline;
}
.impact-section {
  background: #f9fbff;
}

.tag {
  color: #0d6efd;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.tag.small {
  font-size: 12px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  color: #0b1c39;
}

.main-desc {
  max-width: 650px;
  margin: 10px auto 0;
  color: #555;
}

.impact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.impact-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.impact-card p {
  color: #555;
  font-size: 15px;
}

.btn-group-custom {
  margin-top: 15px;
}

.link-btn {
  margin-left: 15px;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.link-btn:hover {
  text-decoration: underline;
}
.security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #f8fbff;
  border-radius: 12px;
}

.security-item i {
  font-size: 28px;
  color: #0d6efd;
  margin-top: 4px;
}

.security-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.security-item p {
  font-size: 14px;
  color: #555;
}

.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, #061c2f, #05223d);
  color: #fff;
  padding: 70px 30px;
  border-radius: 14px;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 650px;
  margin: auto;
}

.cta-box .btn {
  padding: 10px 28px;
  font-weight: 600;
}
.card-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.main-footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:80px 0 30px;
}

.main-footer h6{
  color:#fff;
  margin-bottom:20px;
  font-weight:600;
}

.footer-logo{
  color:#fff;
  font-weight:700;
}

.footer-text{
  margin:15px 0;
  font-size:14px;
  line-height:1.6;
}

.main-footer ul{
  list-style:none;
  padding:0;
}

.main-footer ul li{
  margin-bottom:10px;
}

.main-footer ul li a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:14px;
}

.main-footer ul li a:hover{
  color:#0d6efd;
}

.footer-social a{
  display:inline-block;
  width:38px;
  height:38px;
  line-height:38px;
  text-align:center;
  background:#1e293b;
  color:#fff;
  border-radius:50%;
  margin-right:8px;
  transition:0.3s;
}

.footer-social a:hover{
  background:#0d6efd;
}

.footer-disclaimer{
  font-size:12px;
  margin-top:15px;
  color:#94a3b8;
}

.footer-bottom{
  margin-top:20px;
  font-size:14px;
  color:#94a3b8;
}

.main-footer hr{
  border-color:#1e293b;
  margin:40px 0 20px;
}