
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  margin:0;
  padding:0;
  font-family: poppins, sans-serif;
  background: #ffffff;
  color: #fff;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
} 

.nav-links {
  display: flex;
  gap:40px;
  color:#ffffff;
  font-size: 18px;
  font-weight: 600;
}
.nav-links a{
  color:#fff;
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#2dd4a3;
  transition:all 0.35s ease;
  transform:translateX(-50%);
}
.nav-links a:hover{
  color:#ffffff;
}
.nav-links a:hover::after{
  width:100%;
}

.nav-actions {
  margin-right: 20px;
  display: flex;
  gap: 10px;
  text-align: center;
  font-weight: 700;
}

.btn {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid #2dd4a3;
  color:#ffffff;
  background: transparent;
}

.btn-primary {
  background: #2dd4a3;
  color: #000;
  border: none;
  font-weight: 700;
}
.glow-on-hover .arrow{
  opacity:0;
  margin-left:5px;
  transition:0.3s;
}

.glow-on-hover:hover .arrow{
  opacity:5;
  margin-left:10px;
}

.glow-on-hover {
    font-size: 20px;
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #ffffff
}

/* .glow-on-hover:active:after {
    background: transparent;
} */

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.monitor{

 
}
.btn-secondary{
  border:2px solid #000;
  font-weight: 700;
}

.hero {
  background: #000000;
  padding: 250px 20px 180px;
  display: flex;
  /* justify-content: flex-end; */
}

.hero h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
}

.hero p {
 font-size: 20px;
  max-width: 640px;
  line-height: 1.6;
  text-align: left;
  color: #ffffff;
}

.btn-outline:hover{
   transform: scale(1.01);
   transition: transform 0.3s ease-in-out;
   font-size: 16px;
   font-weight: 600;
   color: #ffffff;
}
.btn-primary:hover{
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out;
    font-size: 16px;
    font-weight:600;
    color: #ffffff;
    background-color:#1bb88a;
}
.btn-secondary:hover{
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out;
    font-size: 16px;
    font-weight:600;
    color: #000;
}

.container1{
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.monitor-section{
max-width:1200px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.monitor-title{
color: #000;
font-size:36px;
margin-bottom:10px;
}

.monitor-sub{
color:#333;
font-size: 20px;
margin-bottom:60px;
}

.monitor-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
}
.monitor-box{
background-color: #000;
padding:40px 30px;
border:1px solid #999;
transition:all .3s ease;
}

.monitor-box i{
font-size:26px;
margin-bottom:15px;
color:#ffffff;
transition:.3s;
}

.monitor-box h3{
font-size:20px;
color: #ffffff;
margin-bottom:10px;
}

.monitor-box p{
font-size:16px;
color:#ffffff;
line-height:1.6;
}

.monitor-box:hover{
transform:translateY(-6px);
}

.monitor-box:hover i{
transform:scale(1.15);
}
.monitor-box1{
background-color: #2dd4a3;
padding:40px 30px;
border:1px solid #999;
transition:all .3s ease;
}

.monitor-box1 i{
font-size:26px;
margin-bottom:15px;
color:#000000;
transition:.3s;
}

.monitor-box1 h3{
font-size:20px;
color: #000000;
margin-bottom:10px;
}

.monitor-box1 p{
font-size:16px;
color:#000000;
line-height:1.6;
}

.monitor-box1:hover{
transform:translateY(-6px);
}

.monitor-box1:hover i{
transform:scale(1.15);
}
@media(max-width:900px){

.monitor-grid{
grid-template-columns:repeat(2,1fr);
}

.monitor-title{
font-size:26px;
line-height: 1.6;
}

}

@media(max-width:600px){

.monitor-grid{
grid-template-columns:1fr;
}

.monitor-title{
font-size:28px;
}

.monitor-sub{
font-size:20px;
margin-bottom:40px;
line-height: 1.6;
}

.monitor-box{
padding:30px 20px;
}
}

.hero input {
  width: 300px;
  padding: 14px 18px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  color: #000;
}

.right-card {
  height: 100%;
  background: linear-gradient(180deg, #1b3a2e, #0f1f1a);
  border-radius: 18px;
  padding: 26px;
}

.right-card h4 {
  margin-bottom: 12px;
}

.pill-tabs{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  border:2px solid #000;
  border-radius:40px;
  padding:6px;
  width:max-content;
  margin:30px auto 30px;
}

.pill{
  color: #000;
  padding:8px 18px;
  border-radius:30px;
  font-size:18px;
  cursor:pointer;
  transition:.3s;
}

.pill:hover{
  background:#2dd4a3;
  color:#fff;
}

 h1 {
    color: #000;
    font-size: 36px;
    margin-bottom:12px;
    text-align: center;
    line-height: 1.6;
  }
  span{
    color: #2dd4a3;
  }

  p {
    font-size:20px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.6;
    text-align:center;
  }

.dt-wrapper{
    max-width:1800px;
    margin:80px auto;
    padding:0 20px;
}

.dt-card{
          background: linear-gradient(
        to right,
        #ffffff 0%,
        #e2ece9 70%,
        #2dd4a3 100%
    );
    border-radius:50px;
    padding:40px;
    display:flex;
    gap:50px;
    align-items:center;
    /* border:1px solid #000; */
}

.dt-card.reverse{
    flex-direction:row-reverse;
}

.dt-image-box{
    /* flex:1; */
    border-radius:15px;
    overflow:hidden;
    margin-left: 150px;
}

.dt-image-box img{
    width:350px;
    transition:.5s;
    margin-right: 150px;
}

.dt-image-box:hover img{
  transform:scale(1.05);
}

.dt-content{
    flex:1;
}

.dt-content h1{
    color: #000000;
    font-size:30px;
    text-align: left;
    margin-bottom:20px;
}

.dt-highlight{
    color:#2dd4a3;
}

.dt-content p{
    font-size: 16px;
    color: #000000;
    text-align: left;
    margin-bottom:30px;
    line-height:1.6;
}

.dt-features{
    list-style:none;
}

.dt-features li{
    margin-bottom:15px;
    font-weight:500;
    display:flex;
    align-items:center;
    color: #000;
}

.dt-features li::before{
    content:"✔";
    border:2px solid #2dd4a3;
    color:#2dd4a3;
    border-radius:50%;
    width:20px;
    height:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:12px;
    font-size:12px;
}

@media(max-width:768px){
    .dt-card{
        flex-direction:column;
        padding:25px;
    }

    .dt-card.reverse{
        flex-direction:column;
    }
}

 .wa-wrapper{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    text-align:center;
  }

  .wa-main-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:12px;
  }

  .wa-main-title span{
    color:#2dd4a3;
  }

  .wa-subtext{
    font-size:20px;
    line-height: 1.6;
    color:#333;
    margin-bottom:40px;
  }

  .wa-mid-title{
    color: #000;
    font-size:30px;
    margin-bottom: 12px;
  }

  .wa-description{
    margin:0 auto 60px;
    font-size:20px;
    line-height:1.6;
    color:#333;
  }

  .wa-box{
   background: transparent linear-gradient(249deg, rgba(252, 255, 191, 0.17) 0%, rgba(51, 223, 111, 0.17) 48%,
                           rgba(12, 224, 150, 0.17) 100%) 0% 0% no-repeat padding-box;
    border-radius:22px;
    padding:50px 40px;
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
  }

  .wa-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px 60px;
    text-align:left;
  }

  .wa-item{
    display:flex;
    gap:18px;
  }

