        /* Body Styling */
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
          font-size: 17px;
          line-height: 1.7;
          background-color: #fafafa;
          color: #333;
          margin: 0;
          padding: 0;
          background-color: #dfd8c2;
          overflow-wrap: break-word;
          word-break: break-word;
        }

        /* Navbar Styling */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: #007BFF !important;
        }

        .nav-link {
            color: #555 !important;
        }

        /* Hero Section */
        .hero {
            background-color: #C2B280;
            padding: 10px 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 5px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #333;
        }

        .hero p {
            font-size: 1.2rem;
        }

        /* Blog Section */
        .blog-post {
            margin: 40px 0;
            padding: 20px;
            background: #d1c396;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            height: 320px;
        }

        .blog-post h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #007BFF;
        }

        .blog-post p {
            margin-top: 10px;
        }

        /* Footer */
        .footer {
            padding: 20px;
            background-color: #007BFF;
            color: #fff;
            text-align: center;
            margin-top: 50px;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        .p_data{
        	height: 177px !important;
    		overflow: hidden;
    		color:black;
        }
        
        .a_blg{
        	text-decoration: none;
        }
        
        .Purl{
        	overflow: hidden;
			color: black;
			font-size: 11px;
			font-style: italic;
    		color: #737373;
        }
        
        .carousel-item {
	      height: 60vh; /* Full-screen height */
	      min-height: 300px;
	      background-size: cover;
	      background-position: center;
	    }
	    
	    .logorj{
	        width: 30px;
	        margin: 1px;
	    }
	    

/* === Container Styling === */
.blog-content {
  margin: 40px auto;
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

/* === Headings === */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-weight: 700;
  color: #2c3e50;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-content h1 {
  font-size: 2.2em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3em;
}

.blog-content h2 {
  font-size: 1.8em;
  color: #2c3e50;
}

.blog-content h3 {
  font-size: 1.5em;
  color: #444;
}

.blog-content h4 {
  font-size: 1.2em;
  color: #555;
}

/* === Paragraphs and Text === */
.blog-content p {
  margin-bottom: 1.1em;
}

.blog-content strong {
  font-weight: bold;
  color: #111;
}

/* === Lists === */
.blog-content ul,
.blog-content ol {
  margin-left: 2em;
  margin-bottom: 1.2em;
}

.blog-content li {
  margin-bottom: 0.6em;
}

/* === Blockquotes === */
.blog-content blockquote {
  border-left: 4px solid #3498db;
  background: #ecf5fc;
  padding: 0.8em 1.2em;
  color: #333;
  font-style: italic;
  margin: 1.5em 0;
  border-radius: 4px;
}

/* === Code Blocks === */
.blog-content pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  font-family: 'Fira Code', 'Courier New', monospace;
  margin-bottom: 1.5em;
}

.blog-content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* === Tables === */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.95em;
}

.blog-content table th,
.blog-content table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.blog-content table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

/* === Links === */
.blog-content a {
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content a:hover {
  color: #1c5980;
  text-decoration: underline;
}

/* === Images === */
.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 6px;
}

/* === Horizontal Rule === */
.blog-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .blog-content {
    padding: 15px 20px;
  }
}

pre code {
    color: var(--bs-code-color) !important;
}


/* === Language switcher === */
    .lang-switch {
      position: relative;
      display: inline-block;
      width: 100px; /* Reduced width */
      height: 40px; /* Reduced height */
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      border-radius: 20px; /* Adjusted border-radius */
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background 0.4s ease;
    }

    .lang-switch .slider {
      position: absolute;
      top: 2px;
      left: 2px;
      bottom: 2px;
      width: 46px; /* Reduced width of the slider */
      background: #fff;
      border-radius: 50px;
      transition: transform 0.4s ease;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .lang-switch .labels {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 10px;
      font-size: 16px; /* Font size set to 16px */
      font-weight: bold;
      color: white;
      text-transform: capitalize;
      z-index: 1;
    }

    .lang-switch .active {
      color: #2196f3;
    }

    .lang-switch .inactive {
      color: rgba(255, 255, 255, 0.6);
    }

    .lang-switch:active {
      transform: scale(0.98);
    }



/* === other project urls === */
.round-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      height: 40px;
      padding: 0 20px;
      margin: 5px;
      border-radius: 40px;
      text-decoration: none;
      background: #007bff;
      color: #fff;
      font-size: 14px;
      text-align: center;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
    }

    .round-link:hover {
      background: #0056b3;
      transform: scale(1.05);
    }

    .round-link span {
      overflow: hidden;
      text-overflow: ellipsis;
    }