/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/



/* homepage */
header.entry-header .entry-title {
  display: none;
}

.hero-banner{
    background: linear-gradient(
90deg,
rgba(255,255,255,.95) 0%,
rgba(255,255,255,.85) 40%,
rgba(255,255,255,0) 100%
) !important;
}

.service-card{
    background: #fff;
    border: 1px solid #E5EAF5;
    border-radius: 24px;
    padding: 32px;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(11,46,122,.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover{
    transform: translateY(-10px);
    border-color: rgba(11,46,122,.15);
    box-shadow:
        0 25px 50px rgba(11,46,122,.12),
        0 0 0 1px rgba(11,46,122,.08);
}

.cta-section{
background: linear-gradient(
180deg,
#F8FAFE 0%,
#F3F7FC 100%
);
}



.Highlighted-card{
background:
radial-gradient(circle at top right,
rgba(66,133,244,.25),
transparent 40%),
linear-gradient(
135deg,
#061B45 0%,
#0A2D73 40%,
#123C98 100%
);
}


.Highlighted-card::before{
    content:'';
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:250px;
    height:250px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}


.Highlighted-card::after{
    content:'';
    position:absolute;
    right:-40px;
    bottom:-40px;
    width:180px;
    height:180px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}


.wha-item{
    border-bottom:1px solid #E7ECF5 !important;
    padding:30px 0;
}

.wha-header{
    display:flex;
    align-items:center;
    gap:25px;
    cursor:pointer;
}

.number{
   color:#0B2E7A;
    min-width:40px;
}

.wha-header h3{
    flex:1;
    margin:0;
    color:#031A24;
    font-size:24px;
    font-weight:600;
}

.icon{
    font-size:24px;
}

.wha-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    padding-left:65px;
    transform:translateY(-10px);
    transition:
        max-height 0.25s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.wha-content p{
    color:#4F5B73;
    max-width:650px;
    line-height:1.8;
    margin-top:20px;
}

.wha-item.active .wha-content{
    max-height:200px;
    opacity:1;
    transform:translateY(0);
}

.wha-item.active h3{
    color:#0B2E7A;
}

.left-content{
    position:sticky !important;
    top:10px !important;
   align-self:flex-start !important;
}



@media (max-width: 767px){

    .left-content{
        position: relative !important;
        top: unset !important;
        width: 100%;
        margin-bottom: 30px;
    }

    .right-content{
        width: 100%;
    }

    .why-choose-section{
        display: block;
    }

.wha-header h3{
 font-size: 18px;
}
.wha-item{
 padding: 20px 0px;
}
}


#footer-section{
     background: linear-gradient(
        135deg,
        #020B1F 0%,
        #041533 30%,
        #07225A 100%
    );
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

#footer-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

#footer-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    transition: all 0.35s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transition: all 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 46, 122, 0.35);
}

.btn-primary:hover::before {
    left: 120%;
}

.btn-secondary {
    transition: all .35s ease;
}

.btn-secondary:hover {
    color: #0B2E7A !important;
    transform: translateY(-4px);
}

html{
    margin-top: 0px !important;
}