.outer.banner-video-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination-bullet {
    background: #716e6e;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #E5033F;
    opacity: 1;
}

.heroSwiper .swiper-pagination {
    bottom: 20px !important;
    z-index: 100;
}

/* Swiper Navigation Arrows */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 101; /* Ensure arrows are above the text overlay (z-index: 10) */
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: #E5033F;
}

.heroSwiper .swiper-button-prev {
    left: 20px;
}

.heroSwiper .swiper-button-next {
    right: 20px;
}

@media (max-width: 768px) {
    .heroSwiper .swiper-pagination {
        bottom: 20px !important;
    }
    
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: none; /* Hide arrows on mobile for cleaner look */
    }
}

.banner-video-section .video-container {
    width: 100%;
    position: relative;
    overflow: visible;
}

.banner-video-section video {
    object-fit: cover;
    position: absolute;
    height: 600px;
    width: 100%;
    top: 0;
    left: 0;
}

.image-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.image-carousel:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.image-carousel img {
    object-fit: contain;
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.banner-video-section .video-container,
.image-carousel {
    height: auto;
}

@media (max-width: 767px){
#carousel-image.hero-image {
    height: 600px;
    object-fit: cover;
}
}

.banner-video-section .video-container:after {
    display: none;
}

.banner-video-section .video-container.no-layer:after {
    display: none;
}

.banner-video-section h1 {
    text-transform: uppercase;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1;
    color: white;
}

.banner-video-section .desc {
    color: white;
    font-weight: 400;
    font-size: var(--font-md);
}

.banner-video-section .banner-text {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    margin: auto;
}

.banner-headings {
    width: 100%;
    text-align: left;
    padding: var(--spacing-sm) 0;
    max-width: max-content;
    margin: 0 auto 0 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.banner-boxes {
    padding: 32px 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.banner-text.show-text .banner-headings,
.banner-text.show-text .banner-boxes {
    opacity: 1;
    pointer-events: auto;
}

.banner-headings h1 {
    font-size: var(--banner-sm);
    text-align: left;
    color: #fff;
    font-weight: 800;
    text-transform: none;
    font-family: 'Playfair Display', serif;
}

.banner-headings p {
    font-size: var(--font-3xl);
    text-align: left;
    color: #fff;
    font-weight: 300;
}

.about-section {
    padding: var(--spacing-xl) 0 var(--spacing-xl) var(--section-padding-x);
    display:flex;
    align-items: flex-start;
}

.about-section p {
    font-size: var(--font-md);
    font-weight: 400 !important;
    padding: 8px 0 !important;
}

.about-section .sec-name {
    padding: 0;
    height:100%;
    margin: 0;
    display:flex;
    align-self: flex-start;
}
.supported-by{
    padding: var(--section-padding-y) 40px 130px 40px;
    background-color: #F2F2F2;
}

.supported-by-images {
    display: flex;
    margin-top: 20px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.supported-by-images img{
    max-width:250px;
    width: 80%;
    height: max-content;
}

@media (max-width: 767px){
    .supported-by{
        padding: 0px;
    }

    .supported-by-images img{
        max-width: 170px;
    }

    .supported-by-images {
        gap: 20px;
    }
}

.services-section {
    position: relative;
}

.news {
    position: relative;
}

.services-section .prime-sec-name {
    padding: 22px  0 0 0;
}

.social-section .sec-name {
    padding: 14px 0 0 0;
}

.social-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    cursor: grab;
    /* scrollbar-width: none; */
    /* -ms-overflow-style: none; */
    padding-bottom: 8px;
}

.social-row::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #831818;
}

.social-row img {
    height: 50px;
    width: 50px;
}

.social-row.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.social-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.social-card a {
    height: 50px;
    width: 75px;
    font-size: var(--font-sm);
}

.social-card a img {
    height: 20px;
}

.news-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.news-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px ;
  cursor: pointer;
}
/* 
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px ;
  cursor: pointer;
  height: 300px;
}


.gallery-card img {
  width: 100%;
  height:300px;
  object-fit: contain;
}

.gallery-title-hm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    align-content: center;
    padding: 10px 25px;
    font-weight: 600;
    color: white;
    background: red;
    height: 89px;
    font-size: 16px;
} */

.news-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-title-hm {
position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    align-content: center;
    padding: 10px 25px;
    font-weight: 600;
    color: white;
    background: red;
    height: 120px;
    font-size: 16px;
    /* /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); */
}

/* Responsive */
@media (max-width: 768px) {
  .news-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
    .social-card {
        flex: 0 0 85%;
        min-width: 85%;
    }

section.about-section {
    padding: 15px;
            padding-top: 32px;
}
.about-section .col-md-6.col-sm-12 {
    max-width: 90vw;
    padding-right: 0;
}
section.services-section {
    padding: 0;
}
.services-section .col-lg-3.col-md-6.col-sm-12.box.aos-init.aos-animate {
    padding: 0;
}

.services-section h2{
    width: 100% !important;
}
section.ticker {
    padding-left: var(--spacing-sm);
}
.tick-box {
    padding: 15px;
    padding-left: 0 !important;
}

.social-section .col-lg-10.col-md-12.col-sm-12 {
    padding: 0;
}
}

.news .sec-name {
    padding: 18px 0 0 0;
}

.news .sec-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    color: #fff;
    align-items: center;
}

.clients .sec-name {
    padding: 19px 0 0 0;
}

.services-section .sec-name {
  display: flex;
  align-items: flex-start;
}

