
 
  /*====================================================
  CONSULTANCY SECTION
====================================================*/

.consultancy-section{
    padding:100px 7%;
    background:#0A0F14;
}

.consultancy-wrapper{
    max-width:1100px;
    margin:auto;
}

/*==========================
IMAGE
==========================*/
/* ==========================
   Banner Image
========================== */
 /* ===============================
   Ultra Wide Banner (32:9)
================================ */

.consultancy-image{
    width:100%;
    max-width:1400px;
    margin:0 auto 60px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,194,255,.18);
}

.consultancy-image img{
    width:100%;
    aspect-ratio:32 / 9;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.4s ease;
}

.consultancy-image:hover img{
    transform:scale(1.03);
}
/*==========================
HEADER
==========================*/

.consultancy-content{
    text-align:center;
    margin-bottom:45px;
}

.tag{
    display:inline-block;
    padding:10px 22px;
    background:#ECFEFF;
    color:#000c10;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    border:1px solid rgba(0,194,255,.20);
}

.consultancy-content h2{
    font-size:48px;
    color:#ffffff;
    margin:20px 0 15px;
    font-weight:800;
}

.consultancy-content h2 span{
    color:#00ffff;
}

.meta{
    color:#bcbcbc;
    font-size:17px;
    line-height:1.8;
}

/*==========================
TOPICS GRID
==========================*/

.topics-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

/*==========================
CARD
==========================*/

.topic-card{
    background:#fff;
    border:1px solid #E5EDF5;
    border-radius:10px;
    padding:10px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.topic-card:hover{
    transform:translateY(-6px);
    border-color:#00f7ff;
    box-shadow:0 20px 45px rgba(0,194,255,.12);
}

.topic-card span{
    width:52px;
    height:52px;
    flex-shrink:0;
    border-radius:14px;
    background:linear-gradient(135deg,#00e9f8 );
    color:#000000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

.topic-card p{
    margin:0;
    color:#334155;
    font-size:16px;
    line-height:1.7;
    font-weight:600;
}

/*==========================
BUTTON
==========================*/

.consultancy-btn{
    text-align:center;
    margin-top:45px;
}

.consultancy-btn a{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,#00e9f8,#00e9f8);
    color:#0A0F14;
    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,194,255,.25);
}

.consultancy-btn a:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 45px rgba(0,194,255,.35);
}

/*==========================
TABLET
==========================*/

@media(max-width:992px){

.consultancy-image img{
    height:320px;
}

.consultancy-content h2{
    font-size:38px;
}

.topics-grid{
    grid-template-columns:1fr;
}

}

/*==========================
MOBILE
==========================*/

@media(max-width:768px){

.consultancy-section{
    padding:70px 20px;
}

.consultancy-image img{
    height:220px;
    border-radius:18px;
}

.consultancy-content h2{
    font-size:30px;
}

.meta{
    font-size:15px;
}

.topic-card{
    padding:18px;
}

.topic-card span{
    width:46px;
    height:46px;
    font-size:16px;
}

.topic-card p{
    font-size:15px;
}

.consultancy-btn a{
    width:100%;
    text-align:center;
}

}
