/*Small Boxes*/

    .cardsmall-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .cardsmall {
      flex: 1 1 200px;
      max-width: 220px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .cardsmall:hover {
      transform: translateY(-5px);
    }

    .icon {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .cardsmall-title {
      font-weight: bold;
      font-size: 16px;
	  color:#000000;
    }

    /* Custom background colors */
    .jee { background-color: #e6e1ff; }
    .neet { background-color: #fff2cc; }
    .offline { background-color: #ccffe6; }
    .olympiad { background-color: #ffe6f2; }
    .early { background-color: #fff0e6; }
    .one-to-one { background-color: #e6eeff; }

    /* Responsive */
    @media (max-width: 768px) {
      .cardsmall {
        flex: 1 1 45%;
      }
    }

    @media (max-width: 480px) {
      .cardsmall {
        flex: 1 1 100%;
      }
    }
	
	
	/*Small box css end here*/
	
	
.grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .cardSingle {
      background-color: #fff;
      border-radius: 0px;
      /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);*/
      padding: 16px;
	  border: solid 0px #dfdfdf;
    }

    .tags {
      margin-bottom: 8px;
    }

    .tag {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
      margin-right: 4px;
    }

    .live {
      background-color: #e53935;
      color: #fff;
    }

    .free {
      background-color: #4CAF50;
      color: white;
    }

    .title {
      font-size: 15px;
      font-weight: 600;
      color: #202124;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .details-line {
      font-size: 13px;
      color: #555;
      display: flex;
      flex-wrap: wrap;
      gap: 0px;
      align-items: center;
      margin-bottom: 8px;
    }

    .details-line i {
      margin-right: 4px;
      color: #888;
    }

    .date {
      font-size: 12px;
      color: #5f6368;
      margin-bottom: 4px;
    }

    .lang {
      font-size: 12px;
      color: #1a73e8;
      margin-bottom: 10px;
    }

    .btn {
      background-color: #03a9f4;
      color: white;
      padding: 6px 14px;
      font-size: 13px;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
    }

    .btn:hover {
      background-color: #0288d1;
    }






/* Vertical Boxes CSS start from here */ 

    .card {
      width: 100%;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: 0.3s;
    }

    .card-header {
      background: linear-gradient(to top right, #1e3a8a, #1e3a8a);
      padding: 9px;
      position: relative;
    }

    .card-header img {
      width: 40px;
      height: 40px;
      background: #e0e7ff;
      border-radius: 50%;
      padding: 5px;
    }

    .card-header .users {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 12px;
      color: #555;
      background: #ffffff;
      padding: 3px 8px;
      border-radius: 12px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .card-body {
      padding: 20px;
    }

    .card-body h3 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .card-body .details {
      color: #10b981;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .card-body .languages {
      font-size: 13px;
      color: #3b82f6;
      margin-bottom: 10px;
    }

    .card-body ul {
      list-style: none;
      padding: 0;
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
    }

    .card-footer {
      /*padding: 20px;*/  /*commented by me*/
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .card-footer button {
      padding: 10px 16px;
      background: #1e3a8a;
      border: none;
      border-radius: 8px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    .card-footer .plus-btn {
      width: 36px;
      height: 36px;
      background: #f3f4f6;
      border-radius: 50%;
      border: 1px solid #d1d5db;
      font-size: 20px;
      text-align: center;
      line-height: 36px;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
    }
	
	
	
	
	/*Science section CSS box start from here*/
		
	.course-card{
      width: 360px;               /* desktop size similar to image */
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
      display: flex;
      gap: 14px;
      align-items: center;
      border: 1px solid rgba(15,23,42,0.04);
    }

    /* image box */
    .thumb {
      width: 100px;
      height: 100px;
      flex: 1 0 72px;
      border-radius: 12px;
      overflow: hidden;
      display: inline-block;
      background: linear-gradient(135deg,#e6f0ff,#f3f9ff);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .content{
      flex:1;
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width:0;
    }

    .title1{
      font-weight:700;
      font-size:16px;
      color: #0b1220;
      margin:0;
      line-height:1.05;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .subtitle{
      font-size:13px;
      color:var(--muted);
      margin:0;
      font-weight:400;
    }

    .bottom-row{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap:10px;
      margin-top:8px;
    }

    .price{
      font-size:13px;
      color:var(--muted);
      display:flex;
      flex-direction:column;
      line-height:1;
    }
    .price .big{
      font-weight:700;
      font-size:15px;
      color:#0b1220;
      margin-top:4px;
    }


    /* Responsive (narrow screens stack image left + price under) */
    @media (max-width:420px){
      .course-card{
        width:100%;
        padding:12px;
      }
      .bottom-row{
        flex-direction:row;
      }
      .thumb{ width:64px; height:64px; flex-basis:64px }
      .btn{ padding:9px 12px; font-size:14px }
    }
	
	
	/*Science section CSS box End from here*/

	
	  .formtake{  position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
	}
	
	.btnspecial {
      background-color: #03a9f4;
      color: white;
      padding: 11px 14px;
      font-size: 15px;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
	  width:23%;
    }
	