

      
      .container-fluid {
          max-width: 100%;
          padding-left: 0;
          padding-right: 0;
      }
      
      /* Carousel Styling */
      .carousel-item {
          height: 400px;
          transition: transform 0.5s ease-in-out;
      }
      .carousel-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          filter: brightness(80%);
      }
      .carousel-caption {
          background: rgba(0, 0, 0, 0.6);
          padding: 15px 20px;
          border-radius: 8px;
          text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
          animation: fadeInUp 1s ease-in-out;
      }
      .social-icons {
          position: absolute;
          top: 40px;
          left: 20px;
          z-index: 10;
      }
      .social-icons a {
          font-size: 30px;
          margin: 0 8px;
          transition: transform 0.3s;
      }
      .social-icons a:hover {
          transform: scale(1.2);
          opacity: 0.8;
      }
      .project-img {
          height: 200px;
          object-fit: cover;
      }
  
     .file-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 5px;
            max-height: 500px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .grid-container img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .overlay {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 20px;
            font-weight: bold;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
        }
        .card {
            width: 100%; 
            margin-bottom: 20px;
        }
        .modal-body img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease-in-out;
        }
        .modal-footer {
            display: flex;
            justify-content: space-between;
        }
        .nav-btn {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 16px;
        }
   
    .read-more-btn {
        background-color: #007bff; /* Blue color */
        color: white;
        border: none;
        padding: 8px 12px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease-in-out, transform 0.2s;
        margin-top: 5px;
        display: inline-block;
    }
    
    .read-more-btn:hover {
        background-color: #0056b3; /* Darker blue */
        transform: scale(1.05);
    }
    
    .read-more-btn:active {
        transform: scale(0.95);
    }
    
    body {  
        background-color: #f8f9fa;  
    }  
    .contact-section {  
        background-color: #0a616d;  
        color: white;  
        padding: 50px 0;  
        text-align: center;  
    }  
    .contact-item {  
        margin-bottom: 20px;  
    }  
    .contact-item i {  
        font-size: 30px;  
        margin-bottom: 10px;  
    }  
    .message-form {  
        background-color: white;  
        padding: 30px;  
        margin-top: -50px;  
        border-radius: 10px;  
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);  
    }  

            .social-icons {
            text-align: center;
            margin-top: 10px;
        }

        .social-icons a {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            font-size: 24px;
            color: white;
            border-radius: 50%;
            margin: 5px ;
            text-decoration: none;
        }

        /* Social media colors */
        .facebook { background: #1877F2; }  /* Facebook Blue */
        .instagram { background: linear-gradient(45deg, #fccc63, #bc1888, #dc2743); } /* Instagram Gradient */
        .x-twitter { background: black; }  /* Twitter (X) Black */
        .telegram { background: #0088CC; }  /* Telegram Blue */
        .linkedin { background: #0A66C2; }  /* LinkedIn Blue */

        /* Hover effect */
        .social-icons a:hover {
            opacity: 0.8;
        }
 
   