/* HEADER */
.header{
	font-family: "myrid pro s";
    display:flex;
	text-align:center;
    align-items:center;
    padding:20px 30px;
    margin-bottom:30px;
    background:#003151;
    color:#fff;
    position:relative;
}

.header img{
    width:48px;
    margin-right:18px;
    filter:brightness(0) invert(1);
}

.header h1{
   font-size: 18px;
    font-weight:700;
    margin:0;
    letter-spacing:.5px;
    text-transform:uppercase;
    position:relative;
}

/* Animated underline */
.header h1::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:70px;
    height:3px;
    background:#003151;
    transition:.4s;
}

.header:hover h1::after{
    width:160px;
}

/* TOP GRID */
.top_1{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
	    width: 85%;
    margin: 0% auto;
}

.box{
    padding:30px;
    background:#fff;
    border:1px solid #e3e6ea;
    transition:.3s;
}

.box:hover{
    border-color:#003151;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* SECTION TITLE */
.title{
    font-family: "myrid pro s";
    font-size: 24px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
    position:relative;
    padding-bottom:10px;
	color:#003151;
}

.title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:50px;
    height:2px;
    background:#003151;
}

/* ABOUT */
.about{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.about img{
    width:130px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.profile-text{
    font-size:18px;
    line-height:1.8;
    color:#2c3e50;
    font-weight:500;
    letter-spacing:.3px;
    padding-left:18px;
    border-left:4px solid #003151;
    background:linear-gradient(to right,#f9fbfc,transparent);
}
/* VALUE LIST */
.value ul{
    padding:0;
    margin:0;
}

.value li{
    list-style:none;
    padding:12px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:28px;
    transition:.2s;
}

.value li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#0f2027;
    font-weight:bold;
}

.value li:hover{
    color:#0f2027;
    font-weight:500;
}

/* CORE EXPERTISE TITLE */
.section-title{
	font-family: "myrid pro s";
    font-size: 18px;
    margin-top:40px;
    padding:18px;
   
    font-weight:700;
    text-align:center;
    background:#003151;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* GRID WRAPPER */
.grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    margin:0 auto;
    border:1px solid #fff;
    background:#ffffff;
    position:relative;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.07);
	max-width:1600px;
}

/* TOP ACCENT BAR */
.grid::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    
}

/* COLUMN DIVIDERS */
.grid::before{
    content:"";
    position:absolute;
    inset:0;
    
    pointer-events:none;
}

/* CELLS */
.cell{
    padding:28px 24px;
    font-family:"Segoe UI", system-ui, sans-serif;
    font-size:15.5px;
    line-height:1.75;
    border:1px solid #eef2f6;
    transition:all .25s ease;
    position:relative;
    background:#fff;
}

/* HEADER ROW */
.cell:nth-child(-n+5){
    background:#eef2f6;
    color:#003151;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.9px;
    text-align:center;
   border:1px solid #fff;
    font-size:13.5px;
}

/* HOVER EFFECT */
.cell:hover{
    background:#f4f9ff;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    z-index:2;
}

/* HOVER BORDER GLOW */
.cell:hover::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid #2b7cff;
    opacity:.35;
    pointer-events:none;
}

/* READABILITY STRIPING */
.cell:nth-child(n+6):nth-child(even){
    background:#fbfdff;
}

/* LAST ROW FIX */
.cell:last-child{
    border-bottom:none;
}

/* TABLET */
@media(max-width:1000px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }

    .grid::before{
        display:none;
    }

    .cell{
        border-right:none;
    }
}

/* MOBILE */
@media(max-width:600px){
    .grid{
        grid-template-columns:1fr;
        margin:35px 16px;
    }

    .cell{
        padding:24px;
        font-size:15px;
    }
}
/* Section center alignment */
.announcement-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
    background:#ffffff;
}

/* Announcement card */
.announcement-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#f4f8ff;
    border-bottomt:6px solid #003151;
    padding:22px 28px;
    
    max-width:900px;
    width:100%;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}
.logo {
    width: 800px !important;
    /* margin: 0.8% 1% 0% 1%; */
    /* float: left; */
}
/* Icon */
.announcement-icon{
    font-size:30px;
    color:#2a6df4;
    flex-shrink:0;
}

/* Text */
.announcement-text{
    font-size:17px;
    color:#333;
    line-height:1.7;
}
/* Slogan */
.slogan{
    font-size:14px;
    color:#000;
     font-family:"Segoe UI", system-ui, sans-serif;
    padding:2px 6px;
    font-weight:600;

    letter-spacing:.5px;
    display:inline-block;
}
@media(max-width:768px){
    .header-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .brand{
        flex-direction:column;
    }

    .slogan{
        white-space:normal;
        font-size:14px;
    }
}

.testimonial_section{
    padding:20px 20px;
    background:#f6fbff;
    font-family:"Segoe UI",system-ui,sans-serif;
}

.testimonial_title{
    text-align:center;
    font-size:38px;
    font-weight:800;
    color:#003151;
    margin-bottom:70px;
}

.testimonial_box{
    max-width:1400px;
    margin:auto;
    position:relative;
}

.testimonial_slide{
    display:none;
    border:2px solid #003151;
    background:#fff;
    padding:70px 65px;
    box-shadow:0 35px 80px rgba(0,49,81,.15);
    position:relative;
}

.testimonial_slide.active{
    display:block;
}

.testimonial_slide::before{
    content:"“";
    position:absolute;
    top:20px;
    left:40px;
    font-size:90px;
    color:#eaf2f9;
    font-weight:900;
}

.testimonial_slide p{
    font-size:19px;
    line-height:2;
    color:#2f3e4d;
    margin-bottom:40px;
    white-space:pre-line;
}

.author{
    font-weight:800;
    color:#003151;
    font-size:17px;
}

.author span{
    display:block;
    font-weight:500;
    color:#6b7f93;
    margin-top:6px;
}

.mini_title{
    font-weight:800;
    margin-bottom:25px;
    color:#003151;
}

/* buttons */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#003151;
    color:#fff;
    border:none;
    font-size:28px;
    width:45px;
    height:45px;
    cursor:pointer;
}

.prev{ left:-60px; }
.next{ right:-60px; }

.nav:hover{
    background:#001f36;
}
.footer{
    background:#003151;
    color:#fff;
    padding:50px 0 0;
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:50px;
}
.container_footer{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    gap:50px;
}

.footer_col{
    flex:1;
    min-width:260px;
}

.footer_col h3{
    font-size:18px;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
    border-bottom:1px solid rgba(255,255,255,0.2);
    padding-bottom:10px;
}

.footer_links{
    list-style:none;
    padding:0;
}

.footer_links li{
    margin-bottom:10px;
}

.footer_links a{
    text-decoration:none;
    color:#dbe9f4;
    transition:.3s;
}

.footer_links a:hover{
    color:#fff;
    padding-left:5px;
}

.footer_info{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
}

.icon{
    font-size:18px;
    margin-top:2px;
}

.footer_info p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#e6f1f8;
}

.footer_bottom{
    margin-top:40px;
    text-align:center;
    padding:18px 10px;
    background:#00233a;
    font-size:14px;
    letter-spacing:.5px;
}