:root{
    --primary:#0f766e;
    --primary-light:#14b8a6;
    --soft:#ccfbf1;
    --text:#111827;
    --muted:#6b7280;
    --bg:#f8fafc;
    --white:#ffffff;

    --radius-xl:32px;
    --radius-lg:24px;
    --radius-md:18px;

    --shadow:
        0 20px 50px rgba(0,0,0,0.06);

    --shadow-hover:
        0 30px 60px rgba(0,0,0,0.10);

    --transition:.35s ease;
}

.hero-modern{ position:relative; overflow:hidden; padding:120px 0; background: linear-gradient(135deg,#0f766e 0%,#14b8a6 100%); } /* background effect */ .hero-modern::before{ content:''; position:absolute; width:550px; height:550px; border-radius:50%; background:rgba(255,255,255,0.08); top:-180px; right:-120px; } .hero-modern::after{ content:''; position:absolute; width:320px; height:320px; border-radius:50%; background:rgba(255,255,255,0.06); bottom:-120px; left:-80px; } .hero-badge{ display:inline-flex; align-items:center; gap:10px; padding:12px 22px; border-radius:50px; background:rgba(255,255,255,0.15); backdrop-filter:blur(15px); color:#fff; font-weight:600; margin-bottom:28px; } .hero-title{ font-size:64px; font-weight:800; line-height:1.15; color:#fff; margin-bottom:25px; } .hero-title span{ color:#ccfbf1; } .hero-description{ font-size:18px; line-height:1.9; color:rgba(255,255,255,0.88); margin-bottom:40px; max-width:650px; } /* ========================= BUTTONS ========================= */ .hero-buttons{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:40px; } .btn-hero-primary{ display:inline-flex; align-items:center; gap:12px; padding:18px 34px; border-radius:18px; background:#fff; color:#0f766e; font-weight:700; text-decoration:none; transition:0.3s; box-shadow:0 15px 35px rgba(0,0,0,0.15); } .btn-hero-primary:hover{ transform:translateY(-4px); color:#0f766e; } .btn-hero-secondary{ display:inline-flex; align-items:center; gap:12px; padding:18px 34px; border-radius:18px; border:1px solid rgba(255,255,255,0.20); background:rgba(255,255,255,0.08); backdrop-filter:blur(10px); color:#fff; font-weight:700; text-decoration:none; transition:0.3s; } .btn-hero-secondary:hover{ background:rgba(255,255,255,0.15); color:#fff; } /* ========================= FEATURES ========================= */ .hero-features{ display:flex; gap:25px; flex-wrap:wrap; } .hero-feature{ display:flex; align-items:center; gap:10px; color:#fff; font-weight:600; } /* ========================= TRACKING CARD ========================= */ .hero-card{ position:relative; background:rgba(255,255,255,0.12); backdrop-filter:blur(18px); border:1px solid rgba(255,255,255,0.15); border-radius:32px; padding:40px; box-shadow:0 25px 60px rgba(0,0,0,0.18); } .hero-card::before{ content:''; position:absolute; inset:0; border-radius:32px; padding:1px; background:linear-gradient( 135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05) ); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; } .hero-card h3{ font-size:34px; font-weight:800; color:#fff; margin-bottom:12px; } .hero-card p{ color:rgba(255,255,255,0.80); line-height:1.8; } /* ========================= TRACKING FORM ========================= */ .tracking-form{ margin-top:35px; } .tracking-input{ width:100%; height:64px; border:none; border-radius:18px; padding:0 22px; margin-bottom:18px; font-size:16px; } .tracking-input:focus{ outline:none; } .btn-track{ width:100%; height:64px; border:none; border-radius:18px; background:#fff; color:#0f766e; font-size:17px; font-weight:700; transition:0.3s; } .btn-track:hover{ transform:translateY(-3px); } /* ========================= MINI STATS ========================= */ .hero-stats{ display:flex; justify-content:space-between; margin-top:35px; gap:15px; } .hero-stat{ flex:1; text-align:center; background:rgba(255,255,255,0.08); border-radius:18px; padding:18px; } .hero-stat h4{ color:#fff; font-size:28px; font-weight:800; margin-bottom:5px; } .hero-stat span{ color:rgba(255,255,255,0.80); font-size:14px; } /* ========================= MOBILE ========================= */ @media(max-width:992px){ .hero-modern{ padding:90px 0; } .hero-title{ font-size:42px; } .hero-card{ margin-top:45px; } }

.services-modern{
    position:relative;
    padding:110px 0;
    background:#f8fafc;
}

/* heading */
.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:var(--soft);
    color:var(--primary);
    font-weight:700;
    margin-bottom:20px;
}

.section-title{
    font-size:52px;
    font-weight:800;
    line-height:1.3;
    color:var(--text);
    margin-bottom:20px;
}

.section-title span{
    color:var(--primary);
}

.section-subtitle{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    line-height:1.9;
    font-size:18px;
}



.services-title{
    width:100%;
    text-align:center !important;
    margin-left:auto;
    margin-right:auto;
}

.services-subtitle{
    width:100%;
    max-width:760px;
    margin:0 auto;
    text-align:center !important;
}

.services-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:20px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:30px;
    padding:35px;
    transition:0.35s;
    border:1px solid #eef2f7;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
    height:100%;
}

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

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
}

