@charset "utf-8";
/* CSS Document */
/* index */
    .products{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
      gap:18px;
    }

    .card{
      background:white;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 8px 20px rgba(0,0,0,.08);
      transition:.3s;
      text-align:center;
      padding:18px;
    }

    .card:hover{
      transform:translateY(-6px);
    }

    .card img{
      width:100%;
      height:240px;
      object-fit:contain;
      margin-bottom:12px;
    }

    .card h3{
      font-size:18px;
      line-height:1.3;
      margin-bottom:8px;
      color:#111;
    }

    .card p{
      font-size:14px;
      color:#666;
    }

    .description{
      text-align:center;
      margin-top:50px;
    }

    .description h2{
      font-size:34px;
      margin-bottom:20px;
    }

    .description p{
      font-size:22px;
      line-height:1.7;
      color:#222;
    }

    .eng{
      margin-top:10px;
      font-size:18px !important;
      color:#555 !important;
    }

    @media(max-width:768px){

      .products{
        grid-template-columns:repeat(2,1fr);
      }

      .card img{
        height:180px;
      }

      .description p{
        font-size:18px;
      }

    }
/*about*/
 .card_ab {
      background: white;
      border-radius: 35px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: .4s;
      position: relative;
	  margin-bottom: 10px;
    }
.card_ab:hover{
      transform:translateY(-6px);
    }
	.card-content {
      padding: 30px;
    }

    .card-content h3 {
      font-size: 30px;
      color: #1565c0;
      margin-bottom: 10px;
    }

    .card-content p {
      color: #555;
      line-height: 1.8;
      font-size: 16px;
    }
/*process*/
	.process{
		background-color:#fff;
		padding: 20px 0px 20px 0px;
	}
	.process_topic{
	   font-size:24px;
		color:#0785DC;
	}
	.img_pr{
	  width:270px;
	}
    .btn {
      display: inline-block;
      background: linear-gradient(135deg,#0d47a1,#2196f3);
      color: white;
      padding: 16px 34px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 18px;
      transition: .3s;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: 35px;
      color: #0d47a1;
      margin-bottom: 5px;
    }
    .section-title p {
      font-size: 28px;
      color: #666;
    }
    .process-section {
      padding: 5px 8%;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
      gap: 35px;
    }
    .card_pr {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: .4s;
      position: relative;
    }
    .card_pr:hover {
      transform: translateY(-10px);
    }
    .step-number {
      position: absolute;
      top: 20px;
      left: 20px;
      background: #0d47a1;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .card_pr img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .card-content1 {
      padding: 30px;
    }

    .card-content1 h3 {
      font-size: 30px;
      color: #1565c0;
      margin-bottom: 10px;
    }

    .card-content1 p {
      color: #555;
      line-height: 1.8;
      font-size: 16px;
    }

    .features {
      padding: 100px 8%;
      background: white;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap: 30px;
    }

    .feature-box {
      background: #f7fbff;
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      transition: .3s;
    }

    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .feature-box h4 {
      font-size: 26px;
      margin-bottom: 15px;
      color: #0d47a1;
    }

    .feature-box p {
      color: #666;
      line-height: 1.7;
    }

    .cta {
      margin: 100px 8%;
      background: linear-gradient(135deg,#0d47a1,#2196f3);
      border-radius: 40px;
      padding: 70px;
      color: white;
      text-align: center;
    }

    .cta h2 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 22px;
      margin-bottom: 30px;
    }
	  .box {
	  width: 1080px;
      height:400px;
	  margin-bottom: 10px;
		  margin-top: 10px; 
		  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: .4s;
      position: relative;
	}
	   .box:hover {
      transform: translateY(-10px);
		  
    }
