/* Custom Fonts */
@font-face {
    font-family: 'Gotham';
    src: url('/web-assets/fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('/web-assets/fonts/Gotham-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* Base Styling */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Gotham';
    background: var(--black);
    color: #fff;
    overflow-x: hidden;
    font-weight: 300;
}
/* Variables */
:root {
    --primary: #BF0000;
    --black: #0f0f11;
    --white: #fff;
    --text: #fff;
    --transition: all 0.3s ease;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: capitalize;
}
h1 {
    font-size: clamp(35px, 5vw, 70px);
    line-height: 1.1;
}
h2 {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 1.2;
}
h3 {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.1;
}
h4 {
    font-size: 25px;
    line-height: 32px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 300;
}
p.animated-split-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 300;
}
/* Global Elements */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    font-size: 16px !important;
    font-weight: 300 !important;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
/* Layouts */
.section {
    padding: 150px 0 100px 0;
    position: relative;
}
.section-xl {
    padding: 265px 0;
    position: relative;
}
.section-md {
    padding: 100px 0;
    position: relative;
}
.section-sm {
    padding: 60px 0;
    position: relative;
}
/* Utilities */
.web-clr {
    color: var(--primary);
}
.web-clr-black {
    color: var(--black);
}
.web-bg {
    background: var(--primary);
}
.web-bg-black {
    background: var(--black);
}
/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
}
/* Global Buttons */
/* Global Buttons One */
.web-btn-purple {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--white) !important;
  background: var(--primary);
  font-size: 16px;
  color: var(--white);
  transition: all 0.3s linear;
  cursor: pointer !important;
  border-radius: 0px !important;
}
.web-btn-purple::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 30%;
  height: 96px;
  width: 96px;
  animation: spin infinite linear 1.8s;
  animation-delay: 0;
  bottom: -38px;
  right: -0;
  transition: all 0.3s linear;
  z-index: 0;
  opacity: 0;
}
.web-btn-purple:hover {
  color: var(--black);
  transition-duration: 0.3s;
}
.web-btn-purple:hover::after {
  right: -60px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  opacity: 1;
}
.web-btn-purple > .button-content {
  position: relative;
  z-index: 2;
  line-height: normal;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Global Buttons One */
/* Global Buttons Two */
.web-btn-purple-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  color: var(--white);
  transition: all 0.3s linear;
  cursor: pointer;
}
.web-btn-purple-2::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 30%;
  height: 96px;
  width: 96px;
  animation: spin infinite linear 1.8s;
  animation-delay: 0;
  bottom: -38px;
  right: -0;
  transition: all 0.3s linear;
  z-index: 0;
  opacity: 0;
}
.web-btn-purple-2:hover {
  color: var(--white);
  transition-duration: 0.3s;
  border: 2px solid var(--white);
}
.web-btn-purple-2:hover::after {
  right: -60px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  opacity: 1;
}
.web-btn-purple-2 > .button-content {
  position: relative;
  z-index: 2;
  line-height: normal;  
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Main Header Section Styling */
/* Image Animation */
img.animate-image {
    -webkit-animation: animate-image 1s infinite  alternate;
    animation: animate-image 1s infinite  alternate;
}
@-webkit-keyframes animate-image {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes animate-image {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
/* Image Animation */
/* Text Animation */
.textRevealWrapper .text {
  word-break: normal;
  overflow-wrap: normal;
}
.textRevealWrapper .word {
  display: inline-block;
  white-space: nowrap;
}
/* Text Animation */
.textRevealWrapper .char {
  display: inline-block;
  will-change: transform, opacity, color;
}

.main-hero-banner-section {
    height: 100vh;
    display: flex;
    align-items: center;
}
.main-hero-banner-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.main-underlines-sections-wrapper {
    position: relative;
}
.main-features-inner-section{
    display: flex;
}
.left-feature-content {
    display: flex;
    column-gap: 50px;
    width: 60%;
}
.right-feature-content {
    display: flex;
    column-gap: 50px;
    width: 40%;
    justify-content: center;
    align-items: self-start;
}
.right-feature-content .swiper {
    width: 250px;
    height: 168px;
}
.right-feature-content .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.image-box img {
    position: relative;
    top: 10px;
}
.textRevealWrapper {
    max-width: 620px;
    margin-top: 25px;
}
.textRevealWrapper .text {
    color: rgba(255, 255, 255, 0.2);
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 0;
}
.textRevealWrapper .char {
    display: inline-block;
    color: rgba(255, 255, 255, 0.18);
    opacity: 0.35;
    transform: translateY(12px);
    will-change: color, opacity, transform;
}
.right-feature-content .swiper-slide {
    display: flex !important;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.35s ease;
}
.right-feature-content .swiper-slide span {
    display: inline-block;
    position: relative;
    padding-left: 16px;
}
.right-feature-content .slider-wrapper::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url('/web-assets/images/astara-ic-red.png') no-repeat center center;
    background-size: contain;
    z-index: 5;
}
.right-feature-content .swiper-slide-active {
    color: #ff0000;
    font-size: 22px;
    font-weight: 800;
    padding-left: 30px;
    transition: all 0.35s ease;
}
.stack-section {
    margin-top: 60px;
}
.stack-wrapper {
    width: 100%;
    position: relative;
    height: 450px;
    background: #081010;
}
.stack-cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.stack-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    gap: 40px;
    padding:60px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border-radius: 25px;
}
.inner-stackcard-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
.stack-card-left-content{
    width: 70%;
}
.stack-card-right-content{
    width: 30%;
    position: relative;
}
.card-tag,
.card-title,
.card-role,
.card-quote {
    position: relative;
    z-index: 2;
}
.card-tag {
    background: #BF0000;
    color: #fff;
    display: inline-block;
    min-width: 205px;
    padding: 7px 22px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 18px;
}
.card-title {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
    margin-bottom: 4px;
}
.card-role {
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.78;
    margin-bottom: 18px;
}
.card-quote {
    font-size: clamp(16px, 1.8vw, 16px);
    line-height: 1.25;
    margin-bottom: 0;
}
.animated-lines-image {
    position: absolute;
    width: 100%;
    top: 200px;
    z-index: 1;
}
.animated-lines-image-2 {
    position: absolute;
    width: 100%;
    bottom: -300px;
    z-index: 1;
}
.main-missions-inner-section{
    display: flex;
    position: relative;
    /* z-index: 9; */
}
.left-missions-content {
    display: flex;
    column-gap: 50px;
    width: 60%;
}
.right-missions-content {
    display: flex;
    column-gap: 50px;
    width: 40%;
    justify-content: center;
    align-items: self-start;
}
.goals-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.goals-grid-item {
    background: #EAEAEA;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.goals-grid-item > * {
    position: relative;
    z-index: 9;
}
.goals-grid-item:hover > img {
    filter: invert(1);
}
.goals-grid-item:hover >  p {
    color: var(--white) !important;
}
.goals-grid-item::before,
.goals-grid-item::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #353535;
  transition: all 0.5s;
}
.goals-grid-item::before {
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 100%;  
}
.goals-grid-item::after {
    bottom: 0;
    left: 0;
    border-radius: 0px 100% 0px 0px;
}
.goals-grid-item:hover::before,
.goals-grid-item:hover:after {
    width: 100%;
    height: 100%;
    background-color: #353535;  
    transition: all 0.5s;
}
.why-astara-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px 20px;
}
.why-astara-list-items{
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}