.service-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:30px;
    background:linear-gradient(135deg,#ccfbf1,#99f6e4);
}

.service-title{
    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.service-description{
    color:#6b7280;
    line-height:1.9;
    font-size:15px;
    margin-bottom:30px;
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0f766e;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.service-link:hover{
    gap:15px;
    color:#0f766e;
}

@media(max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-modern{
        padding:80px 0;
    }

    .services-title{
        font-size:36px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

}

.about-modern{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.about-modern::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#ccfbf1;
    top:-220px;
    right:-180px;
    opacity:0.5;
}

.about-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:22px;
}

.about-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:28px;
}

.about-title span{
    color:#0f766e;
}

.about-description{
    color:#6b7280;
    line-height:2;
    font-size:17px;
    margin-bottom:35px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:14px;
    background:#f8fafc;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid #eef2f7;
}

.about-feature-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#ccfbf1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.about-feature-text{
    font-weight:700;
    color:#111827;
}

.about-image-wrap{
    position:relative;
}

.about-image{
    width:100%;
    border-radius:35px;
    box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.about-floating{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    width:240px;
}

.about-floating h3{
    font-size:36px;
    font-weight:800;
    color:#0f766e;
    margin-bottom:5px;
}

.about-floating p{
    margin:0;
    color:#6b7280;
}

@media(max-width:992px){

    .about-title{
        font-size:40px;
    }

    .about-image-wrap{
        margin-top:50px;
    }

    .about-floating{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:768px){

    .about-features{
        grid-template-columns:1fr;
    }

    .about-title{
        font-size:34px;
    }

}

.news-modern{
    position:relative;
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
}

.news-modern::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#ccfbf1;
    left:-180px;
    bottom:-180px;
    opacity:0.45;
}

.news-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:20px;
}

.news-title {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    text-align: center !important;
}

.news-title span{
    color:#0f766e;
}

.news-subtitle {
    max-width: 760px;
    margin: 0 auto !important;
    color: #6b7280;
    line-height: 1.9;
    font-size: 18px;
    text-align: center !important;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
    transition:0.35s;
    height:100%;
}

.news-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.10);
}

.news-image-wrap{
    position:relative;
    overflow:hidden;
}

.news-image{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s;
}

.news-card:hover .news-image{
    transform:scale(1.05);
}

.news-date{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    color:#0f766e;
}

.news-content{
    padding:32px;
}

.news-card-title{
    font-size:26px;
    font-weight:800;
    line-height:1.5;
    color:#111827;
    margin-bottom:18px;
    min-height:85px;
}

.news-card-description{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:28px;
    min-height:90px;
}

.news-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0f766e;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
}

.news-link:hover{
    gap:15px;
    color:#0f766e;
}

.news-bottom{
    text-align:center;
    margin-top:60px;
}

.btn-news{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 34px;
    border-radius:18px;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
    color:#fff;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 20px 40px rgba(20,184,166,0.25);
    transition:0.3s;
}

.btn-news:hover{
    transform:translateY(-4px);
    color:#fff;
}

