.main-contents-home-page {
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}

.card {
    height: 370px;
    background: #fff;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 1.2rem 20px rgba(0, 0, 0, 0.25);
    margin: 10px;
    border-bottom: 5px solid #004b8c !important;
}

.card:hover {
    transform: scale(1.03);
    transition: 0.5s;
    border: 3px solid #004b8c;
}

.card-image img {
    height: 260px;
    width: 100%;
    box-shadow: 0 1.2rem 20px rgba(0, 0, 0, 0.25);
    /* border-radius: 10px; */
}

.card-content {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
    bottom: -60px;
    position: absolute;
    width: 100%;
    transition: all 0.5s ease-in-out;
    padding: 17px 15px;
}

.card-content h3 {
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}
.card-content h4 {
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}

.card-content .row {
    margin-top: 25px;
    justify-content: center;
}

.card-content li {
    text-align: center;
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.card-content a {
    color: #fff !important;
    text-decoration: none;
}

.card-content a:hover {
    background-color: #777;
    color: #fff;
    border-radius: 2px;
    transition: 0.25s ease-in;
}

.card:hover .card-content {
    bottom: 0;
}

.header-section-profiles {
    background-color: #004b8c;
    text-align: center;
    padding: 10px;
    color: #fff;
    margin: 0;
    font-size: 18px;
}
.header-section-profiles a {
    text-decoration: none;
}
.auto-scroll a {
    text-decoration: none;
    color: #004b8c !important;
}
.auto-scroll span {
    color: #000;
}

.paragraph-profile-card {
    /* text-align: justify; */
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.button-profile-card {
    text-decoration: none;
    text-align: center;
    width: 40%;
    background-color: #004b8c;
    /* Primary blue color */
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
}

.button-profile-card:hover {
    background-color: #004b8c !important;
    color: #fff !important;
    /* Darker blue on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    /* Slight lift effect */
}

.button-profile-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    /* Focus ring */
}

.button-profile-card:active {
    transform: translateY(1px);
    /* Slight press-down effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* .auto-scroll {
    max-height: 200px;
    overflow: hidden;
    position: relative;
} */

.auto-scroll {
    overflow-y: auto;
    position: relative;
}

.img-museum {
    width: 100%;
    height: 290px;
    border-radius: 10px;
}

.carousel-facilities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    flex-grow: 1;
    margin: 0 10px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 10px 20px 10px;
}

.slider-item {
    min-width: 250px;
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    transition: transform 0.3s;
}
@media (max-width: 768px) {
    .common-mobile-view {
        padding: 10px;
    }
    .slider-item {
        min-width: 228px;
        /* margin: 0 20px; */
    }
    .slider-wrapper {
        overflow: hidden;
        flex-grow: 1;
        margin: 0 0px;
    }
    .slider-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        padding: 0;
    }
    .container-slider-facilities {
        padding: 20px;
    }
    .paragraph-profile-card {
        margin-bottom: 0;
        font-size: 11px;
    }
}

.slider-item:hover {
    transform: scale(1.05);
}

.slider-item img {
    width: 100%;
    display: block;
    height: 180px;
    /* border-radius: 8px; */
}

.slider-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    /* padding: 10px 0; */
    /* background-color: #fff; */
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.slider-item a {
    text-decoration: none;
}

.btn-slider-home {
    background-color: #21252b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-slider-home:hover {
    background-color: #333;
}

.bg-footer {
    background-color: #000;
    /* background: url(../images/footer-top-bg.jpg) repeat #000; */
    padding: 50px 0 30px;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    text-decoration: none;
}

.footer-link a:hover {
    color: #004b8c;
}

.contact-info {
    color: #fff;
    font-size: 14px;
}
.contact-info a {
    text-decoration: none;
}
.site-visitors-counter {
    color: #fff !important;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.facebook {
    background-color: #4e71a8;
    color: #ffffff;
}

.twitter {
    background-color: #55acee;
    color: #ffffff;
}

.google {
    background-color: #d6492f;
    color: #ffffff;
}

.apple {
    background-color: #424041;
    color: #ffffff;
}

.footer-alt {
    color: #fff;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
    color: #fff !important;
    font-size: 18px;
}

.footer-heading:after {
    content: "";
    width: 25px;
    border-bottom: 1px solid #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #fff;
}

/* Card Section Styling */

.card-section {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #f1f9ff;
}

.card-section p {
    font-size: 0.8rem;
    color: #000 !important;
    transition: color 0.3s;
}

.card-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stylish Gradient Border */
.card-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #1dd1a1, #48dbfb);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.5s;
}

.card-section:hover::before {
    opacity: 1;
    transform: scale(1.05);
    animation: gradient-animation 3s infinite;
}

/* Gradient Animation */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Icon Styling */
.icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-container:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Text Styling */

.card-link:hover p {
    color: #fff;
}

/* Link Styling */
.card-link {
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: none;
}

/* Hidden dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #004b8c;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 40%;
    top: 0;
}

/* Show dropdown menu when hovering over the parent menu item */
.menu-item:hover > .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