.astara-enters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.div1 {
    grid-row: span 2 / span 2;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 45%, #d6d6d6 100%);
    padding: 25px;
    border-radius: 18px;
}

.div2 {
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d9000d 0%, #c60012 45%, #a80018 100%);
    display: flex;
    align-items: center;
    font-size: 20px;
}

.div3 {
    grid-column-start: 2;
    grid-row-start: 2;
    padding: 25px;
    border-radius: 18px;
    background-color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 20px;
    flex-direction: column;
}

.div4 {
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.div4 video{
    height: 100%;
    max-width: 418.66px;
    object-fit: cover;
    object-position: right;
    border-radius: 20px;
}
.div4:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    inset: 0;
    z-index: 1;
}
.video-image-box {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-image-box img {
    max-width: 250px;
}
.pill-wrapper {
    position: relative;
    display: flex;
    align-items: end;
    height: 378px;
}
.pill {
    position: absolute;
    min-width: 190px;
    height: 58px;
    padding: 0 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    will-change: transform;
    transform-origin: center center;
}

.pill-black {
    background: #050505;
    color: #ffffff;
}
.pill-white {
    background: #ffffff;
    color: #222222;
    border: 1px solid #111111;
}
.pill-red {
    background: #d60000;
    color: #ffffff;
}
.pill-1 {
    bottom: 0;
    left: 110px;
    z-index: 5;
}
.pill-2 {
    bottom: 45px;
    left: 0;
    transform: rotate(-7deg);
    z-index: 6;
}
.pill-3 {
    bottom: 58px;
    right: 0;
    transform: rotate(8deg);
    z-index: 4;
}
.pill-4 {
    bottom: 108px;
    left: 45px;
    transform: rotate(-3deg);
    z-index: 3;
}
.pill-5 {
    bottom: 105px;
    right: 20px;
    transform: rotate(9deg);
    z-index: 7;
}
.pill-6 {
    top: 165px;
    left: 120px;
    z-index: 2;
}
@media (max-width: 575px) {
    .astara-pill-card {
        padding: 25px 0px;
        min-height: 430px;
    }

    .pill {
        min-width: 190px;
        height: 48px;
        font-size: 14px;
        padding: 0 22px;
    }

    .pill-1 {
        left: 60px;
    }

    .pill-2 {
        left: 0;
    }

    .pill-3 {
        right: 0;
    }

    .pill-4 {
        left: 20px;
    }

    .pill-5 {
        right: 0;
    }

    .pill-6 {
        left: 70px;
    }
}
ul.human-layer-icon-list {
    padding: 0;
}
ul.human-layer-icon-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.ai-content-box {
    padding-top: 115px;
}
ul.ai-layer-icon-list {
    padding: 0;
}
ul.ai-layer-icon-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: end;
}
.ai-content-box h3{
    text-align: right;
}

