    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow-x: hidden;
        }
         .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
    }

    video {
      width: 100%;
      height: auto;
      display: block;
    }

    .video-link {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      font-size: 16px;
      z-index: 10;
      white-space: nowrap;
    }

    .video-link:hover {
      background-color: rgba(255, 255, 255, 0.9);
      color: black;
         text-decoration: none;
    }
        .grid-container {
            padding: 50px 0;
        }
        .footer {
            background: #343a40;
            color: white;
            text-align: center;
            padding: 20px 0;
        }

        /* Home grid css */
          .grid-item {
        width: 100%;
        height: 250px; /* Fixed size */
        background-color: #f8f9fa; /* Default background */
        transition: transform 0.3s ease-in-out, box-shadow 0.3s, background-color 0.3s;
    }

    /* Icon default color */
    .icon {
        color: #0072CE; /* Blue color from logo */
        transition: color 0.3s ease-in-out;
    }

    /* Hover effect - changes card background & icon color */
    .grid-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        background-color: #0072CE; /* Blue hover effect */
    }

    .grid-item:hover .icon, 
    .grid-item:hover .card-title, 
    .grid-item:hover .card-text {
        color: white; /* Change text & icon color to white on hover */
    }

  
    
    </style>