/* Style for the dropdown list */
.dropdown-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #004b8c;
}

/* Style for each dropdown item */
.dropdown-item {
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    display: block;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
    color: #004b8c !important;
}

/* Styling for the parent menu link */
.menu-link {
    text-decoration: none;
    color: #333;
}

/* Optional: Add space between menu items */
.menu-item {
    position: relative;
    padding: 10px 15px;
    color: #000 !important;
}

/* Position the nested dropdown */
.dropdown-menu .dropdown-menu {
    left: 60%;
    top: 0;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .card {
        height: 340px;
        margin: 0px;
        margin-bottom: 30px;
        padding: 0;
        /* Reduce padding */
    }

    .card-image img {
        height: 200px;
        width: 100%;
    }

    .card-content {
        position: relative;
        bottom: 0;
        padding: 10px;
    }

    .header-section-profiles {
        font-size: 0.9rem;
        /* Adjust header size for smaller screens */
        padding: 8px;
    }

    .card-content h3 {
        font-size: 1rem;
        /* Adjust heading size */
    }

    .card-content .row {
        margin-top: 8px;
        justify-content: center;
    }

    .button-profile-card {
        width: 60%;
        /* Adjust button width */
        padding: 3px 10px;
    }

    .card-section p {
        font-size: 0.6rem;
    }

    .card-section {
        padding: 10px !important;
    }

    .icon-container {
        width: 30px;
        height: 30px;
    }

    .img-museum {
        height: 260px;
    }
}
.photo-gallery-img {
    width: 100%;
    height: 145px;
}
.director-img {
    object-fit: contain;
}
.heading-facilities-home {
    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 768px) {
    .photo-gallery-img {
        width: 100%;
        height: 140px;
    }
}
.bio-breadcrumb {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bio-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.bio-breadcrumb ul li {
    display: flex;
    align-items: center;
}

.bio-breadcrumb ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.bio-breadcrumb ul li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.bio-breadcrumb ul li::after {
    content: "›";
    margin-left: 8px;
    color: #777;
    font-weight: bold;
}

.bio-breadcrumb ul li:last-child::after {
    content: "";
}

.bio-breadcrumb ul li.active {
    color: #000000;
    font-weight: 600;
}

/* Optional: Add a subtle animation for the active item */
.bio-breadcrumb ul li.active {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.sidebar {
    background-color: #004b8c;
    padding: 20px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

/* Add border bottom to all links except the last one */
.sidebar-nav li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Light border color */
    padding-bottom: 10px;
    /* Add spacing below the border */
}

.sidebar-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background-color: #aa2609;
    color: #fff;
}

.sidebar-nav a.active {
    background-color: #aa2609;
    color: #fff;
}
.sidebar-heading {
    color: #fff;
    font-size: 30px;
    text-align: center;
    margin-bottom: 5px;
}
.sidebar-nav a i {
    margin-right: 10px;
    font-size: 18px;
}

.img-history {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom:10px;
}

.divider {
    border-bottom: 2px solid black;
    margin-bottom: 15px;
}

/* asdas */
.list-honours {
    list-style: disc;
    font-size: 20px;
    margin-bottom: 10px;
}
.card-custom-new {
    width: 100%;
    max-width: 95%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-bottom: 4px solid #000;
}

.profile-img-new {
    /* border-radius: 50%; */
    overflow: hidden;
    margin-right: 15px;
}

.profile-img-new img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 4 / 3;
}

.profile-info-new h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.profile-info-new p {
    font-size: 15px;
    color: #666;
    margin-bottom: 3px;
}

.contact-new a {
    text-decoration: none;
    color: #333;
}
.imgcard-new {
    border-right: 2px solid #333;
}
.event-heading {
    color: #000000;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0;
}

.event-subheading {
    color: #333;
    font-size: 17px;
}

.card-event {
    /* height: 300px; */
    background: #fff;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 1.2rem 20px rgba(0, 0, 0, 0.25);
    border-bottom: 5px solid #004b8c !important;
    transition: all 0.3s ease-in-out; /* Smooth transition */
    margin-bottom: 40px;
}

.card-event:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 1.5rem 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    border-bottom: 5px solid #aa2609 !important; /* Change border color on hover */
    cursor: pointer;
}

/* Optional: Add hover effect to image inside the card */
.card-event img {
    transition: transform 0.3s ease-in-out;
}

.card-event:hover img {
    transform: scale(1.02); /* Slight zoom effect on image */
}

.card-body-event {
    padding: 10px;
    max-height: 80px; /* Set a max height before scrolling starts */
    overflow-y: auto; /* Enable vertical scrolling */
}

