   /* Font Imports */
   @font-face {
       font-family: 'Montserrat';
       src: url('/asset/font/Montserrat-Regular.ttf') format('truetype');
       font-weight: 400;
       font-style: normal;
   }

   @font-face {
       font-family: 'Montserrat';
       src: url('/asset/font/Montserrat-Bold.ttf') format('truetype');
       font-weight: 700;
       font-style: normal;
   }

   @font-face {
       font-family: 'Montserrat';
       src: url('/asset/font/Montserrat-SemiBold.ttf') format('truetype');
       font-weight: 600;
       font-style: normal;
   }

   @font-face {
       font-family: 'Montserrat';
       src: url('/asset/font/Montserrat-Medium.ttf') format('truetype');
       font-weight: 500;
       font-style: normal;
   }

   @font-face {
       font-family: 'Montserrat';
       src: url('/asset/font/Montserrat-Light.ttf') format('truetype');
       font-weight: 300;
       font-style: normal;
   }

   @font-face {
       font-family: 'Poppins';
       src: url('/asset/font/Poppins-Regular.ttf') format('truetype');
       font-weight: 400;
       font-style: normal;
   }

   /* Reset & Base Styles */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }

   body {
       background: #000;
       color: white;
       min-height: 100vh;
       overflow-x: hidden;
   }

   /* Header Styles */
   .header {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       z-index: 1000;
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 3rem 10%;
       transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
       background-color: transparent;
       background-image: linear-gradient(180deg,
               #002535 15%,
               rgba(0, 37, 53, 0) 100%);
   }

   .page-header {
       background-color: #002535;
       padding: 1rem 10%;
   }

   .header.scrolled {
       background-color: #002535;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
       padding: 1rem 10%;
   }

   .logo-container {
       display: flex;
       align-items: center;
       gap: 10px;
       z-index: 1001;
   }

   .logo-container img {
       height: 50px;
       width: auto;
   }

   .nav-menu {
       display: flex;
       list-style: none;
       gap: 2rem;
   }

   .nav-item {
       position: relative;
       font-size: 0.8rem;
       letter-spacing: 1px;
       color: white;
       cursor: pointer;
       transition: color 0.3s ease;
       font-weight: 600;
       padding: 0.5rem 0;
   }

   .nav-item:hover {
       color: #00bfff;
   }

   .nav-item.active {
       color: #00bfff;
   }

   .dropdown {
       position: absolute;
       top: 100%;
       left: 0;
       background-color: #002535;
       min-width: 200px;
       border-radius: 4px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       opacity: 0;
       visibility: hidden;
       transform: translateY(10px);
       transition: all 0.3s ease;
       z-index: 100;
       margin-top: 0.5rem;
       padding: 0.5rem 0;
   }

   .nav-item:hover .dropdown {
       opacity: 1;
       visibility: visible;
       transform: translateY(0);
   }

   .dropdown-item {
       padding: 12px 15px;
       color: white;
       text-decoration: none;
       display: block;
       transition: background-color 0.3s ease;
       font-weight: 400;
       position: relative;
   }

   .dropdown .active {
       color: #00bfff;
   }

   .dropdown-item:hover {
       background-color: #004a66;
       color: #fff;
   }

   /* Submenu - Departments */
   .dropdown-item.has-submenu {
       position: relative;
       padding-right: 30px;
       cursor: pointer;
   }

   .dropdown-item.has-submenu i {
       position: absolute;
       right: 15px;
       top: 50%;
       transform: translateY(-50%);
       font-size: 12px;
       transition: transform 0.3s ease;
   }

   .sub-dropdown {
       position: absolute;
       top: 0;
       left: 100%;
       background-color: #002535;
       min-width: 180px;
       border-radius: 4px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       opacity: 0;
       visibility: hidden;
       transform: translateX(10px);
       transition: all 0.3s ease;
       z-index: 200;
       padding: 0.5rem 0;
   }

   .dropdown-item.has-submenu:hover .sub-dropdown {
       opacity: 1;
       visibility: visible;
       transform: translateX(0);
   }

   .dropdown-item.has-submenu:hover i {
       transform: translateY(-50%) rotate(90deg);
   }

   .sub-dropdown-item {
       padding: 12px 15px;
       color: white;
       text-decoration: none;
       display: block;
       transition: background-color 0.3s ease;
   }

   .sub-dropdown-item:hover {
       background-color: #004a66;
   }

   /* Mobile Toggle */
   .mobile-toggle {
       display: none;
       font-size: 1.5rem;
       color: white;
       cursor: pointer;
       transition: color 0.3s ease;
       z-index: 1001;
   }

   .mobile-toggle:hover {
       color: #00bfff;
   }

   .nav-item a {
       color: white;
       text-decoration: none;
       display: block;
       transition: color 0.3s ease;
       font-weight: 600;
   }

   .nav-item a:hover {
       color: #00bfff !important;
   }

   /* Mobile Menu Styles */
   @media (max-width: 1024px) {
       .header {
           padding: 1.5rem 5%;
       }

       .header.scrolled {
           padding: 1rem 5%;
       }

       .nav-menu {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100vh;
           background-color: #002535;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           padding: 2rem 0;
           gap: 0;
           transform: translateX(-100%);
           opacity: 0;
           visibility: hidden;
           transition: all 0.4s ease;
           box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
           z-index: 999;
           overflow-y: auto;
       }

       .nav-menu.active {
           transform: translateX(0);
           opacity: 1;
           visibility: visible;
       }

       .nav-item {
           width: 100%;
           text-align: center;
           padding: 1rem 0;
           border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       }

       .nav-item:last-child {
           border-bottom: none;
       }

       .dropdown {
           position: static;
           background-color: #00334d;
           width: 90%;
           margin: 0.5rem auto;
           border-radius: 4px;
           box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
           opacity: 1;
           visibility: visible;
           transform: none;
           max-height: 0;
           overflow: hidden;
           transition: max-height 0.4s ease;
           display: block;
       }

       .dropdown.show {
           max-height: 500px;
       }

       .dropdown-item {
           padding: 0.8rem 1rem;
           border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       }

       .dropdown-item:last-child {
           border-bottom: none;
       }

       .mobile-toggle {
           display: block;
       }

       .hamburger {
           display: flex;
           flex-direction: column;
           justify-content: space-between;
           width: 24px;
           height: 18px;
           cursor: pointer;
       }

       .hamburger span {
           width: 100%;
           height: 2px;
           background-color: white;
           transition: all 0.3s ease;
           border-radius: 1px;
       }

       .hamburger.active span:nth-child(1) {
           transform: rotate(45deg) translate(5px, 5px);
       }

       .hamburger.active span:nth-child(2) {
           opacity: 0;
       }

       .hamburger.active span:nth-child(3) {
           transform: rotate(-45deg) translate(5px, -5px);
       }

       /* Mobile Submenu Fix */
       .sub-dropdown {
           position: static;
           background-color: #00405e;
           width: 85%;
           margin: 0.5rem auto;
           border-radius: 4px;
           box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
           max-height: 0;
           overflow: hidden;
           transition: max-height 0.4s ease;
       }

       .dropdown-item.has-submenu.active .sub-dropdown {
           max-height: 500px;
       }

       .dropdown-item.has-submenu i {
           transform: translateY(-50%) rotate(0);
       }

       .dropdown-item.has-submenu.active i {
           transform: translateY(-50%) rotate(90deg);
       }
   }

   /* Video Background & Banner */
   .banner-container {
       position: relative;
       width: 100%;
       height: 100vh;
       overflow: hidden;
       background-color: #000;
   }

   .video-background {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: 1;
   }

   .video-background video {
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 0.9;
   }

   .overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.3);
       z-index: 2;
   }

   .banner-content {
       position: absolute;
       top: 40%;
       left: 50%;
       transform: translate(-50%, -50%);
       text-align: center;
       z-index: 3;
       width: 100%;
       max-width: 900px;
       padding: 2rem;
       color: #fff;
   }

   .banner-title {
       font-size: 3.5rem;
       font-weight: 500;
       line-height: 1.3;
       margin: 0;
       color: #ffffff;
       opacity: 0;
       position: absolute;
       width: 100%;
       left: 50%;
       transform: translateX(-50%);
       font-family: 'Poppins' !important;
   }

   .banner-title span {
       color: #ffffff;
   }

   .first-content {
       animation: fadeCycle 8s infinite;
   }

   .second-content {
       animation: fadeCycle 8s infinite 4s;
   }

   @keyframes fadeCycle {
       0% {
           opacity: 0;
       }

       10% {
           opacity: 1;
       }

       40% {
           opacity: 1;
       }

       50% {
           opacity: 0;
       }

       100% {
           opacity: 0;
       }
   }

   /* College About Section */
   .college-about-section {
       background-color: #002535;
       padding: 1.6rem 0;
   }

   .college-content-wrapper {
       max-width: 1200px;
       margin: 0 auto;
       padding: 2rem;
       text-align: center;
   }

   .college-section-heading {
       font-size: 2.5rem;
       font-weight: 700;
       color: #44789d;
       margin-bottom: 1.5rem;
       letter-spacing: 0.5px;
       line-height: 1.2;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
   }

   .college-section-heading span {
       font-weight: 300;
   }

   .college-description-text {
       font-size: 1rem;
       line-height: 1.8;
       color: #e0e0e0;
       margin-bottom: 2.5rem;
       max-width: 1000px;
       margin-left: auto;
       margin-right: auto;
       text-align: center;
       text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
   }

   .college-button-container {
       margin-top: 20px;
   }

   .college-action-button {
       display: inline-block;
       padding: 0.2rem 0.8rem;
       margin: 0 0.5rem;
       border-radius: 4px;
       font-weight: 600;
       transition: all 0.3s ease;
       cursor: pointer;
       border: none;
       font-size: 1rem;
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       text-decoration: none;
   }

   .college-primary-button {
       color: white;
       border: 2px solid #ffffff;
       border-radius: 8px;
   }

   .college-primary-button:hover {
       background-color: #ffffff;
       transform: translateY(-2px);
       color: #002535;
   }

   /* Mission & Vision */
   .mission-vision {
       background-color: #ffffff;
   }

   .mv-wrap {
       display: grid;
       place-items: center;
       padding: 100px 20px;
       background-color: #ffffff;
   }

   .mv-card {
       display: grid;
       grid-template-columns: 1.1fr 1fr;
       width: 100%;
       max-width: 1200px;
       box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
       overflow: hidden;
       background: #fff;
   }

   .mv-photo {
       min-height: 420px;
       background: #ddd url('/asset/img/mission.jpg') center/cover no-repeat;
   }

   .mv-panel {
       background: #ebf0f4;
       padding: 44px 36px;
   }

   .mv-block+.mv-block {
       margin-top: 44px;
   }

   .mv-title {
       color: #072e3f;
       font-weight: 500;
       letter-spacing: 0.02em;
       font-size: clamp(22px, 2.6vw, 34px);
       line-height: 1.2;
       margin: 0 0 8px;
   }

   .mv-text {
       font-size: clamp(14px, 1.2vw, 16px);
       color: #072e3f;
       margin: 0;
   }

   .mv-text+.mv-text {
       margin-top: 10px;
   }

   /* Facilities Section */
   .facilities-sec {
       background-color: #fff;
   }

   .facilities-wrapper {
       max-width: 1200px;
       margin: auto;
       padding: 60px 20px;
       background-color: #fff;
   }

   .facilities-heading {
       text-align: left;
       font-size: 32px;
       font-weight: 500;
       margin-bottom: 40px;
       color: #0d4463;
   }

   .facilities-heading span {
       color: #5a7c96;
       font-weight: 400;
   }

   .facilities-section {
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: center;
       gap: 40px;
   }

   .facilities-left {
       flex: 1;
       min-width: 250px;
       display: grid;
       grid-template-columns: repeat(3, 150px);
       grid-gap: 15px;
       justify-content: left;
   }

   .facility-icon {
       border-radius: 1.5rem;
       display: flex;
       justify-content: center;
       align-items: center;
       height: 150px;
       width: 150px;
       cursor: pointer;
       transition: all 0.3s ease;
       color: #000;
       font-size: 42px;
       border: 2px solid #000;
   }

   .facility-icon.active {
       background: #44789d;
       border: 2px solid #44789d;
       color: #fff;
   }

   .facility-icon:hover {
       background: #fff;
       border: 2px solid #44789d;
       color: #44789d;
   }

   .facilities-right {
       flex: 2;
       max-width: 500px;
       display: flex;
       flex-direction: column;
       align-items: center;
       text-align: center;
   }

   .slider {
       position: relative;
       width: 100%;
       max-width: 500px;
       overflow: hidden;
       border-radius: 15px;
   }

   .slides {
       display: flex;
       transition: transform 0.5s ease-in-out;
   }

   .slides img {
       width: 100%;
       height: 170px;
       object-fit: cover;
   }

   .dots {
       display: flex;
       justify-content: center;
       margin: 10px 0;
   }

   .dot {
       height: 10px;
       width: 10px;
       margin: 0 5px;
       background-color: #bbb;
       border-radius: 50%;
       display: inline-block;
       transition: background-color 0.3s ease;
       cursor: pointer;
   }

   .dot.active {
       background-color: #0d4463;
   }

   .facility-desc {
       margin-top: 20px;
       font-size: 15px;
       line-height: 1.6;
       max-width: 600px;
       color: #000;
   }

   /* Kutub Khana Section */
   .kutub {
       background-color: #fff;
       padding: 80px 0;
   }

   .kutub-section {
       display: flex;
       max-width: 1200px;
       margin: 50px auto;
   }

   .kutub-text {
       flex: 3;
       background: #dce8f1;
       padding: 110px 80px;
       text-align: left;
       display: flex;
       flex-direction: column;
       justify-content: center;
       border-top-left-radius: 100px;
   }

   .kutub-text h2 {
       color: #0d4463;
       font-weight: 300;
       font-size: 36px;
       margin-bottom: 15px;
       line-height: 1.3;
   }

   .kutub-text h2 span {
       color: #44789d;
       font-weight: 700;
   }

   .kutub-text p {
       color: #0d4463;
       font-size: 15px;
       line-height: 1.6;
       margin-bottom: 30px;
   }

   .kutub-buttons {
       display: flex;
       gap: 15px;
   }

   .kutub-buttons a {
       text-decoration: none;
       padding: 5px 15px;
       border-radius: 6px;
       border: 1px solid #44789d;
       font-size: 18px;
       transition: all 0.3s ease;
   }

   .btn-outline {
       background: transparent;
       color: #44789d;
   }

   .btn-filled {
       background: #44789d;
       color: #fff;
   }

   .btn-outline:hover {
       background: #44789d;
       color: #fff;
   }

   .btn-filled:hover {
       background: #44789d;
   }

   .kutub-image {
       flex: 2;
       background: url("/asset/img/Kutub Khana.webp") no-repeat center center;
       background-size: cover;
       position: relative;
   }

   .kutub-image::after {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 45, 75, 0.4);
   }

   /* Heritage Section */
   .heritage-bg {
       background-color: #fff;
   }

   .heritage-section {
       position: relative;
       max-width: 1200px;
       margin: 0 auto;
       padding: 4rem 1rem;
       background-color: #ffffff;
   }

   .heritage-row {
       display: flex;
       gap: 2rem;
       align-items: stretch;
       margin-block: 3.5rem;
   }

   .heritage-col {
       flex: 1;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   /* Typography */
   .heritage-row h2 {
       font-size: clamp(1.4rem, 2.5vw, 2rem);
       line-height: 1.2;
       font-weight: 400;
       color: #44789d;
       margin: 0;
   }

   .heritage-row p {
       max-width: 62ch;
       line-height: 1.7;
       margin: 0;
       color: #22414e;
   }

   .heritage-accent {
       color: #000000;
   }

   /* Center logo overlapping rows */
   .heritage-logo {
       position: absolute;
       left: 50%;
       top: 50%;
       transform: translate(-50%, -50%);
       z-index: 3;
       background: #fff;
       width: 260px;
       height: 260px;
       border-radius: 50%;
       padding: 10px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .heritage-logo img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       border-radius: 50%;
   }

   /* Curved gradient background for text box */
   .heritage-gradient-top {
       background: linear-gradient(to bottom, #dce7f7 0%, #ffffff 100%, transparent 100%);
       border-radius: 200px 0 0 0;
       padding: 5rem 9rem;
   }

   .heritage-gradient-bottom {
       background: linear-gradient(to bottom, #ffffff 0%, #dce7f7 100%, transparent 100%);
       border-radius: 0 0 200px 0;
       padding: 5rem 9rem;
       text-align: end;
   }

   @media (min-width: 769px) {
       .lap-head {
           text-align: end;
       }
   }

   /* Footer */
   .footer {
       background: url("/asset/img/Shareea.jpg") no-repeat center center/cover;
       color: #fff;
       padding: 50px 20px;
       position: relative;
   }

   .footer-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 45, 75, 0.7);
       z-index: 1;
   }

   .footer-content {
       position: relative;
       z-index: 2;
       display: flex;
       justify-content: space-between;
       align-items: flex-start;
       flex-wrap: wrap;
       max-width: 1200px;
       margin: auto;
   }

   .footer-left {
       flex: 1;
       min-width: 280px;
   }

   .footer-left img {
       width: 80px;
       margin-bottom: 15px;
   }

   .footer-left h2 {
       font-size: 40px;
       margin: 10px 0;
       font-weight: bold;
       line-height: 2.2rem;
   }

   .footer-left p {
       font-size: 17px;
       line-height: 1.2;
       margin: 5px 0;
   }

   .footer-social {
       margin-top: 25px;
       display: flex;
       gap: 12px;
   }

   .footer-social a {
       width: 25px;
       height: 25px;
       border-radius: 50%;
       background: #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 16px;
       color: #44789d;
       transition: all 0.3s ease;
       text-decoration: none;
   }

   .footer-social a:hover {
       background: #44789d;
       color: #fff;
   }

   /* Right Content */
   .footer-right {
       flex: 0.6;
       min-width: 260px;
       text-align: center;
   }

   .footer-right button {
       background: transparent;
       color: #fff;
       border: 1px solid #fff;
       padding: 5px 20px;
       font-size: 14px;
       margin-bottom: 15px;
       transition: all 0.3s ease;
       background-color: #44789d;
   }

   .footer-right img {
       width: 120px;
       background: #fff;
       padding: 1px;
   }

   /* Responsive Styles */
   @media (max-width: 1200px) {
       .header {
           padding: 2rem 5%;
       }

       .header.scrolled {
           padding: 1rem 5%;
       }
   }

   @media (max-width: 992px) {
       .facilities-section {
           flex-direction: column;
       }

       .kutub-section {
           flex-direction: column;
       }

       .kutub-text {
           padding: 30px;
           text-align: center;
           border-top-left-radius: 0;
       }

       .kutub-buttons {
           justify-content: center;
       }

       .kutub-image {
           height: 300px;
       }

       .heritage-row {
           flex-direction: column;
           text-align: center;
       }

       /* Heading comes first in bottom row */
       .heritage-bottom-row .heritage-heading-col {
           order: -1;
           margin-bottom: .75rem;
       }

       .heritage-bottom-row .heritage-text-col {
           order: 0;
       }

       /* Stack inner content */
       .heritage-col {
           flex-direction: column;
       }

       /* Adjust center logo on mobile */
       .heritage-logo {
           position: static;
           transform: none;
           margin: -1rem auto 1rem;
       }

       .heritage-gradient-top {
           background: linear-gradient(to bottom, #dce7f7 0%, #ffffff 100%, transparent 100%);
           border-radius: 20px;
           padding: 1rem 1rem;
       }

       .heritage-gradient-bottom {
           background: linear-gradient(to bottom, #dce7f7 0%, #ffffff 100%, transparent 100%);
           border-radius: 20px;
           padding: 1rem 1rem;
           text-align: start;
       }
   }

   @media (max-width: 768px) {
       .banner-container {
           height: 80vh;
       }

       .banner-title {
           font-size: 2.2rem;
       }

       .facilities-left {
           grid-template-columns: repeat(6, 48px);
           gap: 12px;
       }

       .facility-icon {
           height: 45px;
           width: 45px;
           font-size: 20px;
       }

       .slides img {
           height: 220px;
       }

       .kutub-text h2 {
           font-size: 22px;
       }

       .kutub-text p {
           font-size: 14px;
       }

       .footer-content {
           flex-direction: column;
           align-items: center;
           text-align: center;
       }

       .footer-left,
       .footer-right {
           flex: unset;
           margin-bottom: 25px;
       }

       .footer-social {
           justify-content: center;
           gap: 12px;
       }

       .mv-card {
           grid-template-columns: 1fr;
       }

       .mv-photo {
           min-height: 300px;
       }

       .mv-panel {
           padding: 32px 22px;
       }
   }

   @media (max-width: 480px) {
       .banner-container {
           height: 70vh;
       }

       .banner-title {
           font-size: 1.8rem;
       }

       .college-content-wrapper {
           padding: 0.8rem;
       }

       .college-section-heading {
           font-size: 1.8rem;
       }

       .college-description-text {
           font-size: 0.9rem;
           margin-bottom: 1.2rem;
       }

       .college-action-button {
           padding: 0.4rem 1rem;
           font-size: 0.85rem;
       }

       .mv-wrap {
           padding: 50px 14px;
       }

       .mv-photo {
           min-height: 240px;
       }

       .mv-panel {
           padding: 24px 18px;
       }

       .mv-title {
           font-size: 22px;
       }
   }

   @media (min-width: 1340px) {
       .logo-container img {
           height: 35px;
           width: auto;
       }
   }

   .library-section {
       background-color: #ffffff;
       color: rgb(255, 255, 255);
       text-align: center;
       padding: 120px 20px;
       font-family: Arial, sans-serif;
   }

   /* Heading & text */
   .library-content h1 {
       font-size: 2.5rem;
       font-weight: 600;
       margin-bottom: 10px;
       color: #000;
   }

   .library-content p {
       font-size: 1rem;
       color: #d1d1d1;
       margin-bottom: 30px;
   }

   /* Video container styling */
   .video-container {
       max-width: 1200px;
       margin: 0 auto;
       border-radius: 25px;
       overflow: hidden;
       position: relative;
       aspect-ratio: 16/7;
       background: #000;
   }

   /* Make video cover the container */
   .video-container video {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
   }

   /* Responsive Design */
   @media (max-width: 992px) {
       .library-content h1 {
           font-size: 2rem;
       }

       .video-container {
           border-radius: 20px;
       }
   }

   @media (max-width: 600px) {
       .library-content h1 {
           font-size: 1.6rem;
       }

       .library-content p {
           font-size: 0.9rem;
       }

       .video-container {
           border-radius: 15px;
       }
   }

   .kuthubkhana-para {
       max-width: 1200px;
       margin-left: auto;
       margin-right: auto;
       padding-top: 20px;
   }

   .kuthubkhana-para p {
       text-align: start;
       color: #000000;
       line-height: 1.6;
   }

   .kuthubkhana-para img {
       width: 100%;
       max-width: 1200px;
       margin: 25px 0;
       border-radius: 25px;
   }

   .mt-2 {
       margin-top: 20px;
   }

   /* Container with max width and center alignment */
   .image-container {
       max-width: 1200px;
       margin: 0 auto;
       /* center the container */
       display: flex;
       justify-content: center;
       /* center images horizontally */
       align-items: center;
       gap: 20px;
       /* space between images */
       flex-wrap: wrap;
       /* allows wrapping on small screens */
       padding: 0 15px;
       /* little padding on sides */
   }

   /* Images responsive */
   .image-container img {
       width: 48%;
       /* two images in one row */
       height: auto;
       border-radius: 8px;
       /* optional: rounded corners */
       display: block;
       max-width: 100%;
   }

   /* Mobile view: stack images */
   @media (max-width: 768px) {
       .image-container img {
           width: 100%; 
           
       }
   }