/* horizontal scroll */

.horizontal {
    display: flex;
    height: 100%;
    gap: 20px;
    padding: 50px 0 0 0;
    position: relative;
}
.horizontal > div {
  display: flex;
  flex-shrink: 0;
}
.horizontal .eco-card {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 20px;
} 
.astara-card-content {
    position: absolute;
    width: 300px;
    height: 300px;
    padding: 25px;
    inset: 0;
    background: #fff;
    border-radius: 20px;
    align-items: self-start;
    justify-content: center;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}
.astara-card-bg{
    position: absolute;
    width: 300px;
    height: 300px;
    padding: 25px;
    background: #BF0000;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
}
.horizontal .card img {
    max-width: 60px;
}
.astara-news-card:hover .astara-card-content {
    transform: rotate(-8deg) translateY(20px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
.astara-news-card:hover .astara-card-bg {
    transform: rotate(8deg);
}
.astara-news-card:hover .astara-card-icon {
    filter: brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(5155%) hue-rotate(356deg) brightness(88%) contrast(121%);
    transform: translateY(-2px);
}
img.icon-hover {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0;
    transition: 0.5s ease-in-out;
}
.astara-news-card:hover .icon-hover {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transform: translateY(-35px) translateX(35px);
}

.global-industry-section{
    position: relative;
    overflow: hidden;
}
.global-industry-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 150px;
  background: radial-gradient(
    ellipse at center,
    rgba(210, 0, 0, 0.95) 0%,
    rgba(180, 0, 0, 0.75) 28%,
    rgba(100, 0, 0, 0.45) 48%,
    rgba(20, 0, 0, 0.25) 65%,
    transparent 78%
  );
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}


.social-media-icons-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
}
.social-ic-box {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 13.72px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-ic-box:hover {
    background-color: #BF0000;
}
.social-ic-box span {
    font-size: 14px;
}
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
}
.infra-ic-box {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 13.72px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.infra-ic-box:hover {
    background-color: #BF0000;
}
.infra-ic-box span {
    font-size: 14px;
}
.main-world-changed-section h2 {
    font-size: clamp(40px, 7vw, 125px);
}
img.robo-hand {
    position: absolute;
    left: 0;
    top: 350px;
    width: 53%;
}
img.human-hand {
    position: absolute;
    right: 0;
    top: 350px;
    width: 53%;
}
.blink-light-anim {
    mix-blend-mode: plus-lighter;
    margin: -100px auto 0 auto;
    animation: blinkLight 1.8s ease-in-out infinite;
}

@keyframes blinkLight {
    0% {
        opacity: 0.35;
        transform: scale(0.95);
        filter: brightness(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
        filter: brightness(1.8);
    }

    100% {
        opacity: 0.35;
        transform: scale(0.95);
        filter: brightness(0.8);
    }
}
/* .global-industry-section ul li span {
    font-size: 20px;
} */
.global-industry-section ul li {
    margin-bottom: 20px;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
    padding: 50px 0 0 0;
}
ul.footer-menu-list {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}
ul.footer-menu-list li a:hover {
    color: var(--primary);
}
.footer-column p {
    border-top: 1px solid red;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid red;
    max-width: 600px;
    margin: 40px auto;
}
footer.main-footer-section{
    position: relative;
}
footer.main-footer-section video {
    position: absolute;
    z-index: -1;
    height: 750px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}
main{
    overflow-x: hidden;
}
section#horizontal-scoll {
    display: flex;
    align-items: center;
    height: 100vh !important;
}
/* Moving Strip */
.red-strip {
    position: absolute;
    top: 0px;
    right: 5%;
    animation: stripMove 3.5s ease-in-out infinite alternate;
    will-change: transform;
    z-index:1;
}
@keyframes stripMove {
  from {
    transform: translateX(-425px);
  }
  to {
    transform: translateX(25px);
  }
}
@media (max-width: 1650px) {
.section-md {
    padding: 50px 0;
    position: relative;
}
.section-sm {
    padding: 50px 0;
    position: relative;
}
.stack-section {
    margin-top: 30px;
}
.animated-lines-image-2 {
    bottom: -150px;
    max-width: 75%;
}
.horizontal {
    padding: 30px 0 0 0;
}
}

@media (max-width: 1024px) {
.global-industry-section ul li {
    margin-bottom: 10px;
}
ul.human-layer-icon-list li span, .global-industry-section ul li span {
    font-size: 12px;
}    
.container {
    padding: 0 20px 0 20px;
}  
p {
    font-size: 14px;
} 
p.animated-split-text {
    font-size: 14px !important;
}
.infrastructure-grid {
    margin-top: 20px;
}
section.section-xl.main-hero-banner-section {
    background-image: url(/web-assets/images/mobile-red-panel-image.webp) !important;
    background-size: 100% 100% !important;
}
.blink-light-anim {
    margin: -50px auto 0 auto;
}
.solutions-section .col-12 {
    text-align: center;
}
.red-strip {
    right: -135%;
    zoom: 75%;
} 
.stack-wrapper {
    height: 550px;
}
 .stack-card {
    padding: 35px;
}
.inner-stackcard-box {
    flex-direction: column;
    gap: 20px;
}
.stack-card-left-content {
    width: 100%;
}
.stack-card-right-content {
    width: 100%;
}
.main-features-inner-section {
    flex-direction: column;
}
.left-feature-content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.right-feature-content {
    width: 100%;
}
.main-missions-inner-section {
    flex-direction: column;
}
.left-missions-content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.right-missions-content {
    width: 100%;
}
.goals-grid-row {
    grid-template-columns: repeat(1, 1fr);
}
.right-feature-content .slider-wrapper {
    width: 100%;
}
.right-feature-content .swiper {
    width: 100%;
    margin: 20px 0 0 0;
    display: none;
}
.right-feature-content .slider-wrapper::after{
    display: none;
}
section.section-md.main-missions-section {
    padding-bottom: 50px !important;
}
    .astara-enters-grid {
        display: block;
        padding-top: 20px !important;
    }
.astara-enters-grid .div1,
.astara-enters-grid .div2,
.astara-enters-grid .div3,
.astara-enters-grid .div4 {
    display: block;
    margin-bottom: 20px;
}
.div4 video {
    max-width: 100%;
    height: 100%;
    width: 100%;
}
.video-image-box img {
    max-width: 150px;
}
    .animated-lines-image-2 {
        bottom: -50px;
        max-width: 75%;
    }
.ai-content-box {
    padding-top: 30px;
}
ul.ai-layer-icon-list li {
    justify-content: start;
    flex-direction: row-reverse;
}    
.ai-content-box h3 {
    text-align: left;
}
.social-media-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}
.infrastructure-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
}
img.robo-hand {
    top: 200px;
}
img.human-hand {
    top: 200px;
}
.solutions-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
}
.solution-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
br{
    display: none;
}
ul.footer-menu-list {
    gap: 15px;
    flex-direction: column;
}
.footer-column p {
    margin: 15px auto;
}
.ai-content-box p {
    text-align: left !important;
}
section#horizontal-scoll .col-lg-5 p {
    text-align: left !important;
}
.main-hero-banner-inner-section img {
    max-width: 200px;
    margin: auto;
}
}
@media (max-width: 525px) {
.left-right-content-section .row {
    padding-bottom: 0 !important;
}    
.social-ic-box img {
    max-width: 25%;
}
.section-md {
    padding: 30px 0;
    position: relative;
}
.section-sm {
    padding: 30px 0;
    position: relative;
}
section.why-astara-matters-section p.web-clr.fw-bold {
    margin-bottom: 20px !important;
}
.card-tag {
    font-size: 12px;
}
.div1 .astara-pill-card h3 {
    font-size: 32px;
    text-align: center;
}
.div4:after {
    height: 85%;
}
section.section-xl.main-hero-banner-section:after {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}