@media(max-width:992px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .news-modern{
        padding:80px 0;
    }

    .news-grid{
        grid-template-columns:1fr;
    }

    .news-title{
        font-size:38px;
    }

    .news-card-title{
        min-height:auto;
    }

    .news-card-description{
        min-height:auto;
    }

}

.certificate-modern{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.certificate-modern::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#ccfbf1;
    top:-220px;
    right:-180px;
    opacity:0.45;
}

.certificate-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:20px;
}

.certificate-title{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.certificate-title span{
    color:#0f766e;
}

.certificate-subtitle{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
    font-size:18px;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.certificate-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:32px;
    padding:30px;
    border:1px solid #eef2f7;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
    transition:0.35s;
    height:100%;
}

.certificate-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.10);
}

.certificate-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
}

.certificate-image-wrap{
    text-align:center;
    margin-bottom:30px;
}

.certificate-image{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    background:#f8fafc;
}

.certificate-label{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:#ecfeff;
    color:#0f766e;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.certificate-code{
    font-size:22px;
    font-weight:800;
    line-height:1.5;
    color:#111827;
    margin-bottom:18px;
    min-height:70px;
}

.certificate-description{
    color:#6b7280;
    line-height:1.9;
    min-height:90px;
}

@media(max-width:992px){

    .certificate-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .certificate-modern{
        padding:80px 0;
    }

    .certificate-grid{
        grid-template-columns:1fr;
    }

    .certificate-title{
        font-size:38px;
    }

}

.trusted-modern{
    position:relative;
    padding:120px 0;
    background:#f8fafc;
    overflow:hidden;
}

.trusted-modern::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#ccfbf1;
    top:-180px;
    left:-180px;
    opacity:0.45;
}

.trusted-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:20px;
}

.trusted-title{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:22px;
    line-height:1.3;
}

.trusted-title span{
    color:#0f766e;
}

.trusted-subtitle{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    line-height:2;
    font-size:18px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.trusted-card{
    background:#fff;
    border-radius:28px;
    padding:28px 20px;
    text-align:center;
    border:1px solid #eef2f7;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
    transition:0.35s;
    height:100%;
}

.trusted-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,0.10);
}

.trusted-logo{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
    filter:grayscale(100%);
    transition:0.35s;
}

.trusted-card:hover .trusted-logo{
    filter:none;
    transform:scale(1.05);
}

.trusted-name{
    font-size:15px;
    font-weight:700;
    line-height:1.7;
    color:#111827;
}

@media(max-width:1200px){

    .trusted-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:992px){

    .trusted-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .trusted-modern{
        padding:80px 0;
    }

    .trusted-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trusted-title{
        font-size:36px;
    }

}

@media(max-width:480px){

    .trusted-grid{
        grid-template-columns:1fr;
    }

}

.public-service{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.public-service::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#ccfbf1;
    right:-180px;
    top:-180px;
    opacity:0.45;
}

.public-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ccfbf1;
    color:#0f766e;
    font-weight:700;
    margin-bottom:20px;
}

.public-title{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.public-title span{
    color:#0f766e;
}

.public-subtitle{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:2;
    font-size:18px;
}

.public-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.public-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:32px;
    padding:40px 35px;
    border:1px solid #eef2f7;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
    transition:0.35s;
    text-align:center;
    height:100%;
}

.public-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.10);
}

.public-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
}

.public-icon{
    width:90px;
    height:90px;
    border-radius:28px;
    background:linear-gradient(135deg,#ccfbf1,#99f6e4);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:28px;
    font-size:42px;
}

.public-image{
    width:160px;
    height:90px;
    object-fit:contain;
    margin-bottom:28px;
}

.public-card-title{
    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.public-card-description{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:30px;
    min-height:90px;
}

.public-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 15px 35px rgba(20,184,166,0.20);
}

.public-button:hover{
    transform:translateY(-4px);
    color:#fff;
}

@media(max-width:992px){

    .public-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .public-service{
        padding:80px 0;
    }

    .public-title{
        font-size:38px;
    }

}

.news-heading h2,
.news-heading p,
.certificate-heading h2,
.certificate-heading p,
.trusted-heading h2,
.trusted-heading p,
.public-heading h2,
.public-heading p {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.news-subtitle,
.certificate-subtitle,
.trusted-subtitle,
.public-subtitle {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
