*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}
/*==============================HEADER CSS==============================*/
.alxo-main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;
    background:#000000;
    z-index:9999;
    transition:.35s;
    border-bottom:1px solid transparent;
}
.alxo-main-header.scrolled{
    border-color:#000000;
    box-shadow:0 12px 30px rgba(0,0,0,.45);
}
.alxo-header-container{
    width:92%;
    max-width:1450px;
    height:50px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;

}
.alxo-logo{
    display:flex;
    align-items:center;
    position:relative;
    cursor:pointer;
}
.alxo-logo img{
    width:80px;
    height:80px;
    object-fit:contain;
    position:relative;
    z-index:2;
}
.alxo-logo-text{
    position:absolute;
    left:65px;
    top:55%;
    transform:translateY(-50%);
    display:flex;
    white-space:nowrap;
}
.alxo-logo-text span{
    color:#fff;
    font-size:22px;
    font-weight:700;
    letter-spacing:3px;
    opacity:0;
    transform:translateX(-20px);
    transition:.35s ease;
}
.alxo-logo:hover .alxo-logo-text span{
    opacity:1;
    transform:translateX(0);
}
.alxo-logo:hover .alxo-logo-text span:nth-child(1){
    transition-delay:.05s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(2){
    transition-delay:.10s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(3){
    transition-delay:.15s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(4){
    transition-delay:.20s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(5){
    transition-delay:.25s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(6){
    transition-delay:.30s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(7){
    transition-delay:.35s;
}
.alxo-logo:hover .alxo-logo-text span:nth-child(8){
    transition-delay:.40s;
}

.alxomenu{
width:100%;
position:relative;
z-index:9999;
font-family:'Poppins',sans-serif;
}

.alxomenu-list{
margin:0;
padding:0;
list-style:none;
display:flex;
align-items:center;
justify-content:center;
gap:55px;
}

.alxomenu-item{
position:static;
}

.alxomenu-link{
position:relative;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:500;
padding:24px 0;
cursor:pointer;
transition:color .3s ease;
}

.alxomenu-link::before{
content:"";
position:absolute;
left:0;
bottom:17px;
width:0;
height:2px;
background:#fff;
transition:width .3s ease;
}

.alxomenu-link:hover::before{
width:100%;
}

.alxomenu-item.active>.alxomenu-link::before{
width:100%;
}

.alxomenu-link::after{
content:"";
display:block;
width:6px;
height:6px;
border-right:2px solid #fff;
border-bottom:2px solid #fff;
transform:rotate(45deg);
margin-top:-4px;
transition:transform .3s ease,margin-top .3s ease;
}

.alxomenu-item.active>.alxomenu-link::after{
transform:rotate(225deg);
margin-top:4px;
}

.alxomenu-mega{
position:fixed;
top:60px;
left:0;
right:0;
width:100vw;
max-width:none;
margin:0;
box-sizing:border-box;
background:#111;
padding:0 3.7% 40px;
border-top:1px solid #222;
box-shadow:0 20px 40px rgba(0,0,0,.45);
opacity:0;
visibility:hidden;
pointer-events:none;
transform:translateY(10px);
transition:opacity .25s ease,visibility .25s ease,transform .25s ease;
}

.alxomenu-item.active>.alxomenu-mega{
opacity:1;
visibility:visible;
pointer-events:auto;
transform:translateY(0);
}

.alxomenu-title{
width:100%;
height:105px;
display:flex;
align-items:flex-start;
box-sizing:border-box;
padding-top:0;
}

.alxomenu-title h2{
margin:0;
padding:0;
color:#fff;
font-size:32px;
line-height:1.2;
font-weight:600;
letter-spacing:-.5px;
margin-top: 20px;
}

.alxomenu-title h2 span{
display:inline-block;
margin-left:7px;
color:#087cff;
font-size:32px;
font-weight:400;
transition:margin-left .3s ease;
}

.alxomenu-title h2:hover span{
margin-left:14px;
}

.alxomenu-columns{
width:100%;
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
column-gap:65px;
}

.alxomenu-column{
display:flex;
flex-direction:column;
align-items:flex-start;
min-width:0;
}

.alxomenu-column h4{
margin:0 0 39px;
padding:0;
color:#999;
font-size:16px;
line-height:1.4;
font-weight:500;
}

.alxomenu-column a{
display:block;
color:#fff;
text-decoration:none;
font-size:15px;
line-height:1.2;
font-weight:400;
margin:0 0 20px;
padding:0;
transition:color .25s ease,transform .25s ease;
}

.alxomenu-column a:hover{
color:#087cff;
transform:translateX(4px);
}

.alxosearch-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor:pointer;
    background:transparent;
    transition:all .3s ease;
}
.alxosearch-btn:hover{
    background:#171717;
}
.alxosearch-overlay{
    position:fixed;
    top:55px;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:calc(100vh - 55px);
    background:#000;
    z-index:10000;
    display:none;
    flex-direction:column;
    overflow-y:auto;
    animation:alxoSearchFade .3s ease;
}
.alxosearch-overlay.active{
    display:flex;
}
.alxosearch-header{
    width:calc(100% - 300px);
    max-width:1400px;
    margin:55px auto 0;
    display:flex;
    align-items:center;
    gap:25px;
}
.alxosearch-header input{
    flex:1;
    width:100%;
    height:80px;
    padding:10px 0 15px;
    background:transparent;
    border:none;
    border-bottom:2px solid #333;
    outline:none;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:52px;
    font-weight:300;
    line-height:1.2;
    transition:border-color .3s ease;
}
.alxosearch-header input:focus{
    border-bottom-color:#0094ff;
}
.alxosearch-header input::placeholder{
    color:#777;
    opacity:1;
}
.alxosearch-close{
    flex-shrink:0;
    width:64px;
    height:64px;
    margin-right:0;
    border:none;
    outline:none;
    border-radius:50%;
    background:#1b1b1b;
    color:#fff;
    font-size:30px;
    font-weight:300;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
}
.alxosearch-close:hover{
    background:#0094ff;
    transform:rotate(90deg);
}
.alxosearch-content{
    width:calc(100% - 300px);
    max-width:1400px;
    margin:52px auto 0;
    padding-bottom:80px;
}
.alxosearch-content h2{
    margin:0 0 30px;
    color:#888;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}
.alxosearch-tags{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
}
.alxosearch-tags a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 22px;
    border:1px solid #333;
    border-radius:30px;
    color:#fff;
    background:transparent;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:400;
    transition:all .3s ease;
}
.alxosearch-tags a:hover{
    background:#0094ff;
    border-color:#0094ff;
    transform:translateY(-2px);
}
#alxoSearchResults{
    width:100%;
    margin-top:45px;
}
.alxosearch-result{
    width:100%;
    padding:17px 15px;
    border-bottom:1px solid #222;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:all .3s ease;
}
.alxosearch-result:hover{
    background:#111;
    padding-left:25px;
}
.alxosearch-no-result{
    padding:20px 0;
    color:#777;
    font-size:16px;
}
.alxosearch-overlay::-webkit-scrollbar{
    width:6px;
}
.alxosearch-overlay::-webkit-scrollbar-track{
    background:#000;
}
.alxosearch-overlay::-webkit-scrollbar-thumb{
    background:#333;
    border-radius:10px;
}
@keyframes alxoSearchFade{
    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.alxocountry-btn{
    height:42px;
    display:flex;
    align-items:center;
    padding:0 14px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    cursor:pointer;
    white-space:nowrap;
}
.alxocountry-overlay{
    position:fixed;
    top:55px;
    left:0;
    width:100%;
    height:calc(100vh - 55px);
    background:transparent;
    display:none;
    z-index:10000;
}
.alxocountry-overlay.active{
    display:block;
}
.alxocountry-box{
    position:absolute;
    top:0;
    right:40px;
    width:305px;
    max-width:calc(100% - 30px);
    max-height:calc(100vh - 80px);
    background:#111;
    border:1px solid #292929;
    box-shadow:0 15px 45px rgba(0,0,0,.5);
    overflow:hidden;
    animation:alxocountryFade .25s ease;
}
.alxocountry-header{
    height:70px;
    padding:0 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #292929;
}
.alxocountry-header h2{
    margin:0;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:18px;
    font-weight:500;
}
.alxocountry-close{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}
.alxocountry-close:hover{
    background:#0094ff;
    transform:rotate(90deg);
}
.alxocountry-search{
    width:calc(100% - 40px);
    height:48px;
    margin:20px;
    padding:0 15px;
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:4px;
    outline:none;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:14px;
}

.alxocountry-search:focus{
    border-color:#0094ff;
}

.alxocountry-search::placeholder{
    color:#777;
}
.alxocountry-list{
    max-height:400px;
    overflow-y:auto;
    padding:0 20px 20px;
}
.alxocountry-item{
    min-height:48px;
    padding:12px 5px;
    display:flex;
    align-items:center;
    color:#ddd;
    border-bottom:1px solid #222;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    cursor:pointer;
    transition:.2s;
}
.alxocountry-item:hover{
    color:#fff;
    background:#1b1b1b;
    padding-left:12px;
}
.alxocountry-item.selected{
    color:#0094ff;
}
.alxocountry-list::-webkit-scrollbar{
    width:5px;
}

.alxocountry-list::-webkit-scrollbar-track{
    background:#111;
}

.alxocountry-list::-webkit-scrollbar-thumb{
    background:#444;
    border-radius:10px;
}
@keyframes alxocountryFade{

    from{
        opacity:0;
        transform:translateY(-8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*==============================BANNER CSS==============================*/
.alx-hero{
    position: relative;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.alx-bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-3;
}
.alx-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
z-index:-2;
}
.alx-hero:before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.65),rgba(0,0,0,.35));
z-index:-2;
}
.alx-hero:after{
content:"";
position:absolute;
width:650px;
height:650px;
left:-200px;
top:20%;
/* background:radial-gradient(circle,rgba(22,99,242,.45),transparent 70%); */
filter:blur(40px);
animation:alxGlow 8s infinite alternate;
z-index:-1;
}
@keyframes alxGlow{
from{transform:translateY(0);}
to{transform:translateY(-150px);}
}
.alx-hero-container{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 30px 80px !important;   /* pehle 0 80px tha */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}
.alx-left{
flex:0 0 55%;
color:#fff;
width: 100%;
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.alx-right{
flex:0 0 45%;
max-width:520px;
color:#fff;
}
.alx-line{
width:90px;
height:6px;
background:#0060F3;
margin-bottom:35px;
animation:alxLine 2s infinite alternate;
}
@keyframes alxLine{
from{width:60px;}
to{width:130px;}
}
.alx-title1{
display:block;
font-size:clamp(60px,7vw,80px);
font-weight:800;
line-height:.9;
margin-bottom:10px;
}
.alx-title2{
display:flex;
align-items:center;
gap:20px;
flex-wrap:nowrap;
font-size:clamp(60px,7vw,80px);
font-weight:800;
line-height:.9;
text-align: left;
}
.alx-dot{
width:40px;
height:40px;
border-radius:50%;
background:#0060F3;
flex-shrink:0;
animation:pulse 2s infinite;
}
@keyframes pulse{
50%{
transform:scale(1.2);
box-shadow:0 0 30px #0060F3;
}
}
.alx-right h2{
font-size:38px;
margin-bottom:20px;
}
.alx-right p{
font-size:20px;
line-height:1.7;
color:#ddd;
margin-bottom:30px !important;
}
.alxo-butn{
display:inline-block;
color:#fff;
text-decoration:none;
font-size:22px;
font-weight:700;
transition:.3s;
cursor:pointer;
}
.alxo-butn span{
color:#0060F3;
}
.alxo-butn:hover{
transform:translateX(8px);
color:#0060F3;
}
/*==============================CARD CSS==============================*/

.alx-card-section{
padding:80px 5%;
}
.alx-card-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.alx-vision-card{
position:relative;
height:520px;
overflow:hidden;
background:#091D48;
cursor:pointer;
animation:cardUp .8s ease both;
}
@keyframes cardUp{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
transition:.55s cubic-bezier(.2,.8,.2,1);
}
.overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom,
rgba(0,0,0,.15),
rgba(2,8,24,.35),
rgba(3,10,25,.8));
transition:.45s;
}
.content{
position:absolute;
left:35px;
right:35px;
top:40px;
color:#fff;
z-index:5;
}
.content h5{
font-size:16px;
letter-spacing:2px;
margin-bottom:35px;
font-weight:700;
}
.content h2{
font-size:42px;
line-height:1.1;
transition:.45s;
}
.content p{
margin-top:45px;
font-size:17px;
line-height:1.8;
opacity:0;
transform:translateX(80px);
transition:.55s;
}
.content a{
position:absolute;
bottom:-150px;
left:0;
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:#fff;
font-size:28px;
font-weight:600;
opacity:0;
transform:translateY(40px);
transition:.55s;
}
.content a i{
font-size:22px;
transition:.35s;
}
.content a:hover{
color: #0060F3;
}
.content a:hover i{
transform:translateX(8px);
}
/* .alx-vision-card:hover .bg{
transform:scale(.72);
filter:blur(8px);
}
.alx-vision-card:hover .overlay{
background:rgba(3,10,28,.82);
}
.alx-vision-card:hover h2{
transform:translateY(-10px);
}
.alx-vision-card:hover p{
opacity:1;
transform:translateX(0);
}
.alx-vision-card:hover a{
opacity:1;
transform:translateY(0);
} */
@media (min-width:1025px){
.alx-vision-card:hover .bg{
transform:scale(.72);
filter:blur(8px);
}
.alx-vision-card:hover .overlay{
background:rgba(3,10,28,.82);
}
.alx-vision-card:hover h2{
transform:translateY(-10px);
}
.alx-vision-card:hover p{
opacity:1;
transform:translateX(0);
}
.alx-vision-card:hover a{
opacity:1;
transform:translateY(0);
}
.alx-vision-card:hover::before{
transform:scale(6);
opacity:0;
}
}
.alx-vision-card::before{
content:"";
position:absolute;
width:220px;
height:220px;
border-radius:50%;
background:rgba(255,255,255,.08);
left:-120px;
top:-120px;
transition:.6s;
z-index:2;
}
/* .alx-vision-cardvision-card:hover::before{
transform:scale(6);
opacity:0;
} */
.alx-vision-card::after{
content:"";
position:absolute;
inset:0;
box-shadow:inset 0 0 150px rgba(0,0,0,.25);
pointer-events:none;
}

/*==============================SLIDER CSS==============================*/
.alxo-slider{
    width:100%;
    padding:65px 0;
    background:#000;
    overflow:hidden;
}
.alxo-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 60px;
}
.alxo-wrapper{
    position:relative;
    width:100%;
    min-height:550px;
}
.alxo-slide{
    display:none;
    width:100%;
    min-height:550px;
    align-items:center;
    gap:70px;
}
.alxo-slide.active{
    display:flex;
}
.alxo-image{
    width:52%;
    height:550px;
    flex-shrink:0;
    overflow:hidden;
    /* border-radius:4px; */
}
.alxo-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}
.alxo-content{
    width:48%;
    max-width:570px;
}
.alxo-content h1{
    margin:0 0 25px;
    color:#fff;
    font-size:56px;
    line-height:1.08;
    font-weight:700;
    letter-spacing:-1.5px;
}
.alxo-content p{
    margin:0 0 32px;
    color:#fff;
    font-size:18px;
    line-height:1.8;
    font-weight:400;
}
.alxo-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;
    padding:14px 18px 14px 25px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    border-radius:3px;
    transition:all .3s ease;
}
.alxo-btn:hover{
    color: #0060F3;
    transform:translateY(-2px);
}
.alxo-btn-icon{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#0060F3;
    border-radius:50%;
    transition:all .3s ease;
}
.alxo-btn:hover .alxo-btn-icon{
    color:#0060F3;
    transform:translateX(3px);
}
.alxo-btn-icon i{
    font-size:18px;
    font-weight: 700;
}
.alxo-controls{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:22px;
    margin-top:25px;
    margin-bottom:20px;
}
.alxo-prev,
.alxo-next{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d9dee5;
    outline:none;
    background:#fff;
    color:#091D48;
    cursor:pointer;
    border-radius:50%;
    font-size:16px;
    transition:all .3s ease;
}
.alxo-prev:hover,
.alxo-next:hover{
    background:#091D48;
    border-color:#091D48;
    color:#fff;
    transform:translateY(-2px);
}
.alxo-counter{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:55px;
    color:#fff;
    font-size:16px;
    font-weight:600;
}
.alxo-divider{
    color:#a8afb8;
    font-weight:400;
}
#alxo-current{
    color:#0060F3;
}
.alxo-slide.active .alxo-image{
    animation:alxoImageIn .7s ease both;
}
.alxo-slide.active .alxo-content{
    animation:alxoContentIn .7s ease .1s both;
}
@keyframes alxoImageIn{
    from{
        opacity:0;
        transform:translateX(-35px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes alxoContentIn{
    from{
        opacity:0;
        transform:translateX(35px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}
/*============================== FOUNDER & CEO ==============================*/
.alxceo-team{
    background:#000;
    padding:120px 80px;
}
.alxceo-container{
    width:100%;
    max-width:1280px; 
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}
.alxceo-content{
    flex:1;
    position:relative;
    min-height:250px;
}
.alxceo-item{
    position:absolute;
    width:100%;
    opacity:0;
    transform:translateY(30px);
    transition:.7s ease;
}
.alxceo-item.active{
    opacity:1;
    transform:translateY(0);
}
.alxceo-item p{
    color:#fff;
    font-size:25px;
    line-height:38px;
    margin-bottom:20px;
    font-weight:300;
}
.alxceo-item h3{
    color:#0060F3;
    font-size:42px;
    font-weight:700;
}
.alxceo-slider{
    width:450px;
    height:300px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
}
.alxceo-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:1s ease;
}
.alxceo-slide.active{
    opacity:1;
    transform:scale(1);
}
.alxceo-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/*============================== LATEST NEWS ==============================*/
.latest-news{
    background:#000;
    padding:120px 80px;
    display:flex;
    justify-content:space-between;
    gap:100px;
}
.left-content{
    width:32%;
    position:sticky;
    top:120px;
    align-self:flex-start;
}
.logo-text{
    font-size:72px;
    line-height:70px;
    font-weight:700;
    color:#fff;
    margin-bottom:30px;
}
.o-letter{
    color:#0060F3;
}
.left-content p{
    color:#9b9b9b;
    font-size:18px;
    line-height:32px;
    max-width:420px;
}
.right-content{
    width:68%;
    display:flex;
    flex-direction:column;
    gap:30px;
}
.news-card{
    background:#000;
    border-radius:22px;
    padding:20px 25px;
    transition:all .35s ease;
    cursor:pointer;
}
.news-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}
.category{
    color:#0060F3;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
.dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#b7b7b7;
}
.date{
    color:#b7b7b7;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
}
.news-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}
.news-bottom h3{
    flex:1;
    color:#fff;
    font-size:18px;
    line-height:1.45;
    font-weight:500;
    transition:.35s ease;
}
.news-bottom a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#b7b7b7;
    font-size:32px;
    flex-shrink:0;
    transition:.35s ease;
}
.news-bottom a i{
    transition:.35s ease;
}
.news-card:hover{
    background:#000;
}
.news-card:hover .news-bottom h3{
    text-decoration:underline;
    text-decoration-thickness:2px;
    text-underline-offset:6px;
}
.news-card:hover .news-bottom a{
    color:#0060F3;
}
.news-card:hover .news-bottom a i{
    transform:translate(4px,-4px);
}
/*============================== CONTACT ==============================*/
.alx-contact-section{
    width:100%;
    background:#000;
    padding:70px 8%;
}
.alx-content-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}
.alx-lft{
    flex:1;
}
.alx-ryt{
    width:350px;
}
.alx-lft h2{
    font-size:60px;
    color:#0060F3;
    margin-bottom:25px;
    font-weight:800;
}
.alx-lft p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}
.social-icons{
    display:flex;
    gap:15px;
}
.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color:#0060F3;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}
.social-icons a:hover{
    background:#0060F3;
    color:#fff;
    transform:translateY(-5px);
}
.alx-ryt h3{
    color:#FFFFFF;
    font-size:50px;
    margin-bottom:30px;
}
.alx-ryt p{
    display:flex;
    align-items:center;
    gap: 30px;
    color:#fff;
    font-size:25px;
    margin-bottom:22px;
}
.alx-ryt i{
    color:#0060F3;
    font-size:30px;
    width:22px;
}
.alx-ryt a{
    color:#fff;
    text-decoration:none;
}
.alx-ryt a:hover{
    color:#0060F3;
}

/*============================== FOOTER ==============================*/

.alx-footer{
    max-width:1400px;
    margin:auto;
    padding:60px 40px;
}
.alx-footer-title{
    font-size:50px;
    font-weight:bold;
    line-height:1;
    margin-bottom:40px;
}
.alx-footer-links{
    display:grid;
    grid-template-columns:repeat(2,250px);
    gap:20px 60px;
    justify-content:flex-start;
}
.alx-footer-column{
    display:flex;
    flex-direction:column;
}
.alx-footer-link{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    line-height:1.2;
    margin-bottom:12px;
    transition:.3s;
}
.alx-footer-link:hover{
    color:#0060F3;
    padding-left:5px;
}
.alx-footer-copyright{
    margin-top:40px;
    font-size:20px;
    line-height:1.2;
    color:#ccc;
}
