* {
      
      box-sizing: border-box;
    }

    /*body {
   font-family: -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      padding: 40px 20px;
      overflow-x: hidden;
    }
*/
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .header {
      text-align: left;
      margin-bottom: 50px;
      color: white;
    }

    .header h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Collage Grid Layout */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px;
    }

    /* Create varied sizes for collage effect */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Varied heights for collage effect */
    .gallery-item:nth-child(n+1) {
      grid-row:span 2;
    }

   /* .gallery-item:nth-child(5n+2) {
      grid-column: span 2;
    }*/

    .gallery-item:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Overlay on hover */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      color: white;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .overlay-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .overlay-subtitle {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Lightbox Styles */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      padding: 20px;
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-content {
      position: relative;
      max-width: 1200px;
      max-height: 90vh;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      transform: scale(0.8);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox.active .lightbox-content {
      transform: scale(1);
    }

    .lightbox-image-container {
      position: relative;
      background: #000;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .lightbox-image {
      max-width: 100%;
      max-height: 70vh;
      object-fit: contain;
      animation: fadeInImage 0.4s ease;
    }

    @keyframes fadeInImage {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .lightbox-info {
      padding: 30px;
      background: white;
    }

    .lightbox-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #333;
    }

    .lightbox-description {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
    }

    /* Close Button */
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #333;
      z-index: 10;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .lightbox-close:hover {
      background: white;
      transform: rotate(90deg);
    }

    /* Navigation Arrows */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 24px;
      color: #333;
      transition: background 0.2s ease, transform 0.2s ease;
      z-index: 10;
    }

    .lightbox-nav:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
      left: 20px;
    }

    .lightbox-next {
      right: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header h1 {
        font-size: 2rem;
      }

      .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
      }

      .gallery-item:nth-child(5n+2) {
        grid-column: span 1;
      }

      .lightbox-content {
        max-height: 95vh;
      }

      .lightbox-info {
        padding: 20px;
      }

      .lightbox-title {
        font-size: 1.4rem;
      }

      .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
    }

    /* Loading animation */
    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }

    .loading {
      animation: pulse 1.5s ease-in-out infinite;
    }
     .video-button {
            height:50px;
            display: inline-block;
            padding-bottom:43px ;
            padding-left:10px;
            padding-right:10px ;
            padding-top:2px;
            background:#04702F;
            color: white;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600; 
            border-radius: 800px;
            box-shadow:0 2px 8px rgba(0, 200, 83, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .video-button h4{
            color: white;
            font-family:sans-serif;

        }
        .video-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .video-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 200, 83, 0.4);
        }

        .video-button:hover::before {
            left: 100%;
        }

        .video-button:active {
            transform: translateY(0);
        }
/*IMP links*/

        .imp{
          height:450px;
          width:350px;
          float:left;
          background-color:#04702F;
          padding:30px 20px 100px 30px;
          margin:20px;
        }
 .social-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            background: white;
            border-radius: 25px 0 0 25px;
            cursor: pointer;
            transition: all 1s ease;
            overflow: hidden;
            box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .social-btn:nth-child(1) { transition-delay: 0s; }
        .social-btn:nth-child(2) { transition-delay: 0.15s; }
        .social-btn:nth-child(3) { transition-delay: 0.3s; }
        .social-btn:nth-child(4) { transition-delay: 0.45s; }
        .social-btn:nth-child(5) { transition-delay: 0.6s; }

        .social-container:hover .social-btn {
            width: 200px;
            box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
        }

        .social-container:hover .social-btn span {
            opacity: 1;
        }

        .social-btn i {
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 1s ease;
        }

        .social-btn span {
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 1s ease;
            padding-right: 20px;
        }

        .social-btn:hover span {
            opacity: 1;
        }

        .facebook {
            background: linear-gradient(to right, #1877f2 50px, white 50px);
        }

        .facebook i {
            background: #1877f2;
        }

        .facebook span {
            color: #1877f2;
            padding-left:2px;

        }

        .twitter {
            background: linear-gradient(to right, #1da1f2 50px, white 50px);
        }

        .twitter i {
            background: #1da1f2;
        }

        .twitter span {
            color: #1da1f2;
        }

        .instagram {
            background: linear-gradient(to right, #e4405f 50px, white 50px);
        }

        .instagram i {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .instagram span {
            color: #e4405f;
            padding-left:2px;

        }

        .youtube {
            background: linear-gradient(to right, #ff0000 50px, white 50px);
        }

        .youtube i {
            background: #ff0000;
        }

        .youtube span {
            color: #ff0000;
            padding-left:2px;
            
        }

        .linkedin {
            background: linear-gradient(to right, #0077b5 50px, white 50px);
        }

        .linkedin i {
            background: #0077b5;
        }

        .linkedin span {
            color: #0077b5;
            padding-left:2px;
        }
/* Simple icon replacements using Unicode */
        .icon-facebook::before { content: "f"; font-weight: bold; }
        .icon-twitter::before { content: "𝕏"; font-weight: bold; }
        .icon-instagram::before { content: "📷"; }
        .icon-youtube::before { content: "▶"; }
        .icon-linkedin::before { content: "in"; font-weight: bold; }

        /*Youtube video slider*/

        .min-slider {
            width:350px;
            height:200px;
            margin: 0 auto;
            /*float:left;*/
        }

        .video-slider {
            position: absolute;
            width:350px;
            height:200px;
            background: #000;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .slider-container {
          width:350px;
            height:200px;
            position: absolute;
            width: 100%;
            height:100%;
            background: #000;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /*.nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 10;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
        }

        .nav-arrow.prev {
            left: 25px;
        }

        .nav-arrow.next {
            right: 25px;
        }

        .arrow-icon {
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }
*/
      /*  .arrow-icon.left {
            border-right: 15px solid white;
        }

        .arrow-icon.right {
            border-left: 15px solid white;
        }*/

        .indicators {
            position: absolute;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
   