.wa-count{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:700;
color:#fff;

background:linear-gradient(180deg,#000000,#2dd4a3);

box-shadow:0 10px 15px rgba(0,0,0,0.15);
flex-shrink:0;
}

  .wa-item h3{
    font-size:30px;
    margin-bottom:10px;
    color:#000000;
  }

 .wa-item p{
    font-size:16px;
    line-height:1.6;
    color:#333;
    text-align: left;;
  }

  @media(max-width:900px){
    .wa-grid{
      grid-template-columns:1fr;
    }
    .wa-main-title{
      font-size:28px;
    }
    .wa-mid-title{
      font-size:24px;
    }
  }

.solution-section {
  background: url("images/Untitled design (14).png");
  background-color: #000;
  padding: 70px 50px;
  max-width:1530px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.solution-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 30px 26px;
  text-align: left;
  min-height: 300px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.solution-card:nth-child(2) {
  animation-delay: 0.15s;
}

.solution-card:nth-child(3) {
  animation-delay: 0.3s;
}

.solution-card h3 {
  font-size:30px;
  margin-bottom: 16px;
  color: #000;
}
.solution-card p {
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}

.solution-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px #2dd4a3;
  border-color: #000000;
  transition: all 0.4s ease;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }

  .solution-card {
    padding: 24px 20px;
  }
  .faq-section{
  font-size: 28px;
}
h1{
  font-size: 28px;
}
h4{
  font-size: 28px;
}
}

.faq-section {
  color: #000;
  font-size: 36px;
  max-width: 1000px;
  margin:auto;
  padding: 40px 20px;
  text-align: center;
}

.sub-text {
  font-size: 20px;
  margin-top: 20px;
  color: #000000;
}

