*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body{
    /*background: linear-gradient(to bottom, #666699 0%, #99ccff 100%);*/
    padding: 0px;
    margin: 0px;
  }
	    header{
		/*background: linear-gradient(to bottom, #333300 0%, #003366 100%);*/
		margin:0px;
		}
		
		header .row{
		display:flex;
		justify-content: space-around;
       	 align-items:center;	
		}
		
		header .row .col img{
		width:80px;
		height:85px;
		}
	
		header .row .businass-name p{
		text-transform: uppercase;
		font-family: "Bebas Neue", serif;
        font-weight: 400;
        font-style: normal;
		font-size: 40px;
        background: -webkit-linear-gradient(#ffffcc 0%, #ffff00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
		margin:0px;
		align-items:center;
		}
		
		header .row .contact p{
		 color:white;
		}
		
		
       
        
 
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
           
        }
        .feature {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin: 10px;
            padding: 15px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
        }
        .feature img {
            max-width: 100%;
            border-radius: 5px;
        }
        .feature:hover {
            transform: translateY(-10px);
        }
        .demo-id-card {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        .demo-id-card img {
            max-width: 400px;
            border: 2px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
              /******************* clients section ********************/
.section-header{
     margin-top: 20px;
     margin-bottom: 0px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     height: 100%;
}
  
.section-header h3 {
    font-size: 30px;
    color:#ffc300;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    color: white;
    width: 50%;

}

#card-section{
    background-color: white;
}
#clients .clients-wrap {
    /*border-top: 1px solid #d6eaff;*/
    /*border-left: 1px solid #d6eaff;*/
    /*margin-bottom: 20px;*/
}

#clients .client-logo {
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.2px solid black;
    overflow: hidden;
    background: transparent;
    height: 60px;
    margin: 2px;
}

#clients .client-logo p {
    font-size: 15px;
    text-align: center;
    color: white;
}
 
 .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    padding: 10px;
    box-sizing: border-box;
    width:100vw;
    margin:0px;
    height: auto;
    justify-content: space-between;
    background-color: white;
}

.grid-item{
    display:grid;
    width:95%;
    height:200px;
    background-color: transparent;
    justify-content: center; 
    align-items:center;
    border:solid 0.2px black;
    border-radius: 5px;
}

.grid-item img{
    width:122px;
    height:76.5px;
    object-fit: contain;
    background-color: #fff;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}
/* Responsive Styles */
  @media (max-width: 600px) {
      
      #clients .client-logo {
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.2px solid black;
    overflow: hidden;
    background: transparent;
    height: 30px;
    margin: 2px;
}

#clients .client-logo p {
    font-size: 15px;
    text-align: center;
    color: white;
}
      
    .grid {
      grid-template-columns: 1fr 1fr;
      background-color: white;
       display:Responsive;
       justify-content: space-around;
    }
    
    .grid-item{
    display:grid;
    width:150px;
    height:150px;
    background-color: transparent;
    justify-content: center; 
    align-items:center;
    border:solid 0.2px black;
    border-radius: 5px;
    margin: auto;
   }
 }
        
  /*******************************  footer style start **********************************/
  
        footer {
            text-align: center;
            width: 100vw;
            padding: 10px;
            margin:0px;
            background: linear-gradient(to bottom, #333300 0%, #003366 100%);
            color: white;
        }