:root {
    --ink: #2daaff; --ink-soft: #2c5147; --paper: #FFF;
    --theme: #2daaff; --theme-dark: #0b639e;
    --gold: #0d69c9; --gold-soft: #5f92c7;
    --muted: #2f2f2f; --line: #e6e0d3; --white: #ffffff; --radius: 14px;
    --base-fm: "Figtree", sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--base-fm); background: var(--paper); color: var(--ink); line-height: 1.45; -webkit-font-smoothing: antialiased; }
  h1, h2, h3, h4, h5 { font-family: var(--base-fm); line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }
  a { color: inherit; }
  ul, li {
    list-style: none;
  }
  img { max-width: 100%; height: auto; display: block; }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
  .eyebrow { font-family: var(--base-fm); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }

  .btn { display: inline-block; font-weight: 600; font-size: 0.98rem; text-decoration: none; color: var(--white); background: var(--theme); padding: 8px 28px; border-radius: 999px; border: 1px solid var(--theme); cursor: pointer; transition: 0.5s all, background .15s ease; }
  .btn:hover { transform: translateY(-2px); background: var(--theme-dark); border-color: var(--theme-dark); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--white); }
  .ico { width: 18px; height: 18px; fill: currentColor; display: inline-block; vertical-align: middle; }

  /* TOP BAR */
  .topbar { background: var(--ink); color: #cdd6cf; font-size: 0.86rem; }
  .topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
  .topbar a { color: #fff; text-decoration: none; transition: color .15s ease; }
  .topbar a:hover { color: var(--gold); }
  .topbar .left { display: flex; gap: 22px; flex-wrap: wrap; }
  .topbar .left span { display: inline-flex; align-items: center; gap: 7px; }
  .topbar .right { display: flex; gap: 12px; align-items: center; }
  .topbar .right a { display: inline-flex; }
  .topbar .ico { width: 16px; height: 16px; }

  /* NAV */
  header { position: sticky; top: 0; z-index: 50; background: rgba(248,245,239,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .bar { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--base-fm); font-weight: 600; font-size: 1.28rem; text-decoration: none; }
  .brand .mark { width: 38px; height: 38px; border-radius: 9px; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; }
  .brand em { font-style: normal; color: var(--gold); }
  nav.menu, nav.menu ul { display: flex; align-items: center; gap: 4px; }
  .menu a, .menu   a { font-family: var(--base-fm); font-size: 0.96rem; font-weight: 500; color: var(--ink); background: none; border: none; cursor: pointer; text-decoration: none; padding: 10px 15px; border-radius: 8px; transition: background .15s ease; }
  .menu  a:hover, .menu .dropdown  a:hover { background: #e2f0ff; }
  .menu ul li {
    position: relative;
}
.menu ul li.menu-item-has-children>a:after {
    content: '';
    border-right: var(--ink) 2px solid;
    border-top: var(--ink) 2px solid;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 7px;
    transform: rotate(135deg);
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.menu ul li ul.sub-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    background-color: #fff;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    width: 250px;
    transition: 0.5s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: #d1d1d1 0px 8px 10px;
}

.menu ul li ul.sub-menu li a {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 0px;
}

.menu ul li ul.sub-menu li {
    width: 100%;
}

.menu ul li:hover ul.sub-menu {
    opacity: 1;
    pointer-events: auto;
}
  .dropdown { position: relative; }
  .dropdown > button::after { content: " ▾"; font-size: 0.7em; opacity: .7; }
  .dropdown-panel { position: absolute; top: calc(100% + 8px); left: 0; min-width: 290px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 40px -18px rgba(23,58,50,.4); padding: 10px; display: none; flex-direction: column; }
  .dropdown.open .dropdown-panel { display: flex; }
  .dropdown-panel a { padding: 11px 14px; border-radius: 9px; font-weight: 500; text-decoration: none; }
  .dropdown-panel a:hover { background: var(--gold-soft); }
  .dropdown-panel a small { display: block; color: var(--muted); font-weight: 400; font-size: 0.82rem; }
  .menu a.btn { margin-left: 8px; color: var(--white); background: var(--theme); border-color: var(--theme); }
  .menu a.btn:hover { background: var(--theme-dark); border-color: var(--theme-dark); }
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

  /* HERO */
  .hero { padding: 70px 0 70px; position: relative; overflow: hidden; }
  .hero::before { content: ""; position: absolute; top: -200px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft) 0%, transparent 68%); z-index: 0; }
  .hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
  .hero h1 { font-size: clamp(2.3rem, 4vw, 3.7rem); margin-bottom: 22px; }
  .hero p { font-size: 1.14rem; color: var(--muted); max-width: 50ch; margin-bottom: 32px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .trust { margin-top: 40px; display: flex; gap: 34px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.trust>div { width: calc(33.33% - 24px);}
  .trust .n { font-family: var(--base-fm); font-size: 2rem; font-weight: 700; }
  .trust .l { color: var(--muted); font-size: 0.88rem; line-height: 1.4; }
  .hero-visual { position: relative; }
  .hero-photo { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, #234d43, #1a6fcf); display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px -30px rgba(23,58,50,.5); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-photo .ph { color: rgba(248,245,239,.6); text-align: center; padding: 24px; font-size: 0.85rem; }
  .hero-photo .ph .big { font-family: var(--base-fm); font-size: 2.6rem; color: var(--gold); margin-bottom: 8px; }
  .badge { position: absolute; left: -22px; bottom: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: 0 18px 36px -18px rgba(23,58,50,.45); display: flex; align-items: center; gap: 12px; max-width: 235px; }
  .badge .check { width: 34px; height: 34px; border-radius: 50%; background: var(--theme); color: #fff; flex: none; display: flex; align-items: center; justify-content: center; }
  .badge .t { font-weight: 600; font-size: 0.92rem; line-height: 1.25; }
  .badge .t small { display: block; color: var(--muted); font-weight: 400; font-size: 0.8rem; }

  /* SECTION SHELL */
  section { scroll-margin-top: 84px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(1.9rem, 4vw, 2.4rem); margin-bottom: 14px; }
  .section-head p { margin-bottom: 18px; color: var(--muted); }


  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .svc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .15s ease, box-shadow .15s ease; }
  .svc:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -20px rgba(23,58,50,.35); }
  .svc .ic { width: 42px; height: 42px; border-radius: 10px; background: #e2efff; display: flex; align-items: center; justify-content: center; color: var(--ink); font-family:var(--base-fm); font-weight: 700; margin-bottom: 18px; }
  .svc h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .svc p { color: var(--muted); font-size: 0.96rem; }

  /* FOUNDER */
  .founder { background: #232e71; color: var(--paper); }
  .founder .layout { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }
  .portrait { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; background: linear-gradient(160deg, #234d43, #1a6fcf); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
  .portrait img { width: 100%; height: 100%; object-fit: cover; }
  .portrait .ph { text-align: center; color: rgba(248,245,239,.55); padding: 24px; font-size: 0.86rem; }
  .portrait .ph .mono { font-family: var(--base-fm); font-size: 3.4rem; color: var(--gold); margin-bottom: 10px; }
  .founder .eyebrow { color: #fff; }
  .founder h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); margin-bottom: 6px; }
  .founder .role { color: var(--gold); font-weight: 500; margin-bottom: 20px; }
  .founder p { color: #cdd6cf; font-size: 18px; max-width: 70ch; margin-bottom: 16px; }
  .founder .sig { font-family: var(--base-fm); font-size: 1.4rem; margin-top: 8px; }

  /* CAREERS */
  .careers { background: var(--white); }
  .roles { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
  .role { display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; background: var(--paper); }
  .role h3 { font-size: 1.1rem; }
  .role .meta { color: var(--muted); font-size: 0.9rem; }
  .role .apply { white-space: nowrap; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; cursor: pointer; }

.blog-section, .blog-scn{
    padding: 70px 0;
    background: #edf3f8;
}


.blog-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}


.blog-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: 1px solid #2563eb;
    border-radius: 50px;
    color: #2563eb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-btn:hover{
    background: #2563eb;
    color: #fff;
}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.blog-content a {
    text-decoration: none;
}
.blog-card:hover{
    transform: translateY(-5px);
}

.blog-image img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.blog-content{
    padding: 20px;
}

.blog-content h3{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #111827;
    margin: 0 0 15px;
}

.blog-content p{
    font-size: 14px;
    line-height: 1.3;
    color: #6b7280;
    margin: 0 0 15px;
}

.read-more-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover{
    gap: 12px;
}

@media(max-width:991px){

    .blog-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .blog-title{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .blog-grid{
        grid-template-columns: repeat(1,1fr);
    }

    .blog-title{
        font-size: 30px;
    }

    .blog-head{
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-image img{
        height: 220px;
    }
}


  /* FORMS */
  .form-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
  .form-card { display: grid; gap: 16px; }
  .form-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field {
     margin-top: 10px;
  }
  .field label { font-size: 0.85rem; font-weight: 500; color: #232e71; margin-bottom: 4px; display: block; }
  .field input, 
  .field select, .field textarea {outline: none !important; box-shadow: none !important; width: 100%; padding: 12px 15px; border: 1px solid #232e71; border-radius: 6px; font-family: inherit; font-size: 0.96rem; background: var(--white); color: #454545; }
  .field textarea { height: 120px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--theme); outline-offset: 1px; border-color: var(--theme); }
  .form-card .wpcf7-submit { text-transform: uppercase; display: inline-block;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    color: var(--white);
    background: var(--theme);
    padding: 8px 28px;
    border-radius: 999px;
    border: 1px solid var(--theme);
    cursor: pointer;
    transition: 0.5s all, background .15s ease;}
  .form-status { font-size: 0.92rem; min-height: 1.2em; color: var(--muted); }
  .form-status.ok { color: var(--theme); font-weight: 600; }
  .form-status.err { color: #b3261e; font-weight: 600; }
  .hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

  /* CONTACT */
  .scheduler { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; min-height: 600px; }
  .placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 584px; gap: 16px; border: 2px dashed var(--line); border-radius: 10px; padding: 24px; }
  .placeholder h3 { font-size: 1.15rem; }
  .placeholder p { color: var(--muted); max-width: 42ch; font-size: 0.95rem; }
  .notice { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; text-align: center; }
  .notice h3 { font-size: 1.35rem; max-width: 26ch; margin: 0 auto 12px; }
  .notice p { color: var(--muted); max-width: 50ch; margin: 0 auto 22px; }
  .contact .layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
  .contact-info p { margin-bottom: 14px; color: var(--muted); }
  .contact-info strong { color: var(--ink); display: block; font-weight: 600; }
  .contact-info a { color: var(--ink); }

  /* APPLY */
  .apply-section { background: var(--paper); }
  .apply-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 120px; align-items: start; }
  .apply-intro p { color: var(--muted); margin-bottom: 14px; }
  .apply-intro a {color: var(--ink);}
  /* FOOTER */
  footer ul li a {
    padding: 0px;
    background: transparent;
    color: #fff;
  }
  footer { background: #111111; color: #cdd6cf; padding: 64px 0 32px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
  footer h4 { font-family: var(--base-fm); font-size: 1rem; letter-spacing: 0.10em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 5px; }
  footer a { color: #fff; padding: 0px; text-decoration: none; transition: color .15s ease; }
  footer a:hover { text-decoration: underline; }
  .foot-grid ul li a {
    color: #fff;
    padding: 0px;
    background: transparent !important;
}

.foot-grid ul li a:hover {
    text-decoration: underline;
}
  .foot-brand .name { max-width: 240px; font-family: var(--base-fm); font-size: 1.4rem; color: var(--paper); margin-bottom: 12px; display: inline-flex; gap: 6px; }
  .foot-brand .name em { font-style: normal; color: var(--gold); }
  .foot-brand p { color: rgba(205,214,207,.85); font-size: 0.94rem; max-width: 34ch; margin-bottom: 20px; }
  .socials { display: flex; gap: 12px; }
  .socials a { width: 40px; height: 40px; border: 1px solid rgba(205,214,207,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #cdd6cf; transition: .15s ease; }
  .socials a:hover { color: var(--ink); background: var(--ink); border-color: var(--ink); }
  .foot-contact p { margin-bottom: 10px; font-size: 0.94rem; }
  .foot-bottom { border-top: 1px solid rgba(205,214,207,.2); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot-bottom small { color: rgba(205,214,207,.7); }


.about-scn{
    padding: 70px 0;
    background: #f5f7fb;
}

.about-scn .wrap{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* About Image */
.about-img{
    position: relative;
    border-radius: 14px;
}

.about-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

/* Experience Box */
.exp-text{
    position: absolute;
    right: -20px;
    bottom: 60px;
    background: var(--ink);
    color: #fff;
    padding: 10px 25px 20px 25px;
    border-radius: 8px;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.exp-text span {
    display: block;
    font-weight: 400;
    font-size: 13px;
}

/* About Content */


/* Info List */
.about-infolist{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px 12px;
    margin-bottom: 20px;
}
.about-right .section-head {margin-bottom: 30px;}
.about-info-box{
    display: flex;
    align-items: center;
    gap: 10px;
}

.aboutinfo-item{
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 4px;
    background: #e8ecf1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutinfo-item img{
    width: 20px;
    height: auto;
    object-fit: contain;
}

.about-info-item{
    font-size: 15px;
    line-height: 1.2;
    color: #101828;
}


.contact-info{
    max-width:450px;
    margin-top: 20px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:20px;
}

.icon-box{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:50%;
    background:#f1f5f9;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:20px;
    color:#111827;
}

.content h4{
    font-size:18px;
    font-weight:700;
    color: #111827;
    margin-bottom:4px;
}

.content p{
    font-size:15px;
    line-height:1.4;
    color:#5b7aa6;
}

.content a{
    color:#5b7aa6;
    text-decoration:none;
    transition:0.3s;
}

.content a:hover{
    color:#111827;
}

/* Responsive */
@media(max-width: 1199px){

    .about-right h2{
        font-size: 46px;
    }

    .about-inner{
        gap: 50px;
    }
}

@media(max-width: 991px){

    .about-inner{
        grid-template-columns: 1fr;
    }

    .about-right h2{
        font-size: 40px;
    }

    .exp-text{
        right: 20px;
        bottom: 20px;
    }
}

@media(max-width: 767px){

    .about-scn{
        padding: 70px 0;
    }

    .about-right h2{
        font-size: 32px;
    }

    .description{
        font-size: 16px;
    }

    .about-infolist{
        grid-template-columns: 1fr;
    }

    .exp-text{
       padding: 12px;
        max-width: 140px;
        font-size: 28px;
    }

    .exp-text strong{
        font-size: 36px;
    }

    
}


/**Blog Section Start**/

.bnr-cont-group {
  text-align: center;
  color: #111827;
  padding-top: 40px;
  padding-bottom: 40px;
}
.bnr-cont-group h2 {
  color: #111827;
  font-size: 36px;
}
.latest-f-axia-inner {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin: auto;
}

.latest-f-axia-inner h2 {
 color: var(--black-clr);
 font-weight: 500;
 letter-spacing: 1px;
}

.latest-f-axia-list {
 display: flex;
 flex-flow: row wrap;
 width: calc(100% + 24px);
 margin-left: -12px;
 padding-top: 10px;
}
.latest-f-axia-item-inr a {
    position: relative;
}
.latest-f-axia-item {
 width: calc(33.33% - 24px);
 margin: 12px;
 background-color: var(--white-clr);
 border-radius: 8px;
 overflow: hidden;
}

.latest-cont {
 padding: 18px 17px 20px 16px;
 border-radius: 0px 0px 8px 8px;
}

.latest-img img {
 width: 100%;
 transition: 0.5s all;
 height: 100%;
 object-fit: cover;
}

.latest-img:hover img {
 transform: scale(1.1);
}

.latest-f-axia-item-inr p {
 color: var(--black-clr);
 margin-top: 10px;
 font-size: 14px;
 margin-bottom: 15px;
 font-weight: 300;
}

h4.latest-title {
 font-size: 16px;
 font-weight: 500;
 color: rgba(0, 0, 0, 1);
 margin-bottom: 0px;
}

.latest-cont .cmn-btn {
 padding: 7px 14px;
 min-width: 90px;
 font-size: 12px;
 font-weight: 700;
 border-radius: 4px;
 text-transform: capitalize;
}

.latest-cont .cmn-btn:hover {
 background: var(--theme-sec-clr);
 color: var(--white-clr);
}
.postdate {
 position: absolute;
 bottom: 0px;
 z-index: 9;
 font-size: 12px;
 background-color: rgba(0, 0, 0, 0.8);
 color: #fff;
 padding: 5px 10px;
}

.latest-f-axia-item-inr a.latest-img {
    position: relative;
    height: 330px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.latest-f-axia-item-inr a.latest-img img {
    object-fit: cover;
}
.latest-f-axia-item {
    border: #d3d3d3 1px solid;
    border-radius: 12px;
    box-shadow: #ccc 0 1px 6px;
}
/**Blog Section End**/



/**Blog Detail page**/
.inner-banner-scn.blog-page {
    width: 100%;
    position: relative;
    min-height: 200px;
    padding: 0px;
    display: flex;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.inner-banner-scn.blog-page .bnr-cont-group {
    max-width: 1000px;
    text-align: center;
    color: #fff;
}

.inner-banner-scn.blog-page .bnr-cont-group h2 {
    color: #fff;
    font-size: 35px;
}
.blog-d-group {
 display: flex;
 flex-flow: row wrap;
 width: 100%;
 justify-content: space-between;
 margin-top: 40px;
 margin-bottom: 40px;
}

.blog-d-group .blog-d-left {
  width: 100%;
  margin: auto;
  max-width: 880px;
}

.blog-d-group .blog-d-right {
 width: 28%;
 display: none;
}

.blog-d-group .blog-d-left .post-thumbnail {
 width: 100%;
 margin-bottom: 20px;
 overflow: hidden;
 border-radius: 14px;
}

.blog-d-group .blog-d-left .post-thumbnail img {
 width: 100%;
}

.blog-d-group .blog-d-right label.wp-block-search__label {
 font-size: 18px;
 color: #000;
 font-weight: 600;
}

.blog-d-group a {
 color: #102738;
 text-decoration: underline;
}

.blog-d-group a:hover {
 text-decoration: none ;
}

.blog-d-group h2, .blog-d-group h3, .blog-d-group h4, .blog-d-group h5, .blog-d-group h6 {
  margin-top: 22px;
}
.blog-d-group p {
 color: var(--muted);
 margin-bottom: 15px;
}



.blog-d-group ul {
 padding-bottom: 20px;
}

.blog-d-group ul li {
 padding-left: 15px;
 position: relative;
 width: 100%;
 margin: 5px 0px;
}
.blog-d-group ul li p {
 margin:0px;
}
.blog-d-group ul li:before {
 content: "";
 position: absolute;
 background-color: #000;
 width: 6px;
 height: 6px;
 left: 0px;
 top: 8px;
 border-radius: 6px;
}

.post-content {
 padding-top: 25px;
}

.post-content h1 {
    color: var(--theme-clr);
    margin: 0px 0px 25px 0;
}
.blog-d-group ol {
 padding-bottom: 20px;
 list-style-type: decimal;
 padding-left: 20px;
 margin: 0px;
}

.blog-d-group ol li {
 position: relative;
 width: 100%;
 margin: 5px 0px;
 list-style-type: decimal;
}

.blog-d-group .blog-d-right input {
 border: #000 1px solid;
 font-size: 14px;
 line-height: normal !important;
 padding: 4px 10px !important;
 height: auto;
 box-shadow: none !important;
 outline: none !important;
}

.blog-d-group .blog-d-right button {
 padding: 5px 20px;
 color: #fff !important;
 background-color: #102738 !important;
 font-size: 15px !important;
 border: none !important;
}

.blog-d-group .blog-d-right h2 {
 font-size: 20px;
 margin: 30px 0px 16px 0px;
 color: #000;
}

.blog-d-group .blog-d-right ul li a {
 font-size: 15px !important;
 text-decoration: none;
 line-height: 1.5;
 font-weight: normal;
 color: #000;
}

.blog-d-group .blog-d-right .widget {
 margin-top: 0;
 padding: 0px;
}

.blog-d-group .blog-d-right .wp-block-latest-posts__list {
 margin: 0px !important;
 padding: 0px !important;
}

.blog-d-group .blog-d-right ul li:hover a {
 color: #102738;
}

.blog-d-group .blog-d-right ul li {
 padding: 5px 0 5px 14px;
 font-weight: 400;
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 align-items: center;
 line-height: normal;
 border-top: #f1f1f1 1px solid;
 margin: 0px;
}

.blog-d-group .blog-d-right ul li:before {
 top: 12px;
}

.search-results .search-result-count {
 margin-top: 20px;
 display: inline-block;
 width: 100%;
 text-align: center;
}

.post-navigation {
 display: flex;
 padding-top: 20px;
}

.post-navigation .prev-post, .post-navigation .next-post {
 width: 50%;
 padding: 0px 10px;
 font-weight: 500;
}

@media(max-width: 767px) {
  .bnr-cont-group h2 {
    font-size: 35px;
  }
  .bnr-cont-group p {
    font-size: 16px;
    margin-bottom: 0;
}
  .latest-f-axia-item {
    width: 100%;
 
}
.latest-f-axia-item-inr a.latest-img {
  height: 220px;
}
.blog-d-group .blog-d-left {
    width: 100%;
}
.blog-d-group p {
    margin-bottom: 15px;
}

.blog-d-group h3 {
    margin-bottom: 8px;
}
.inner-banner-scn.blog-page {
      min-height: 150px;
}
.inner-banner-scn.blog-page .bnr-cont-group h2 {
    font-size: 22px;
}
}


  /* RESPONSIVE */
  @media (max-width: 1200px) {
    :root {
          --radius: 8px;
    }
    .hero {
    padding: 40px 0 40px;
 
}
    .wrap {
    padding: 0 15px;
}
.form-card {
    border-radius: 8px;
    padding: 15px;
}
    .menu a, .menu a { padding: 5px 10px;}
    .btn { padding: 8px 22px; font-size: 0.90rem;}
    .hero .wrap {    gap: 30px;}
    .hero h1 br{ display: none; }
    .trust .n {
      font-size: 1.5rem;
    }
    .about-scn, .section {
    padding: 40px 0;
 
}
.svc {
    padding: 20px;
 
}
.blog-content {
    padding: 15px;
}
.blog-grid {
    gap: 20px;
}
.role {
    gap: 20px;
    padding: 15px 20px;
 
}
.content h4 {
    font-size: 15px;
 
}
.content p {
    font-size: 13px;
 
}
.info-item {
    gap: 10px;
    margin-top: 10px;
}
.section-head {
    margin-bottom: 20px;
}
.portrait {
      border-radius: 8px;
}
.blog-section, .blog-scn {
      padding: 40px 0
}
.blog-head {
      gap: 5px;
}
.foot-bottom {
    margin-top: 24px;
    padding-top: 14px;
    gap: 16px;
    font-size: 14px;
}
  }
  @media (max-width: 980px) { 
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } 
    .hamburger { display: block; padding-right: 0px; margin-right: -15px;}
    nav.menu { position: absolute; top: 74px; left: 0; right: 0; flex-flow: row wrap; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: 0; gap: 0px; display: none; }
    .open nav.menu { display: flex; }
    .svc .ic img {
    width: 45%;
}
.menu ul li:hover ul.sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
}

nav.menu .menu-main-menu-container ul li {
    width: 100%;
    border-top: #ccc 1px solid;
}

nav.menu, nav.menu ul {
    flex-flow: row wrap;
    gap: 0;
}

.menu a, .menu a {
    width: 90%;
    padding: 8px 15px;
    display: inline-block;
}
.menu ul li.menu-item-has-children>a:after {
    position: absolute;
    top: 13px;
    right: 14px;
    pointer-events: none;
}
  }
  @media (max-width: 880px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 360px; }
    .founder .layout { grid-template-columns: 1fr; gap: 32px; }
    .portrait { max-width: 320px; }
    .contact .layout, .apply-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 760px) {
    
    .menu a.btn { text-align: center; margin: 8px 0 0; }
    .dropdown-panel { position: static; box-shadow: none; border: none; padding: 4px 0 4px 12px; min-width: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .role { flex-direction: column; align-items: flex-start; }
    .form .row2 { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .badge { left: 8px; }
    .trust {
    margin-top: 20px;
    gap: 10px;
    padding-top: 15px;
}
.trust>div {
    width: calc(33.33% - 7px);
}
.trust .n {
    font-size: 1.2rem;
 
}
.trust .l {
    font-size: 0.75rem;
}
footer {
    padding: 35px 0 20px;
}
.founder .sig {
    font-size: 1.2rem;
    margin-top: 8px;
}
.section-head h2 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
 
}
.founder h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
 
}
.blog-content h3 {
    font-size: 16px;
    margin: 0 0 10px;
}
.read-more-btn {
    font-size: 14px;
}
.eyebrow {
    font-size: 0.78rem;
    margin-bottom: 8px;
 
}
.brand {
    width: 140px;
}
header .btn {
    font-size: 11px;
    padding: 7px 15px;
}
.topbar .left {
    gap: 10px;
 
}
.about-info-item {
  font-size: 14px;
}
.svc .ic img {
    width: 45%;
}
.foot-brand .name {
    max-width: 180px;
}
.foot-grid ul li a {
    font-size: 14px;
}
.foot-brand p {
    margin-bottom: 10px;
}
.founder p {
    font-size: 16px;
 
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    margin-bottom: 18px;
}
.form-card .row2 {
    grid-template-columns: 1fr;
    gap: 5px;
}
.bnr-cont-group h2 {
  font-size: 30px;
}
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .svc { transition: none; } }