    /* Header Styles */
    header {
      background-color: #004aad;
      color: #ffffff;
      padding: 10px 10px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .logo {
      width: 80px;
      height: 80px;
      display: inline-block;
      margin-right: 15px;
      vertical-align: middle;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }


    /* Navbar Styles */
    nav {
      width: 100%;
      background-color: #2161b5;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    /* Navbar Styles */
    .navbar-nav li a {
      font-family: "Poppins", cursive;
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: none;
    }


    .navbar-nav li a:hover {
      background-color: #ffc107;
      color: #004aad !important;
      border-radius: 20px;
    }

    .navbar-nav li a.active {
      background-color: #dc1d5d !important;
      color: #ffffff !important;
      border-radius: 20px;
    }

    #shubh li a.new-class-test {
      position: relative;
    }

    #shubh li a.new-class-test::after {
      content: 'NEW';
      position: absolute;
      top: -5px;
      right: -20px;
      background-color: #dc3545;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 3px 6px;
      border-radius: 12px;
      text-transform: uppercase;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    /* Main Section Styling   (index.html page)*/
    main {
      padding: 2rem 2rem;
      text-align: center;
      border-radius: 10px;
    }

    /* Main Heading (h2) Styling */
    main h2 {
      font-family: 'Poppins', sans-serif ;
      font-size: 2.0rem;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
    }

    /* Subheading Styling (h5) */
    main h5 {
      font-family: 'Open Sans', sans-serif !important;
      font-size: 1.2rem;
      color: #555;
      font-weight: 400;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    /* Profile Section */
    .profile {
      background: linear-gradient(135deg, #ffffff, #f3f4f6);
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      margin-top: 2rem;
      max-width: 100%;
      overflow: hidden;
    }

    .profile-body {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .profile-bio {
      text-align: left;
      padding: 1rem;
      flex: 1 1 100%;
    }

    .profile img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease-in-out;
    }

    .profile img:hover {
      transform: scale(1.1);
      transition: all 0.3s ease-in-out;
    }

    .profile h2 {
      font-family: 'Playfair Display', serif ;
      font-size: 2rem;
      color: #2c3e50;
      margin-bottom: 0.5rem;
    }

    .profile span {
      display: block;
      font-family: 'Open Sans', sans-serif ;
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 1rem;
    }

    .profile p {
      font-family: 'Open Sans', sans-serif ;
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      text-align: justify;
    }

    .profile hr {
      border: 0;
      height: 2px;
      background: #ddd;
      margin: 1rem 0;
    }

    .typewriter p {
      font-family: 'Open Sans', sans-serif ;
      font-size: 1rem;
      color: #2c3e50;
      font-style: italic;
    }

    @media (min-width: 768px) {
      .profile-body {
        flex-wrap: nowrap;
      }

      .profile img {
        width: 250px;
        height: 300px;
      }

      .profile-bio {
        flex: 1 1 60%;
        padding: 2rem;
      }
    }

    @media (max-width: 768px) {
      .profile img {
        width: 180px;
        height: 200px;
      }

      .profile-bio {
        text-align: center;
        padding: 1rem;
      }

      .profile-body {
        flex-direction: column;
      }
    }

    /* Blockquote Section */
    .card {
      background: linear-gradient(135deg, #ffffff, #f3f4f6);
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      margin: 2rem 0;
    }

    .blockquote {
      position: relative;
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: #555;
      line-height: 1.8;
      text-align: justify;
      margin: 0;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .blockquote::before {
      content: "❝";
      font-size: 4rem;
      position: absolute;
      left: -17px;
      top: -10px;
      color: #dc1d5d;
    }

    .blockquote::after {
      content: "❞";
      font-size: 4rem;
      position: absolute;
      right: 5px;
      bottom: 20px;
      color: #dc1d5d;
    }

    .blockquote p {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-style: italic;
      color: #2c3e50;
      margin-bottom: 1rem;
    }

    .blockquote hr {
      border: 0;
      height: 2px;
      background: #ddd;
      margin: 1rem 0;
    }

    .blockquote-footer {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      font-weight: bold;
      font-style: italic;
      color: white;
      text-align: center;
      margin-top: 1rem;
    }

    .card-body {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }

    @media (max-width: 768px) {
      .blockquote {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .blockquote::before,
      .blockquote::after {
        font-size: 3rem;
      }

      .card {
        padding: 1rem;
      }
    }

    /* Index.html till here */


    /* test.html Styling */

    .split-screen {
      display: flex;
      flex-wrap: wrap;
      height: 100vh;
    }

    .half-section {
      flex: 1 1 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: #f3f3f3;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
      transition: background 0.3s ease;
    }

    .half-section:hover {
      background: #eaeaea;
    }

    .half-section h2 {
      font-size: 28px;
      margin: 20px 0;
      color: #333;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .class-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    /* Button Styling */
    .class-btn {
      font-family: 'Poppins', sans-serif;
      width: 70%;
      background: #ffffff;
      padding: 15px;
      border-radius: 25px;
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .class-btn:hover {
      background-color: #4caf50;
      color: #fff;
      border: 2px solid #4caf50;
      transform: scale(1.05);
    }

    a.class-btn {
      text-decoration: none;
      display: inline-block;
    }


    /* Image Styling */
    .section-img {
      width: 150px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 50%;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .half-section {
        flex: 1 1 100%;
        height: auto;
      }

      .class-btn {
        width: 90%;
      }
    }

    /* test.html end  */






    /* Footer Section */
    footer {
      background-color: #1c1c1c;
      color: #ffffff;
      
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      margin-top: auto
    }

    footer .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
     
    }

    footer .left-section,
    footer .right-section {
      display: flex;
      align-items: center;
    }

    footer .left-section a,
    footer .right-section a {
      font-size: 18px;
      margin-right: 10px;
      color: #ffffff;
      transition: all 0.3s ease-in-out;

    }

    footer .left-section a:hover,
    footer .right-section a:hover {
      color: #dc1d5d;
      transform: scale(1.1);
    }

    footer .right-section {
      margin-left: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer .middle-section p {
      text-align: center;
      font-size: 12px;
      margin: 0;
      color: #cccccc;
    }

    footer p a {
      color: #ffffff;
      text-decoration: none;
    }

    footer p a:hover {
      text-decoration: underline;
      color: #dc1d5d;
    }

    footer .left-section a:nth-child(1) {
      color: #1877F2;
    }

    footer .left-section a:nth-child(2) {
      color: #25D366;
    }

    footer .left-section a:nth-child(3) {
      color: #D44638;
    }

    footer .right-section a {
      color: #E1306C;
      margin-left: 10px;
    }

    footer .right-section a:hover {
      transform: scale(1.1);
      color: #F58529;
    }

    @media (max-width: 768px) {
      footer .footer-container {
        flex-direction: column;
        align-items: center;
      }

      footer .left-section,
      footer .right-section {
        margin-bottom: 10px;
      }

      footer .right-section {
        flex-direction: column;
        align-items: center;
      }
    }