.banner {
    background: #0000004e;
    padding: 200px 0px 300px 0px !important;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner #video {
    height: 100%;
    width: 101%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 15%;
    /* left: 0; */
    color: #fff;
}

.banner-btn {
    background: linear-gradient(180deg, #720d1d, #1f0308);
    background-color: red;
    color: #fff;
    position: relative;
    padding: 6px 10px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: padding 0.3s ease;
    width: max-content;
    font-family: var(--font-crimson_pro);
    font-size: var(--header-font-size);
}

.banner-btn span {
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-btn:hover {
    transition: padding 0.3s ease;
    width: max-content;
    padding: 6px 40px;
    color: #fff;
}

.banner-btn:hover span {
    opacity: 1;
}

.hero-title {
    font-family: var(--font-bree_serif);
    font-size: var(--hero-font-size);
    font-weight: 900;
}

.marquee-main {
    width: 100%;
    z-index: 11;
    position: fixed;
    bottom: 0;
}

marquee {
    font-size: 1.6rem;
    font-family: var(--font-crimson_pro);
    color: #000;
    background: #fff;
    border: 1px solid gray;
    border-bottom: 0px;
    margin-bottom: -5px;
    height: 32px;
}

.update-btn {
    background: linear-gradient(180deg, #720d1d, #1f0308);
    background-color: red;
    color: #fff;
    font-family: var(--font-crimson_pro);
    font-size: 1.6rem;
    height: max-content;
    border-radius: 0px;
    width: auto !important;
    white-space: nowrap;
    text-wrap: nowrap;
}

.update-btn:hover {
    color: #fff;
}

.help-section {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#86868663, #7e7e7e52);
}

.help-section img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    z-index: -1;
}

.help-section > .row .sub-title2 {
    position: absolute;
    top: 0;
}

.help-card h3 {
    font-family: var(--font-crimson_pro);
    font-size: 3rem;
}

.help-card {
    overflow: hidden;
    transition: all ease 0.5s;
    border-radius: 5px;
}

.help-card:hover {
    transform: scale(1.03);
    border-radius: 0px;
}

.null-row {
    position: absolute;
    top: 20%;
}

.social-icons-wrapper {
    position: fixed;
    right: 19px;
    bottom: 95px;
    z-index: 9;
}

.social-icons-wrapper ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

.social-icon {
    color: #fff;
    transition: color 0.5s ease;
    font-size: 25px;
}

.scroll-activated .social-icon.facebook i {
    color: #3b5998;
    /* Facebook Blue */
}

.scroll-activated .social-icon.twitter i {
    color: #1da1f2;
    /* Twitter Blue */
}

.scroll-activated .social-icon.instagram i {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    /* Instagram gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.scroll-activated .social-icon.linkedin i {
    color: #0077b5;
    /* LinkedIn Blue */
}

.scroll-activated .social-icon.youtube i {
    color: #ff0000;
    /* YouTube Red */
}

.slick-prev,
.slick-next {
    /* background-color: white; */
    border-radius: 50%;
    color: black;
    font-size: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px;
    color: black;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: white;
}

.slick-prev {
    left: -50px;
    /* Adjust position as needed */
}

.slick-next {
    right: -50px;
    /* Adjust position as needed */
}

.slick-slide {
    margin: 0 10px;
    /* Adjust the space between slides */
}

.slider {
    margin: 0 -10px;
    /* Adjust to compensate for the margin added to slides */
}

.card {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-crimson_pro);
    font-size: var(--sub-title-font-size);
    color: #000;
}

.card a img {
    width: max-content;
    -moz-width: max-content;
    -webkit-width: max-content;
    max-width: 100%;
    height: 70px;
    object-fit: contain !important;
    z-index: 9;
}

.utube-video {
    width: 65%;
    aspect-ratio: 16/9;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #0000005e;
}

.highlights-cards > .card:hover {
    transform: translateY(20px);
}

.highlights-cards > .card:hover .update-overlay {
    top: 40%;
}

.highlights-cards > .card {
    position: relative;
    height: 400px;
    box-shadow: 0 7px 10px #00000080;
    transition: all 0.5s ease;
    flex: 0 0 23.5%;
    /* Ensures the cards take up 24% of the row width */
}

.highlights-cards > .card > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #0000004a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-overlay h3,
.card-overlay p {
    font-family: var(--font-crimson_pro);
}

.card-overlay h3 {
    font-size: var(--sub-title-font-size);
}

.card-overlay p {
    font-size: var(--sub-title-body);
}

.sindh-glance p {
    font-size: calc(var(--sub-title-body) - 0.2rem);
    font-family: var(--font-crimson_pro);
}

.update-overlay {
    background: linear-gradient(#0000, #6b0707bf);
    position: absolute;
    top: 75%;
    width: 100%;
    bottom: 0;
    transition: all 0.5s ease;
}

.update-overlay span {
    font-size: var(--sub-title-body);
}

.border {
    width: 75%;
    height: 8px;
    background: #054a91;
}

.messages-wrapper {
    background: #fff;
}

.sindh-glance {
    margin-top: 50px;
    width: 100%;
    position: relative;
    background: linear-gradient(#86868633, #7e7e7e52);
}

.sindh-glance > img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;
}

.glance-card-img {
    width: 60px;
    height: 60px;
}

.explore-btn {
    background: linear-gradient(180deg, #720d1d, #1f0308);
    background-color: red;
    color: #fff;
    padding: 0.5rem 2rem;
    height: 7.9rem;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: var(--font-crimson_pro);
    font-size: var(--sub-title-font-size);
}

.explore-btn:hover {
    color: #fff;
}

.message-slider-img,
.message-slider-img img {
    width: 90px;
    /* height: 90px; */
    border-radius: 60px;
    background: transparent;
    cursor: pointer;
}

/* Add horizontal spacing */
.message-slider-img {
    margin: 0px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* width: max-content !important; */
}

/* .message-slider-img:first-child {
    margin-left: -60px;
    z-index: 12;
} */

.message-img img {
    width: 100%;
    border-radius: 300px;
}

.quote-img {
    width: 60px;
    height: 60px;
}

.message-author {
    font-family: var(--font-crimson_pro);
    font-size: var(--sub-title-font-size);
    font-weight: 700;
    color: #054a91;
}

.message-author-designation {
    font-family: var(--font-crimson_pro);
    font-size: calc(var(--header-font-size) - 0.2rem);
    color: #000;
}

.message {
    font-family: var(--font-crimson_pro);
    font-size: var(--sub-title-body);
    color: #000;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

#toggleButton {
    background: linear-gradient(180deg, #720d1d, #1f0308);
    outline: none;
    text-decoration: none;
    font-family: var(--font-crimson_pro);
    font-size: 1.5rem;
    background-color: #720d1d;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; /* Transition for all properties */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Initial subtle box-shadow */
}

#toggleButton:hover {
    background-color: #1f0308;
    transform: scale(1.05); /* Slightly scale the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Slightly larger shadow on hover */
}

#toggleButton:focus {
    outline: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5); /* Larger shadow with glow effect on focus */
    transition: box-shadow 0.3s ease; /* Smooth transition for box-shadow */
}

.msg-img4 {
    height: 500px !important;
}

.collpasible-icon i {
    font-size: 20px;
    cursor: pointer;
}

.circleText {
    font-size: 9px;
}

.click-box {
    background: #fff;
    border: 1px solid #c6c6c6;
    border-radius: 0;
    box-shadow: 5px 10px 18px #c6c6c6;
    overflow-x: hidden;
    padding: 10px;
}

table,
table tr {
    border: none;
}

.opprtunities-wrapper {
    position: relative;
    overflow: hidden;
}

.svg-map {
    position: absolute;
    left: 0;
    top: 0;
}

.svg-map > svg {
    padding: 30px 0px;
}

.opp-row1 {
    border-bottom: 3px solid gray !important;
}

.opp-row2 {
    border-bottom: 2px solid gray !important;
}

.opp-title h3 {
    font-size: var(--sub-title-body);
    font-family: var(--font-crimson_pro);
    font-weight: 700;
}

.opp-title p {
    font-size: 15px;
}

.opp-table {
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px rgba(128, 128, 128, 0.447);
    height: max-content;
    z-index: 8;
}

.opp-table-btns .btn {
    font-family: var(--font-montserrat);
    font-size: 1.6rem;
    color: #fff;
}

.opportunity p,
.statistics p {
    font-family: var(--font-montserrat);
    font-size: 1.6rem;
}

#opportunities-table h3 {
    color: #720d1d;
}
/* Nazish Css */
.video-slide .slick-prev,
.video-slide .slick-next {
    z-index: 10; /* Ensure buttons are above the video */
    position: absolute;
    top: 50%; /* Vertically center the buttons */
    transform: translateY(-50%);
    color: white; /* Button color */
    border-radius: 50%; /* Optional: Rounded buttons */
    padding: 10px; /* Button size */
    width: 40px;
    height: 40px;
}
.video-slide .slick-prev {
    left: -50px; /* Adjust position to the left */
}

.video-slide .slick-next {
    right: -50px; /* Adjust position to the right */
}

.video-slide iframe {
    pointer-events: none; /* Prevent the iframe from blocking interaction with buttons */
}
@media screen and (min-width: 1920px) and (max-width: 2540px) {
    .video-slide {
        max-width: 900px !important;
    }
}
@media screen and (min-width: 1440px) and (max-width: 1920px) {
    .video-slide {
        max-width: 800px !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1240px) {
    .video-slide {
        max-width: 700px !important;
    }
}
@media screen and (min-width: 900px) and (max-width: 1024px) {
    .video-slide {
        max-width: 650px !important;
    }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
    .video-slide {
        max-width: 550px !important;
    }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
    .video-slide {
        max-width: 400px !important;
    }
}
@media screen and (min-width: 400px) and (max-width: 500.99px) {
    .video-slide {
        max-width: 270px !important;
    }
}
@media screen and (min-width: 320px) and (max-width: 400.99px) {
    .video-slide {
        max-width: 200px !important;
    }
}