.card-text-event {
    text-align: justify;
    font-size: 15px;
    color: #333;
}
.card-img-event {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.btn-view-profile {
    background: #004b8c;
    color: #fff;
}
.btn-view-profile:hover {
    background: #aa2609;
    color: #fff;
    transform: scale(1.04);
    transition: 0.3s;
}
.custom-list li {
    list-style: disc;
}
.card-img-top-saif {
    /*height: 200px;*/
    object-fit: cover;
    aspect-ratio:4/3;
}

.feedback-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feedback-img {
    background-image: url("../feedback/feedback-form.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

.form-side {
    background-color: #ebebeb;
    padding: 40px;
}

.feedback-header {
    text-align: center;
    margin-bottom: 25px;
}

.captcha-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.btn-submit {
    border-radius: 30px;
    padding: 10px 30px;
}

@media (max-width: 767px) {
    .feedback-img {
        height: 200px;
    }
    .imgcard-new {
    border-right: none;
    }
    .video-heading{
        position:static;
    }
}

.contact-info {
    display: inline-block;
    width: 100%;
    /* text-align: center; */
    margin-bottom: 10px;
}
.contact-info-icon {
    margin-bottom: 15px;
}
.contact-info-item {
    background: #004b8c;
    padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}
.contact-page-form.contact-form input {
    margin-bottom: 5px;
}
.contact-page-form.contact-form textarea {
    height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
    background: #004b8c;
    width: 150px;
    border-color: #004b8c;
}
.contact-info-icon i {
    font-size: 30px;
    color: #fff;
}
.contact-info-text p {
    margin-bottom: 0px;
}
.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info-text span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    /* margin-bottom: 20px; */
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}
.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
    background: #004b8c none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover {
    background: #ffffff;
    transition: all 0.4s ease-in-out 0s;
    border-color: #004b8c;
    color: #000;
}
.single-input-field h4 {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 14px;
}
.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    background: #cecece;
    padding: 20px;
}

.contact-page-map {
    margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}
.ytp-info-panel-preview {
    background: #000 !important;
}

.ytp-small-mode .ytp-info-panel-preview {
    background: #000 !important;
}
.focus-outline:focus {
    outline: none;
}

.focus-outline:focus .card-section {
    outline: 3px solid #0d6efd; /* Bootstrap primary */
    outline-offset: 4px;
    border-radius: 8px;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.3);
    transition: box-shadow 0.2s ease, outline 0.2s ease;
}
.main-menu ul > li {
    margin-right: 8px !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keep your existing hover effect intact */
.nav-item:hover > .sub-nav {
    display: block;
}

/* Keyboard toggled submenus hidden by default */
.sub-nav[data-keyboard-toggle="false"] {
    display: none;
}
.org-structure {
    color: #000;
}

.org-header {
    background: #004b8c;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.org-main {
    text-align: center;
}

.org-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.org-subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.org-badge {
    display: inline-block;
    background: #000000;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}

.org-level-1,
.org-level-2,
.org-level-3,
.org-level-4,
.org-level-5,
.org-level-6 {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.org-node {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    position: relative;
    min-width: 240px;
    border-top: 4px solid #004b8c;
}

.org-node-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.org-subnodes {
    margin-top: 10px;
}

.org-subnode {
    background: #f8f9fa;
    padding: 8px;
    margin: 5px 0;
    border-radius: 4px;
    font-size: 1rem;
    border-left: 3px solid #004b8c;
    text-align: start;
}

/* Different colors for different levels */
.governing {
    border-top-color: #004b8c;
}
.chairman {
    border-top-color: #004b8c;
}
.research {
    border-top-color: #004b8c;
}
.finance {
    border-top-color: #004b8c;
}
.director {
    border-top-color: #004b8c;
}
.thrust {
    border-top-color: #004b8c;
}
.units {
    border-top-color: #004b8c;
}
.admin {
    border-top-color: #004b8c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .org-level-3,
    .org-level-5,
    .org-level-6 {
        flex-direction: column;
        align-items: center;
    }

    .org-node {
        margin-bottom: 15px;
        width: 80%;
    }
}

/* Common line container for levels */
.org-level-1,
.org-level-2,
.org-level-3,
.org-level-4,
.org-level-5,
.org-level-6 {
    position: relative;
}

/* Vertical line from parent to children */
.org-level-1::after,
.org-level-2::after,
.org-level-3::after,
.org-level-4::after,
.org-level-5::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 20px;
    width: 2px;
    background: #004b8c;
}

/* Horizontal connector between child nodes */
.org-level-3::before,
.org-level-5::before,
.org-level-6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #004b8c;
    margin-top: -10px;
}

/* Vertical line from node to horizontal connector */
.org-node::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #004b8c;
    transform: translateX(-50%);
}

/* Optional: Remove the line for topmost node */
.org-level-1 .org-node::before {
    display: none;
}
.slide-content {
    position: relative;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 70%;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slide-title h3 {
    margin: 0;
}

/* 🔽 Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .slide-title {
        bottom: 10px;
        left: 15px;
        padding: 10px 15px;
        font-size: 1rem;
        max-width: 90%;
        border-radius: 6px;
    }
    .slide-title h3 {
        font-size: 12px !important;
    }
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px; /* Optional: Set a max width */
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background: url("https://img.icons8.com/ios-filled/100/ffffff/play-button-circled.png")
        no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Ensures the click goes to the link */
}


@media screen and (max-width:1024px) {
    .ico-skip a{
        font-size: 12px !important;
    }
}
/*.normal-text {*/
/*    text-align:justify;*/
/*}*/

