@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}

.btn-primary{
    background: #355872;
    border:none;
}

.hero{
    padding-top:80px;
    padding-bottom:80px;
}

.hero h1{
    line-height:1.2;
}

.companies{
    background: linear-gradient(90deg,#355872,#7AAACE);
}

.companies img{
    filter: brightness(0) invert(1);
}

.categories{
    background:#f8f9fa;
}

.category-card{
    background:white;
    padding:18px;
    border-radius:10px;
    text-align:center;
    font-weight:500;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.text-primaryy{
    color:#355872;
}

.services {
    background: #f8f9fc;
}

.service-box {
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-box .icon {
    font-size: 40px;
}

.contact {
background: #f9fafb;
}

.contact-card {
background: linear-gradient(135deg,#355872);
}

.contact-card .social-icon {
margin-right:8px;
font-size:18px;
}

.footer {
background:#355872;
}

.footer ul li {
margin-bottom:6px;
color:#d1d1d1;
}

.footer input {
border-radius:20px;
}

.footer button {
border-radius:20px;
}

.social-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:white;
    border-radius:50%;
    text-decoration:none;
    margin-right:8px;
}

.social-btn i{
    font-size:20px;
    color:#355872;
}

.social-btn:hover{
    background:#f1f1f1;
}

.navbar .nav-link.active{
    font-weight:700;
    color:#355872 !important;
}

.report-card{
    border-radius:14px;
    border:none;
    transition:0.25s;
}

.report-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.profile-img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.info-row{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#555;
    margin-bottom:8px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.active {
    border: 2px solid #355872;
}

.icon-circle {
    width: 10px;
    height: 10px;
    background: #355872;
    border-radius: 50%;
}

.feature-list li {
    margin-bottom: 10px;
    color: #555;
}

.feature-list i {
    color: #355872;
    margin-right: 8px;
}