.news-lines-bg {
    position: relative;
}

.news-lines-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/homepage/section-lines-bg.png');
    background-size: cover;
    /* Adjust as needed */
    background-position: center;
    /* Adjust as needed */
    opacity: 0.9;
    /* Adjust the opacity */
    z-index: -1;
    /* background-image: url('../img/homepage/section-lines-bg.png');
    background-repeat: no-repeat; */
}

.ticker {
    background-color: #E5033F;
    padding: 10px 0px 0px var(--section-padding-x);
}

.social-section {
    padding: 0;
}
.social-section .sec-data{
    margin: 0 10px;
}
.social-section h4 {
    padding: 20px 0 30px 0;
    /* font-weight: 700; */
}

.social-row {
    padding: 60px 0 20px 0;
}

.social-row h2 {
    line-height: 60px;
}

.social-section iframe {
    width: 100%;
    height: 290px;
}

.social-section a {
    background: #0374E5;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: var(--spacing-xl) 0;
    display: flex;
    width: max-content;
    border-radius: 32px;
    text-decoration: none;
}


@media(max-width: 750px) {
    .social-section {
        padding: 0px;
    }

    .social-section h2{
        font-size: 18px;
        padding: 15px 0;
        line-height:1;
    }
    .supported-by-images {
    display: flex;
    margin-top: 50px;
    gap: 50px !important;
    align-items: center;
    /* justify-content: space-around; */
    flex-direction: column;
}
    .social-section a{
        padding: 15px 15px;
        margin: 10px 0;
        border-radius: 30px;
    }
}

.news {
    background-color: #1B212C;
    padding: 0;
}

.news-icon a {
    /* background: #fff;
    padding: 2px 8px 6px 8px;
    border-radius: 50%; */
}

.news-icon a img {
    width: 50px;
    /* rotate: 270deg; */
}

.news img {
    width: 100%;
    border-radius: 25px 25px 25px 0;
}

.news-info {
    color: #fff;
    display: flex;
    align-items: stretch;
    width: 100%;
    flex: 1;
}

.news-info .title {
    background: transparent linear-gradient(180deg, #EB2228 0%, #EB1D4C 100%) 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 0px 25px; /* bottom-left */
    padding: 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 104px;
}

.news-info .news-icon {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(180deg, #EB2228 0%, #EB1D4C 100%) 0% 0% no-repeat padding-box;
    border-radius: 0 0 25px 0; /* bottom-right */
}

.news .sec-data {
    height: 100px;
    padding: 0;
}

.news-info .main-title h4 {
    font-size: var(--font-md);
    align-items: center;
    /* justify-content: center; */
    display: flex;
}

.social-row-news,
#blogList,
#newsAndEvents {
    display: flex;
    flex-wrap: wrap;
}

.social-row-news > div[id^="homepage-news-"],
#blogList > div[class*="col-"],
#newsAndEvents > div[class*="col-"] {
    display: flex;
    margin-bottom: 24px;
}

.social-row-news .sr-main-img,
.blog-item,
#newsAndEvents .sr-main-img {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.social-row-news .sr-main-img img,
.blog-item img,
#newsAndEvents .sr-main-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}


.news-info .stamp {
    font-size: var(--font-xs);
}
.news-icon img {
    height: unset !important;
}

.news-info .news-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.news-info .news-icon img {
    height: auto;
}

.news-info .news-icon i {
    font-size: var(--font-2xl);
    background: #fff;
    padding: 10px 14px;
    border-radius: 50%;
    color: #000;
}

.news-info .title .stamp {
    padding: 0 0 20px 0;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 200;
    display: none;
}

.news-info .title .main-title {
    overflow: auto;
    align-items: center;
    position: relative;
    display: grid;
}

.social-row .sr-main-img:first-child {
    padding-right: 8px;
}

.social-row .sr-main-img:last-child {
    padding-left: 8px;
}

.news-info .title .stamp span:last-child {
    padding-left: 50px;
}

@media(max-width: 750px) {
    .news {
        padding: 0;
    }
    .discover-more{
        font-size: 16px;
        padding: 10px 20px;
    }

    .news h2{
        margin:0;
        padding:0;
        line-height:30px;
    }
    .news a {
        display: flex;
        align-items: center;
    }
    .news .sec-heading{
        display:flex;
        align-items: center;
        justify-content: space-between;
    }
    .news-title-hm{
        font-size:14px;
        padding: 10px 15px;
    }
}


.clients {
    padding: var(--section-padding-y) 40px 130px 40px;
}

.clients .card {
    border: none;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: grid;
    border-right: 1px solid #dedede;
    border-radius: 0px;
}

.clients .carousel {
    padding: 0px 0 0 0;
}

@media (max-width: 767px){
    
    .clients  {
        padding:0px;
    }
    .main-section-padding {
        align-items:center;
    }

    .caro-row-padd {
        padding: 20px 0px 20px 20px;
        width: 100%;
    }
}

#newsAndEvents .news-info .title h4,
#blogList .blog-info .title h4 {
    font-weight: 700;
    align-items: center;
    /* justify-content: center; */
    display: flex;
    color: #fff;
}

#newsAndEvents .news-info .title span,
#blogList .blog-info .title span {
    font-weight: 700;
    padding-left: 0;
    color: #fff;
}

#newsAndEvents .news-icon a,
#blogList .blog-icon a {
   background: #0374E5; 
}

.supported-by-image {
    border-right: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
@media (max-width: 767px){
    .supported-by-image {
        border-right: unset;
    }
}