.faq-box {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

input[type="radio"] {
  display: none;
}

.faq-question {
  color: #000;
  display: flex;
  align-items: flex-start;   
  gap: 12px;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.dot {
  width: 8px;             
  height: 8px;
  background: #000;
  border-radius: 50%;
  margin-top: 7px;       
  flex-shrink: 0;           
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  margin-left: 20px;  
  padding-top: 0;
  transition:0.5s ease, padding 0.5s ease;
}

input:checked + .faq-question + .faq-answer {
  max-height: 200px;
  padding: 2px 15px 10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-list,
  .faq-answer{
    width: 100%;
  }
}
.growth-wrapper{
display:flex;
justify-content:center;
align-items:center;
}

.growth-box{
 background: transparent linear-gradient(249deg, rgba(252, 255, 191, 0.17) 0%, rgba(51, 223, 111, 0.17) 48%,
                           rgba(12, 224, 150, 0.17) 100%) 0% 0% no-repeat padding-box;;
max-width:1160px;
width:100%;
text-align:center;
padding:60px 40px;
border-radius:20px;
margin-top:50px ;
margin-bottom: 70px;
}

.growth-title{
color: #000000;
font-size:36px;
font-weight:700;
margin-bottom:20px;
line-height:1.6;
}

.growth-text{
font-size:20px; 
line-height: 1.6;
color:#000000;
}

.growth-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.growth-input{
padding:14px 18px;
border:none;
border-radius:8px;
width:260px;
font-size:14px;
outline:none;
}

.growth-input:focus{
box-shadow:0 0 10px rgba(0,255,170,0.5);
}

.growth-button{
background:#2dd4a3;
border:none;
padding:14px 26px;
border-radius:8px;
color:#000000;
font-size: 16px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.growth-button:hover{
background:#1bb88a;
color: #fff;
transform:translateY(-2px);
}

footer{
    background:#555;
    color:#fff;
}

.footer-top{
    display:flex;
    flex-wrap:nowrap;         
    justify-content:space-between;
    align-items:flex-start;
    padding:0px 60px;
    gap:40px; 
}

.footer-col{
  flex:1;                   
    min-width:0;               
}
.footer-img{
  width: 140px;
  margin-top: 30px;
}

.footer-col p{
  color: #fff;
    font-size:16px;
    text-align: left;
}

.footer-col h3{
  margin-top: 50px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    font-size:15px;
}

.footer-col ul li span{
    color:#2dd4a3;
    margin-right:10px;
}

.footer-col a{
    color:#fff;
    text-decoration:none;
}

.footer-col a:hover{
    color:#2dd4a3;
}

.contact strong{
    color:#2dd4a3;
}

.social li{
    display:flex;
    align-items:center;
}

.social li span{
    width:22px;
    display:inline-block;
    color:#2dd4a3;
    font-weight:bold;
}

.footer-bottom{
    background:#000000;
    text-align:center;
    padding:15px;
    font-size:16px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
    font-weight:400;
}

.footer-bottom a:hover{
    color:#2dd4a3;
}
.navbar{
  background:#000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
}

.logo img{
  width:180px;
  margin-left:20px;
}

.menu-icon{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
  margin-right: 20px;
}

#menu-toggle{
  display:none;
}

@media (max-width:900px){

.menu-icon{
  display:block;
}

.nav-links{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#000;
  flex-direction:column;
  align-items:center;
  max-height:0;
  overflow:hidden;
  transition:0.4s;
}

#menu-toggle:checked ~ .nav-links{
  max-height:500px;
  padding:20px 0;
}

.nav-actions{
  display:none;
}

}

.responsive-img{
  max-width:85%;
  height:auto;
}

.card,
.card-reverse{
  width:90%;
  max-width:1160px;
}

@media (max-width:900px){

.card,
.card-reverse{
  flex-direction:column 
}

.card img,
.card-reverse img{
  width:100%;
}

.footer-top{
  flex-direction:column;
}

.footer-col{
  width:100%;
  margin-bottom: 20px;
}

}
@media(max-width:600px){

.wa-item{
flex-direction:column;
align-items:center;
text-align:center;
}

.wa-count{
margin-bottom:15px;
}

.wa-item h3{
text-align:center;
}

.wa-item p{
text-align:center;
}

}
@media (max-width:1024px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.monitor-grid{
grid-template-columns:repeat(2,1fr);
}

.dt-card{
gap:30px;
}

}

@media (max-width:768px){

.hero{
flex-direction:column;
text-align:center;
padding:120px 20px 60px;
}

.hero h1{
font-size:40px;
text-align:center;
}

.hero p{
font-size:20px;
text-align:center;
margin-bottom:20px;
}

.monitor-grid{
grid-template-columns:1fr;
}

.dt-card{
flex-direction:column;
}

.dt-card.reverse{
flex-direction:column;
}

.wa-grid{
grid-template-columns:1fr;
}

.solution-section{
padding:60px 20px;
}

}

@media (max-width:480px){
.hero h1{
font-size:26px;
margin-top: 100px;
}

.hero p{
font-size:15px;
}

.section-title{
font-size:26px;
}

.growth-title{
font-size:26px;
}
}
