.header {
  background:#08172c;
  padding:10px 0;
}

.nav {
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO FIX */
.logo img {
  height:50px;        /* control size */
  width:auto;
  display:block;
}

/* MENU */
.menu a {
  color:#fff;
  margin-left:20px;
  text-decoration:none;
  font-size:15px;
}
<!-- .card{ -->
  <!-- opacity:0; -->
  <!-- transform:translateY(20px); -->
  <!-- animation:fadeUp 1s forwards; -->
<!-- } -->
<!-- .card:hover{ -->
  <!-- box-shadow:0 20px 40px rgba(0,0,0,0.2); -->
  <!-- transform:translateY(-10px); -->
<!-- } -->
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
html{
  scroll-behavior:smooth;
}
body{
font-family:Montserrat, sans-serif;
background:#f5f7fa;
scroll-behavior:smooth;
user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
}

.navbar{
background:white;
transition:0.4s;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-link{
color:#0B1F3B !important;
font-weight:500;
margin-left:15px;
}

.nav-link{
color:#0B1F3B !important;
font-weight:500;
}
<!-- .navbar{ -->
<!-- background:#0B1F3B; -->
<!-- transition:0.4s; -->
<!-- padding:15px 0; -->
<!-- border-radius:10px; -->
<!-- } -->

.navbar.scrolled{
background:#ffffff/*#08172c*/;
box-shadow:0 4px 12px rgba(0,0,0,0.2);
padding:10px 0;
}
<!--  -->
<!-- .navbar{ -->
<!-- background:#0B1F3B; -->
<!-- } -->

.navbar-brand img{
height:60Spx;
}.nav-link{ -->
<!-- padding:12px; -->
<!-- font-size:18px; -->
<!-- }

<!-- .nav-link{ -->
<!-- color:#fff!important; -->
<!-- margin-left:15px; -->
<!-- } -->
.navbar-toggler{
border:1px solid #0B1F3B;
}

.navbar-toggler-icon{
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230B1F3B' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler:hover{
border-color:#2563EB;
}

.hero{
margin-top:70px;
background:linear-gradient(120deg,#0B1F3B,#2563EB);
color:white;
padding:90px 20px;
text-align:center;
}

.hero h1{
font-family:Poppins;
font-weight:700;
font-size:46px;
}
.hero img{
max-width:280px;
}
.section{
scroll-margin-top:100px;
padding:60px 20px;
}

.section-title{
font-family:Poppins;
font-weight:600;
margin-bottom:40px;
}

.card{
border:none;
border-radius:16px;
padding:20px;
background:rgba(255,255,255,0.8);
backdrop-filter:blur(10px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
margin-bottom:20px;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

<!-- .card{ -->
<!-- border:none; -->
<!-- border-radius:14px; -->
<!-- box-shadow:0 8px 25px rgba(0,0,0,0.08); -->
<!-- transition:.3s; -->
<!-- } -->

<!-- .card:hover{ -->
<!-- transform:translateY(-6px); -->
<!-- } -->

.stats{
font-size:22px;
font-weight:600;
color:#2563EB;
}
.stats1{
font-size:22px;
font-weight:600;
color:#2563EB;
}
.footer{
background:#0B1F3B;
color:white;
padding:40px 0;
}

.hero-title{
font-family:Poppins;
font-weight:700;
font-size:48px;
line-height:1.3;
}

.highlight{
color:#FFD166;
}

.hero-text{
margin-top:20px;
font-size:18px;
opacity:.9;
}

.hero-buttons{
margin-top:30px;
}

.hero-img{
max-width:500px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0px);}
}

.logo-slider{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
}

.logo-slider img{
height:50px;
opacity:.7;
transition:.3s;
}

.logo-slider img:hover{
opacity:1;
transform:scale(1.1);
}
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:26px;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.section{
opacity:0;
transform:translateY(40px);
transition:all .8s;
}

.section.show{
opacity:1;
transform:translateY(0);
}


.footer{
background:#0B1F3B;
color:white;
padding:60px 0 20px;
}

.footer h5{
font-family:Poppins;
margin-bottom:15px;
}

.footer a{
color:#ddd;
text-decoration:none;
}

.footer a:hover{
color:white;
}

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
z-index:9999;
align-items:center;
justify-content:center;
}

.popup-content{
background:white;
padding:30px;
width:350px;
border-radius:10px;
text-align:center;
position:relative;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}
.fade-in{
opacity:0;
transform:translateY(30px);
transition:all .8s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}
.btn-primary{
background:linear-gradient(135deg,#2563EB,#1e40af);
border:none;
}

.btn-primary:hover{
background:linear-gradient(135deg,#1e40af,#2563EB);
}

.clients{
text-align:center;
padding:60px 20px;
background:#f5f7fb;
}

.client-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:30px;
margin-top:30px;
}

.client-item{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
font-weight:600;
}

#clients img{
max-height:60px;
object-fit:contain;
}
img{
max-width:100%;
height:auto;
pointer-events:none;

}

@media(max-width:768px){

form input,
form textarea{
font-size:16px;
}

}

@media(max-width:768px){

.btn-lg{
width:100%;
margin-bottom:10px;
}

}


.clients-section{
padding:80px 20px;
text-align:center;
background:#f5f7fb;
}

.clients-section h2{
font-size:32px;
color:#08172c;
}

.client-stats{
display:flex;
justify-content:center;
gap:60px;
margin-top:40px;
flex-wrap:wrap;
}

.stat h3{
font-size:40px;
color:#0b5cff;
}

.stat p{
font-weight:500;
}

.logo-slider{
overflow:hidden;
margin-top:60px;
}

.logo-track{
display:flex;
gap:60px;
animation:scroll 20s linear infinite;
}

.logo-track img{
height:50px;
opacity:0.7;
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.form-message {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  transition: all 0.3s ease;
}

.form-message.success {
  background: #e6ffed;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.form-message.error {
  background: #ffe6e6;
  color: #842029;
  border: 1px solid #f5c2c7;
}



.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  width: 320px;
  animation: popupFade 0.3s ease;
}

.popup-icon {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 10px;
}

.popup-box h2 {
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.popup-box button {
  background: #08172c;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  font-size: 18px;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #08172c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: auto;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.input-error {
  border: 2px solid #dc3545 !important;
  background: #ffe6e6;
}

.input-success {
  border: 2px solid #28a745 !important;
}

.error-text {
  color: #dc3545;
  font-size: 12px;
  margin-top: 3px;
  display: block;
}

.clients-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
}

.client-logo {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

<!-- .hero{ -->
  <!-- background: linear-gradient(135deg,#0b1d3a,#1a3c6d); -->
  <!-- color:#fff; -->
  <!-- padding:120px 20px; -->
<!-- } -->

<!-- .hero h1{ -->
  <!-- font-size:42px; -->
  <!-- font-weight:700; -->
<!-- } -->

<!-- .hero h1 span{ -->
  <!-- color:#00c6ff; -->
<!-- } -->

<!-- .hero p{ -->
  <!-- margin:20px auto; -->
  <!-- max-width:600px; -->
  <!-- opacity:0.9; -->
<!-- } -->

.btn-primary{
  background:#00c6ff;
  color:#fff;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
}

.btn-outline{
  border:1px solid #fff;
  padding:12px 25px;
  border-radius:30px;
  color:#fff;
}

.logo-slider{
  overflow:hidden;
  background:#fff;
  padding:30px 0;
}

.logo-track{
  display:flex;
  gap:60px;
  animation:scroll 25s linear infinite;
}

.logo-track img{
  height:60px;
  filter:grayscale(100%);
  transition:0.3s;
}

.logo-track img:hover{
  filter:none;
  transform:scale(1.1);
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:40px;
}

<!-- .card{ -->
  <!-- padding:30px; -->
  <!-- border-radius:15px; -->
  <!-- box-shadow:0 10px 30px rgba(0,0,0,0.1); -->
  <!-- transition:0.3s; -->
<!-- } -->

<!-- .card:hover{ -->
  <!-- transform:translateY(-10px); -->
<!-- } -->
.testimonial{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  margin:15px;
}
.section{
  animation:fadeUp 1s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:0.6s;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

.pricing-section {
  padding: 60px 20px;
  /*background: #0b1d3a;*/
  background: #08172c; 
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 40px;
  color: #ccc;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 15px;
  width: 280px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  margin: 15px 0;
}

.price span {
  font-size: 14px;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 10px 0;
}

.pricing-card button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #08172c;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.pricing-card button:hover {
  background: #0d2a52;
}

/* Popular Card */
.popular {
  transform: scale(1.05);
  border: 2px solid #007bff;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
}

/* Add-ons */
.addons {
  margin-top: 50px;
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.addon-list div {
  background: #fff;
  color: #000;
  padding: 10px 15px;
  border-radius: 8px;
}
.price-box {
  margin: 15px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-right: 10px;
}

.new-price {
  font-size: 28px;
  font-weight: bold;
  color: #0d6efd;
}

.save {
  display: block;
  font-size: 12px;
  color: green;
  margin-top: 5px;
}
.accordion-button {
  font-weight: 600;
}

.accordion-body {
  font-size: 14px;
  color: #555;
}