@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* ================= RESET ================= */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}


.container,
.container-fluid {
    overflow: visible !important;
}
a{
    text-decoration: none;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #ffffff;
    position: relative;
    transition: all 0.4s ease;
}

.navbar-brand img {
    max-height: 44px;
}

.nav-link {
    font-weight: 500;
    color: #2563EB !important;
    padding: 8px 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.nav-link:hover {
    color: #14B8A6 !important;
}

/* Active Menu */
.nav-link.active {
    color: #14B8A6 !important;
}

/* Change Only Last Letter Color */
/* .nav-link.active span {
    color: #14B8A6;
} */

/* ================= MEGA MENU ================= */
.menus-dropdown {
    position: relative;
}

/* FULL WIDTH MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #f8f9fa;
    padding: 40px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 1px solid rgb(204, 203, 203);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;

    z-index: 999;
}

/* SHOW ON HOVER */
.menus-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu h5 i {
    opacity: 0;
}
/* TEXT STYLE */
.mega-menu h5 {
    color: #14B8A6;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    transition: all 0.3s ease;
}


.mega-menu a:hover h5 i {
    animation: iconSlide 0.4s forwards;
}

.mega-menu a:hover h5 {
    color: #2563EB;
}

@keyframes iconSlide {
    0%   { opacity: 0; transform: translateX(0px); }
    25%  { opacity: 0.3; transform: translateX(1px); }
    50%  { opacity: 0.6; transform: translateX(3px); }
    100% { opacity: 1; transform: translateX(5px); }
}

.mega-menu p {
    font-size: 14px;
    color: #555;
}

/* RIGHT SIDE TEXT */
.cta-title {
    color: #2563EB ;
    font-weight: 700;
}



/* ROTATE ICON */
.menus-dropdown:hover i {
    transform: rotate(180deg);
}

.menus-dropdown i {
    transition: 0.3s;
}

/* ================= BUTTON ================= */
.btn-border {
    position: relative;
    padding: 8px 22px;
    border-radius: 50px;
    background: #14B8A6;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    border: none;
    display: inline-block;
    transition: all 0.3 ease;
}

.btn-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 3px solid #4eba6f;
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% { clip-path: inset(0 100% 0 0); }
    50% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 0 100%); }
}

.btn-border:hover {
    background: #2563EB ;
    color: #fff;
}

/* ================= STICKY ================= */
.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    animation: stickySlide 0.4s ease forwards;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@keyframes stickySlide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

body.has-sticky-nav {
    padding-top: 70px;
}


/* ================= OFFCANVAS (MOBILE MENU) ================= */
.offcanvas {
    max-width: 75%;
}

.offcanvas-header img {
    height: 35px;
}

.offcanvas-body .nav-link {
    font-size: 16px;
    padding: 10px 0;
}

.offcanvas .nav-link i {
    transition: 0.3s;
}

.offcanvas .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {

    /* Hide top bar */
    .top-bar {
        display: none;
    }

    /* Center menu items in mobile */
    .navbar-nav {
        text-align: left;
    }

    /* Button spacing in mobile menu */
    .navbar .btn-border {
        margin-top: 10px;
    }
}



/* ======================= PDF SECTION =========== */

.tools-section{
    background:#f7f8fc;
    padding:80px 0;
}

/* TITLE */

.section-title h2{
    font-size:35px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.section-title p{
    color:#6b7280;
    font-size:17px;
    margin:0;
}

/* FILTER BUTTONS */

.top-filter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:45px;
}

.filter-btn{
    border:none;
    background:#fff;
    padding:12px 24px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    color:#374151;
    transition:.3s;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.filter-btn:hover{
    transform:translateY(-2px);
}

.filter-btn.active{
    background:#2563EB;
    color:#fff;
}

/* CARD */

.tool-card{
    background:#fff;
    border:1px solid #edf0f7;
    border-radius:22px;
    padding:30px 25px;
    display:block;
    text-decoration:none;
    height:100%;
    transition:.35s;
}

.tool-card:hover{
    border-color:#14B8A6;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

/* ICON */

.tool-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:.3s;
}

.tool-card:hover .tool-icon{
    transform:scale(1.08);
}

.tool-icon i{
    font-size:20px;
}

/* ICON COLORS */

/* 1 */

.tool-item:nth-child(1) .tool-icon{
    background:#e0f2fe;
}
.tool-item:nth-child(1) .tool-icon i{
    color:#0284c7;
}

/* 2 */

.tool-item:nth-child(2) .tool-icon{
    background:#f3e8ff;
}
.tool-item:nth-child(2) .tool-icon i{
    color:#9333ea;
}

/* 3 */

.tool-item:nth-child(3) .tool-icon{
    background:#fee2e2;
}
.tool-item:nth-child(3) .tool-icon i{
    color:#dc2626;
}

/* 4 */

.tool-item:nth-child(4) .tool-icon{
    background:#dcfce7;
}
.tool-item:nth-child(4) .tool-icon i{
    color:#16a34a;
}

/* 5 */

.tool-item:nth-child(5) .tool-icon{
    background:#fef3c7;
}
.tool-item:nth-child(5) .tool-icon i{
    color:#d97706;
}

/* 6 */

.tool-item:nth-child(6) .tool-icon{
    background:#ede9fe;
}
.tool-item:nth-child(6) .tool-icon i{
    color:#7c3aed;
}

/* 7 */

.tool-item:nth-child(7) .tool-icon{
    background:#cffafe;
}
.tool-item:nth-child(7) .tool-icon i{
    color:#0891b2;
}

/* 8 */

.tool-item:nth-child(8) .tool-icon{
    background:#fce7f3;
}
.tool-item:nth-child(8) .tool-icon i{
    color:#db2777;
}

/* 9 */

.tool-item:nth-child(9) .tool-icon{
    background:#ecfccb;
}
.tool-item:nth-child(9) .tool-icon i{
    color:#65a30d;
}

/* 10 */

.tool-item:nth-child(10) .tool-icon{
    background:#fee2e2;
}
.tool-item:nth-child(10) .tool-icon i{
    color:#ef4444;
}

/* 11 */

.tool-item:nth-child(11) .tool-icon{
    background:#dbeafe;
}
.tool-item:nth-child(11) .tool-icon i{
    color:#2563eb;
}

/* 12 */

.tool-item:nth-child(12) .tool-icon{
    background:#fae8ff;
}
.tool-item:nth-child(12) .tool-icon i{
    color:#c026d3;
}

/* HEADING */

.tool-card h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin:0;
    line-height:1.4;
    transition:.3s;
}

.tool-card:hover h3{
    color:#2563EB;
}

/* FILTER HIDE */

.tool-item{
    transition:.3s;
}

.tool-item.hide{
    display:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title h2{
        font-size:30px;
    }

    .tool-card{
        padding:25px 22px;
    }

    .tool-card h3{
        font-size:20px;
    }
}

@media(max-width:767px){

    .tools-section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:25px;
    }

    .section-title p{
        font-size:15px;
    }

    .top-filter{
        gap:10px;
    }

    .filter-btn{
        flex:1 1 calc(50% - 10px);
        text-align:center;
        padding:12px 10px;
        font-size:14px;
    }

    .tool-card{
        padding:22px 20px;
        border-radius:18px;
    }

    .tool-icon{
        width:48px;
        height:48px;
        margin-bottom:18px;
    }

    .tool-icon i{
        font-size:18px;
    }

    .tool-card h3{
        font-size:18px;
    }
}



/* ================= FOOTER ================= */


.main-footer {
    background: linear-gradient(135deg, #09142b, #09142b);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


.main-footer::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    pointer-events: none;
    z-index: 0;

    background-image: 
        radial-gradient(2px 18px at 10% 10%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 20px at 20% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 16px at 30% 50%, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 22px at 40% 20%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 18px at 50% 60%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 20px at 60% 40%, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 17px at 70% 70%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 19px at 80% 30%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 21px at 90% 80%, rgba(255,255,255,0.8), transparent);
        

    animation: rainFall 1.8s linear infinite;
    opacity: 0.5;
}

@keyframes rainFall {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

.main-footer .container,
.footer-bottom {
    position: relative;
    z-index: 2;
}



.footer-logo {
    margin-bottom: 20px;
    max-width: 200px;
}

.footer-text {
    font-size: 13px !important;
    line-height: 1.7;
    opacity: 0.9;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #2563EB;
    display: block;
    margin-top: 6px;
}

/* Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-menu a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #14B8A6;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #14B8A6;
    opacity: 1;
}

.footer-menu a:hover::before {
    transform: translateX(4px);
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #14B8A6;
    margin-top: 4px;
}

/* ================================
   FOOTER BOTTOM
================================ */

.footer-bottom {
    background: linear-gradient(135deg, #233b6b, #233b6b);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #2563EB;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Copyright */
.copyright-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.copyright-text span {
    color: #f48323;
    font-weight: 600;
}

/* ================================
   SOCIAL ICONS
================================ */

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f48323;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.35s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.social-icon:hover::after {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-4px) rotate(6deg);
    color: #ffffff;
}



@media (max-width: 768px) {

    .main-footer {
        padding-left: 40px;
    }

 

    .footer-bottom-inner {
        justify-content: center;
        gap: 12px;
    }
}




/* details file css  */

.jpeg-convert-section{
    background:#f3f4f6;
    min-height:100vh;
}

/* LEFT */

.convert-box{
    text-align:center;
}

/* TITLE */

.convert-heading{
    margin-bottom:30px;
}

.convert-heading h1{
    font-size:30px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.convert-heading p{
    font-size:18px;
    color:#6b7280;
}

/* MAIN BOX */

.image-convert-box{
    border:4px dashed #2563EB;
    border-radius:14px;
    background:#f8f9fb;
    min-height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    max-width:850px;
    margin:auto;
    transition: all 0.3s ease;
}



/* CENTER */

.upload-center{
    text-align:center;
}

.upload-center h3{
    font-size:20px;
    color:#374151;
    margin-bottom:28px;
    font-weight:500;
}

/* BUTTON */

.select-image-btn{
    border:none;
    background:#05887a;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:10px 25px;
    border-radius:8px;
    transition:.3s;
}

.select-image-btn:hover{
    background:#057d71;
}

/* CONVERT */

.convert-btn-area{
    margin-top:35px;
}

.convert-btn{
    border:none;
    background:#2563EB;
    color:#fff;
    padding:7px 20px;
    border-radius:8px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.convert-btn:hover{
    background:#1c55cf;
}

/* NOTE */

.bottom-note{
    margin-top:24px;
    font-size:19px;
    color:#2563EB;
    font-weight:700;
}

/* RIGHT */

.sidebar-sticky{
    position: sticky;
    top:100px;
    height:max-content;

}

/* SIDEBAR */

.sidebar-tools{
    margin-bottom:18px;
}

.tool-link{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    color:#334155;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    transition:.3s;
}

.tool-link:hover{
    color:#4f46e5;
    border-color:#4f46e5;
}

.small-link{
    font-size:15px;
    text-align:center;
}

.tool-link.active{
    color:#4f46e5;
}

/* DOT */

.dot{
    width:12px;
    height:12px;
    background:#ff5f5f;
    border-radius:50%;
}

/* ADS */

.ads-wrapper{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:12px;
}

.ads-text{
    text-align:right;
    color:#6b7280;
    font-size:15px;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:1399px){

    .convert-heading h1{
        font-size:25px;
    }

}

@media(max-width:1199px){

    .upload-center h3{
        font-size:20px;
    }

}

@media(max-width:991px){

    /* HIDE RIGHT SIDE */

    .sidebar-sticky{
        display:none;
    }

    .convert-heading h1{
        font-size:20px;
    }

}

@media(max-width:767px){

    .jpeg-convert-section{
        padding-top:20px;
    }

    .convert-heading h1{
        font-size:18px;
    }

    .convert-heading p{
        font-size:16px;
    }

    .image-convert-box{
        min-height:150px;
        padding:30px 15px;
        border-width:3px;
    }

    .upload-center h3{
        font-size:18px;
        margin-bottom:22px;
    }

    .select-image-btn{
        width:100%;
        font-size:16px;
        padding:10px 20px;
    }

    .convert-btn{
        width:100%;
        font-size:18px;
        padding:12px 25px;
    }

    .bottom-note{
        font-size:15px;
    }

}

.preview-area{
    display:none;
    position:relative;
    width:100%;
    text-align:center;
}

.preview-area img{
    max-width:100%;
    max-height:150px;
    border-radius:10px;
}

.remove-image{
    position:absolute;
    top: -28px;
    right: 0px;
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:red;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:10;
}

.upload-trigger{
    cursor:pointer;
    display:inline-block;
}

.image-convert-box.dragover{
    border:4px solid #2563EB;
    background:#eefcf9;
}

#previewImage{
    max-height: 150px;
}


.loader-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.loader-box{
    width:450px;
    max-width:90%;
    background:#fff;
    padding:30px;
    border-radius:12px;
}

.progress{
    height:12px;
    background:#eee;
    border-radius:50px;
    overflow:hidden;
    margin-top:15px;
}

.progress-bar{
    width:0%;
    height:100%;
    background:#5b5fc7;
    transition:.3s;
}






.cyber-services-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Badge */
.service-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(37,99,235,.12);
    color:#2563EB;
    font-weight:600;
    font-size:16px;
}

/* Heading */
.service-title{
    color:#000;

    font-weight:800;
    margin:0;
}

/* Card */
.service-card{
    background:#061f3d;
    border-radius:28px;
    padding:40px 28px;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

/* Decorative Circle */
.card-circle{
    position:absolute;
    top:-40px;
    right:-40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(37,99,235,.10);
}

.card-circle::after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    right:18px;
    top:18px;
    background:rgba(37,99,235,.12);
}

/* Icons */
.service-icon{
    font-size:60px;
    margin-bottom:30px;
    line-height:1;
}

.service-icon.consulting{
    color:#14B8A6;
}

.service-icon.detection{
    color:#a855f7;
}

.service-icon.assessment{
    color:#f59e0b;
}

/* Title */
.service-card h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

/* Text */
.service-card p{
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
}

/* Link */
.read-more{
    color:#9333ea;
    font-size:24px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}

.read-more:hover{
    color:#c084fc;
}

.read-more i{
    transition:.3s;
}

.read-more:hover i{
    transform:translateX(6px);
}

/* Responsive */
@media (max-width:1199px){

    .service-card h3{
        font-size:20px;
    }

    .service-card p{
        font-size:16px;
    }
}

@media (max-width:991px){

    .service-card{
        padding:35px 25px;
    }

    .service-title{
        font-size:25px;
    }

    .service-card h3{
        font-size:18px;
    }
}

@media (max-width:767px){

    .cyber-services-section{
        padding:70px 0;
    }

    .service-title{
        font-size:20px;
    }

    .service-card{
        padding:30px 22px;
    }

    .service-card h3{
        font-size:17px;
    }

    .service-card p{
        font-size:14px;
        line-height:1.8;
    }

    .service-icon{
        font-size:50px;
    }

    .read-more{
        font-size:18px;
    }
}

@media (max-width:575px){

    .service-badge{
        font-size:14px;
        padding:10px 20px;
    }

    .service-title{
        font-size:18px;
    }

    .service-card{
        border-radius:22px;
    }
}





.feature-strip {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #1b2258 0%,
        #27346d 25%,
        #1c224f 50%,
        #121736 75%,
        #2b355f 100%
    );
    padding: 38px 0;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollRight 25s linear infinite;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item i {
    font-size: 22px;
    color: #ffffff;
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

/* Tablet */
@media (max-width: 991px) {

    .feature-item {
        font-size: 18px;
        gap: 16px;
    }

    .marquee-content {
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .feature-strip {
        padding: 24px 0;
    }

    .feature-item {
        font-size: 16px;
        gap: 12px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .marquee-content {
        gap: 35px;
        animation-duration: 18s;
    }
}




.achievement-section{
    padding:50px 0;
}

/* Badge */

.achievement-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(37,99,235,.12);
    color:#2563EB;
    font-size:18px;
    font-weight:600;
}

/* Title */

.achievement-title{
    font-weight:800;
    line-height:1.2;
    margin:0;
}

/* Card */

.achievement-card{
    background:#052347;
    border-radius:30px;
    padding:45px 25px;
    text-align:center;
    height:100%;
    transition:.4s ease;
}

.achievement-card:hover{
    transform:translateY(-8px);
}

/* Number */

.achievement-card h3{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
    margin-bottom:22px;
}

/* Tags */

.achievement-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:5px 15px;
    border-radius:50px;
    font-size:16px;
    font-weight:500;
}

/* Green */

.tag-green{
    background:rgba(20,184,166,.15);
    color:#14B8A6;
}

/* Orange */

.tag-orange{
    background:rgba(255,166,0,.15);
    color:#FFB02E;
}

/* Pink */

.tag-pink{
    background:rgba(255,0,149,.15);
    color:#FF2FA4;
}

/* Purple */

.tag-purple{
    background:rgba(139,92,246,.15);
    color:#A855F7;
}

/* Tablet */

@media(max-width:991px){

    .achievement-section{
        padding:80px 0;
    }

    .achievement-card h3{
        font-size:25px;
    }

    .achievement-tag{
        font-size:16px;
        padding:9px 20px;
    }
}

/* Mobile */

@media(max-width:767px){

    .achievement-section{
        padding:70px 0;
    }

    .achievement-title{
        font-size:36px;
    }

    .achievement-card{
        padding:35px 20px;
        border-radius:24px;
    }

    .achievement-card h3{
        font-size:20px;
        margin-bottom:18px;
    }

    .achievement-tag{
        font-size:15px;
        padding:8px 18px;
    }
}

@media(max-width:575px){

    .achievement-badge{
        font-size:14px;
        padding:10px 20px;
    }

    .achievement-title{
        font-size:30px;
    }

    .achievement-card h3{
        font-size:19px;
    }
}




.why-choose-us{
    background:#fff;
}

.why-choose-us .sub-title{
    display:block;
    font-size:18px;
    font-weight:500;
    color:#9ca3af;
    margin-bottom:10px;
}

.why-choose-us .title{
    font-size:35px;
    line-height:1.1;
    font-weight:500;
    color:#111827;
    margin:0;
    letter-spacing:-1px;
}

.feature-box{
    gap:28px;
}

.feature-number{
    
    font-size:35px;
    line-height:1;
    font-weight:700;
    color:#2563EB;
}

.feature-content h4{
    font-size:25px;
    font-weight:500;
    color:#111827;
    margin-bottom:14px;
}

.feature-content p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    max-width:420px;
}

/* Hover Effect */
.feature-box:hover .feature-number{
    color:#14B8A6;
    transition:.3s ease;
}

.feature-box:hover h4{
    color:#14B8A6;
    transition:.3s ease;
}

/* Tablet */
@media (max-width:991.98px){

    .why-choose-us .title{
        font-size:30px;
    }

    .feature-number{
        font-size:30px;
        min-width:60px;
    }

    .feature-content h4{
        font-size:20px;
    }

    .feature-content p{
        font-size:16px;
    }
}

/* Mobile */
@media (max-width:767.98px){

    .why-choose-us{
        padding-top:60px;
        padding-bottom:60px;
    }

    .why-choose-us .title{
        font-size:25px;
    }

    .feature-box{
        gap:18px;
    }

    .feature-number{
        font-size:25px;
        min-width:52px;
    }

    .feature-content h4{
        font-size:18px;
        margin-bottom:10px;
    }

    .feature-content p{
        font-size:16px;
        line-height:1.7;
    }
}

/* Small Mobile */
@media (max-width:575.98px){

    .why-choose-us .title{
        font-size:20px;
    }

    .feature-box{
        align-items:flex-start !important;
    }

    .feature-number{
        font-size:20px;
    }
}




.one-vision-section{
    position:relative;
    overflow:hidden;
    background:#090916;
    min-height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
}

/* Left Glow */
.one-vision-section::before{
    content:"";
    position:absolute;
    left:-15%;
    bottom:-140px;
    width:65%;
    height:280px;
    background:#2563EB;
    filter:blur(120px);
    opacity:.8;
}

/* Right Glow */
.one-vision-section::after{
    content:"";
    position:absolute;
    right:-15%;
    bottom:-140px;
    width:65%;
    height:280px;
    background:#14B8A6;
    filter:blur(120px);
    opacity:.8;
}

.vision-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.vision-icon{
    width:34px;
    height:34px;
    margin:0 auto 14px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #2563EB,
        #14B8A6
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.vision-icon span{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#090916;
}

.vision-content h2{
    color:#fff;
    font-size:42px;
    font-weight:500;
    margin-bottom:10px;
    line-height:1.2;
}

.vision-content p{
    color:rgba(255,255,255,.70);
    font-size:14px;
    margin:0;
}

/* Tablet */
@media (max-width:991px){

    .vision-content h2{
        font-size:34px;
    }
}

/* Mobile */
@media (max-width:767px){

    .one-vision-section{
        min-height:200px;
        padding:50px 20px;
    }

    .vision-content h2{
        font-size:28px;
    }

    .vision-content p{
        font-size:13px;
    }

    .vision-icon{
        width:30px;
        height:30px;
    }

    .vision-icon span{
        width:24px;
        height:24px;
    }
}




.marketing-section{
    background:#f5f7fb;
}

.section-subtitle{
    display:block;
    color:#2563EB;
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    line-height:1.2;
    margin-bottom:15px;
}

.section-desc{
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
}

.info-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    color:#1f2937;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    margin-bottom:10px;
    color:#6b7280;
    font-size:14px;
}

.feature-list i{
    color:#14B8A6;
    margin-right:8px;
}

.marketing-img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.video-box{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.video-box img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:65px;
    height:65px;
    background:#14B8A6;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
}

.stat-box{
    background:#14B8A6;
    color:#fff;
    text-align:center;
    border-radius:10px;
    padding:20px;
    margin-bottom:15px;
}

.stat-box h3{
    margin:0;
    font-size:36px;
    font-weight:700;
}

.stat-box span{
    font-size:14px;
}

.small-content{
    background:#fff;
    border-radius:10px;
    padding:18px;
}

.small-content h6{
    font-weight:700;
    color:#1f2937;
}

.small-content p{
    margin:0;
    color:#6b7280;
    font-size:14px;
}

.content-box h3{
    font-size:28px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:15px;
}

.content-box p{
    color:#6b7280;
    line-height:1.8;
}

.service-card{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:12px;
    height:100%;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-icon{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:15px;
    border-radius:50%;
    background:#14B8A6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.service-card h5{
    font-size:18px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:10px;
}

.service-card p{
    color:#6b7280;
    font-size:14px;
    margin:0;
}

@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .video-box img{
        height:280px;
    }
}

@media(max-width:767px){

    .section-title{
        font-size:28px;
    }

    .marketing-img,
    .video-box img{
        height:auto;
    }

    .service-card{
        padding:25px 20px;
    }
}



/* ---------------------------------------
          CONTACT US PAGE CODE START
-------------------------------------------*/

/* CONTACT SECTION START */.contact-page-section{
  background:#f5f8ff;
}

/* TITLE */
.contact-page-title{
  font-size:30px;
  font-weight:700;
  color:#2563EB;
}

.contact-page-text{
  color:#666;
  font-size:15px;
}

/* INFO */
.contact-page-info h6{
  font-weight:600;
  margin-bottom:4px;
}
.contact-page-info p{
  margin:0;
  color:#666;
  font-size:14px;
}

/* ICON */
.contact-page-icon{
  width:45px;
  height:45px;
  background:#2563EB;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:15px;
  font-size:16px;
}

.contact-page-icon i{
animation: iconZoom 2s infinite ease-in-out;

}
/* SOCIAL */
.contact-page-social a{
  width:40px;
  height:40px;
  background:#2563EB;
  color:#fff;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  transition:0.3s;
  text-decoration:none;

}
.contact-page-social a i{
  animation: iconZoom 2s infinite ease-in-out;
}
.contact-page-social a:hover{
  background:#2563EB;
  transform:translateY(-3px);
}

/* FORM BOX */
.contact-page-form-box{
  background:#fff;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* INPUT */
.contact-page-input{
  border:none;
  background:#eef3ff;
  padding:12px 15px;
  border-radius:10px;
  font-size:14px;
}
.contact-page-input:focus{
  box-shadow:none;
  background:#e4edff;
  border:1px solid #426db4;
}

/* BUTTON */
.contact-page-btn{
  background:#2563EB;
  color:#fff;
  border:none;
  padding:12px 35px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}
.contact-page-btn:hover{
  transform:translateY(-3px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .contact-page-title{
    font-size:24px;
  }
}






.process-section{
    background:#fff;
}

.process-item{
    position:relative;
    text-align:center;
}

.process-top{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.process-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex-shrink:0;
}

.process-icon i{
    font-size:24px;
    color:#fff;
    position:relative;
    z-index:2;
}

.process-icon::before{
    content:"";
    position:absolute;
    width:70px;
    height:70px;
    border-radius:50%;
    opacity:.15;
}

.orange{
    background:#f7a325;
}
.orange::before{
    background:#f7a325;
    transform:scale(1.18);
}

.blue{
    background:#4c5df7;
}
.blue::before{
    background:#4c5df7;
    transform:scale(1.18);
}

.red{
    background:#ff6b57;
}
.red::before{
    background:#ff6b57;
    transform:scale(1.18);
}

.green{
    background:#28c76f;
}
.green::before{
    background:#28c76f;
    transform:scale(1.18);
}

.process-line{
    height:2px;
    background:#d9e3ef;
    flex:1;
    margin-left:15px;
}

.process-item h5{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.process-item p{
    font-size:14px;
    line-height:1.7;
    color:#8b8b8b;
    max-width:240px;
    margin:auto;
}

/* Tablet */
@media (max-width:991px){

    .process-line{
        display:none;
    }

    .process-item{
        padding:15px;
    }
}

/* Mobile */
@media (max-width:767px){

    .process-icon{
        width:60px;
        height:60px;
    }

    .process-icon::before{
        width:60px;
        height:60px;
    }

    .process-icon i{
        font-size:20px;
    }

    .process-item h5{
        font-size:16px;
    }

    .process-item p{
        font-size:13px;
    }
}


.tool-content-card{

    margin-top:25px;
    padding: 30px 0px;
}


.tool-content-card h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}


.tool-content-card h3{
    margin-top:35px;
    font-size:22px;
    font-weight:700;
}



.tool-content-card p{
    color:#555;
    line-height:1.8;
}



.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:20px;
}



.process-item{
    padding:22px;
    border-radius:18px;
    background:#f8fafc;
    transition:.3s;
}



.process-item:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}



.process-item i{
    font-size:32px;
    margin-bottom:15px;
    color:#2563EB;
}



.process-item h4{
    font-size:18px;
}



.feature-list{
    padding:0;
    list-style:none;
}


.feature-list li{
    margin:12px 0;
    font-size:16px;
}


.feature-list i{
    color:#2563EB;
    margin-right:10px;
}



.faq-box{
    background:#f8fafc;
    padding:20px;
    border-radius:18px;
}



.faq-box b{
    display:block;
    margin-top:15px;
    font-size:17px;
}




@media(max-width:768px){

.process-grid{
    grid-template-columns:1fr;
}

.tool-content-card{
    padding:20px;
}

}


.how-work-section{
    background: linear-gradient(135deg,#f8fbff,#eefaf3);
    position: relative;
    overflow: hidden;
}

.how-work-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#2563EB20;
    border-radius:50%;
    top:-120px;
    left:-100px;
    filter:blur(30px);
}

.how-work-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:#0dcaf020;
    border-radius:50%;
    bottom:-120px;
    right:-100px;
    filter:blur(30px);
}

.work-badge{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.work-title{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.work-subtitle{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    font-size:17px;
}

.work-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.work-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.work-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#2563EB,#17c964);
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(40,167,69,.35);
}

.work-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.work-card p{
    color:#6c757d;
    margin-bottom:0;
    font-size:15px;
    line-height:1.7;
}

/* Arrow */
.work-card::after{
    content:"\f061";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    top:50%;
    right:-22px;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    background:#2563EB;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(40,167,69,.3);
}

.work-card:last-child::after{
    display:none;
}

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.feature-item i{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2563EB;
    color:#fff;
    font-size:18px;
}

@media(max-width:991px){

.work-card::after{
    display:none;
}

.work-title{
    font-size:32px;
}

}

@media(max-width:576px){

.work-title{
    font-size:28px;
}

.work-card{
    padding:30px 20px;
}

.feature-box{
    padding:20px;
    gap:20px;
}

.feature-item{
    width:100%;
    justify-content:center;
}

}



.security-section{
    background:linear-gradient(180deg,#F8FAFC,#FFFFFF);
    position:relative;
    overflow:hidden;
}

.security-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(25px);
}

.security-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(25px);
}

.security-badge{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.security-title{
    font-size:40px;
    font-weight:700;
    color:#111827;
}

.security-subtitle{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
}

.security-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.security-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#2563EB;
    transform:scaleX(0);
    transition:.35s;
}

.security-card:hover::before{
    transform:scaleX(1);
}

.security-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

.security-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#2563EB,#3B82F6);
    color:#fff;
    font-size:32px;
    box-shadow:0 15px 30px rgba(37,99,235,.25);
}

.security-card h5{
    font-size:21px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.security-card p{
    color:#6B7280;
    line-height:1.7;
    margin-bottom:0;
    font-size:15px;
}

/* Responsive */

@media(max-width:991px){

.security-title{
    font-size:32px;
}

}

@media(max-width:576px){

.security-title{
    font-size:28px;
}

.security-card{
    padding:30px 20px;
}

.security-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

}



.supported-format-section{
    background:#F8FAFC;
}

.format-badge{
    display:inline-flex;
    align-items:center;
    background:#2563EB;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.format-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

.format-subtitle{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
}

.format-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    cursor:pointer;
}

.format-card:hover{
    background:#2563EB;
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(37,99,235,.20);
}

.format-card i{
    font-size:42px;
    color:#2563EB;
    margin-bottom:18px;
    transition:.35s;
}

.format-card h5{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111827;
    transition:.35s;
}

.format-card:hover i,
.format-card:hover h5{
    color:#fff;
}

@media(max-width:991px){

.format-title{
    font-size:34px;
}

}

@media(max-width:576px){

.format-title{
    font-size:28px;
}

.format-card{
    padding:22px 15px;
}

.format-card i{
    font-size:34px;
}

.format-card h5{
    font-size:18px;
}

}



.features-section{
    background:linear-gradient(180deg,#ffffff,#F8FAFC);
}

.feature-badge{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.feature-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

.feature-subtitle{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
}

.feature-card{
    position:relative;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:#2563EB;
    transition:.35s;
}

.feature-card:hover::before{
    width:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(37,99,235,.18);
}

.feature-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563EB,#3B82F6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
    transition:.35s;
}

.feature-card:hover .feature-icon{
    transform:rotateY(180deg) scale(1.08);
}

.feature-card h5{
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.feature-card p{
    color:#6B7280;
    margin:0;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:991px){
    .feature-title{
        font-size:34px;
    }
}

@media(max-width:576px){

    .feature-title{
        font-size:28px;
    }

    .feature-card{
        padding:28px 20px;
    }

    .feature-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

}



.faq-section{
    background:#F8FAFC;
}

.faq-badge{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.faq-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

.faq-subtitle{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.custom-faq .accordion-button{
    background:#fff;
    font-weight:600;
    color:#111827;
    padding:20px 24px;
    font-size:17px;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#2563EB;
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    background:#fff;
    color:#6B7280;
    line-height:1.8;
    font-size:15px;
    padding:20px 24px;
}

.custom-faq .accordion-button::after{
    filter:brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

@media(max-width:991px){
    .faq-title{
        font-size:34px;
    }
}

@media(max-width:576px){
    .faq-title{
        font-size:28px;
    }

    .custom-faq .accordion-button{
        font-size:16px;
        padding:18px;
    }

    .custom-faq .accordion-body{
        padding:18px;
    }
}


.trust-section{
    background:#f8fbff;
}

.trust-badge{
    display:inline-block;
    padding:8px 20px;
    background:#2563EB;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.trust-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
}

.trust-subtitle{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
}

.trust-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.trust-card:hover{
    transform:translateY(-8px);
    border-color:#2563EB;
    box-shadow:0 20px 40px rgba(37,99,235,.15);
}

.trust-card i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#EFF6FF;
    color:#2563EB;
    font-size:30px;
    margin-bottom:20px;
    transition:.35s;
}

.trust-card:hover i{
    background:#2563EB;
    color:#fff;
    transform:rotateY(180deg);
}

.trust-card h5{
    font-weight:700;
    margin-bottom:12px;
    color:#111827;
}

.trust-card p{
    margin:0;
    color:#6B7280;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:991px){
    .trust-title{
        font-size:34px;
    }
}

@media(max-width:576px){

    .trust-title{
        font-size:28px;
    }

    .trust-card{
        padding:28px 20px;
    }

    .trust-card i{
        width:65px;
        height:65px;
        line-height:65px;
        font-size:26px;
    }

}


.cta-section{
    background:#F8FAFC;
}

.cta-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#2563EB,#3B82F6);
    border-radius:28px;
    padding:60px;
    color:#fff;
    box-shadow:0 25px 60px rgba(37,99,235,.30);
}

.shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.10);
}

.shape-1{
    width:220px;
    height:220px;
    top:-70px;
    right:-70px;
}

.shape-2{
    width:130px;
    height:130px;
    bottom:-40px;
    left:-40px;
}

.cta-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 20px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(10px);
}

.cta-title{
    font-size:46px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
}

.cta-text{
    font-size:18px;
    color:rgba(255,255,255,.90);
    max-width:650px;
    line-height:1.8;
    margin-bottom:0;
}

.cta-btn{
    background:#fff;
    color:#2563EB;
    font-weight:700;
    padding:16px 34px;
    border-radius:50px;
    font-size:17px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.cta-btn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:991px){

    .cta-box{
        padding:45px 30px;
        text-align:center;
    }

    .cta-title{
        font-size:36px;
    }

}

@media(max-width:576px){

    .cta-box{
        padding:35px 20px;
    }

    .cta-title{
        font-size:28px;
    }

    .cta-text{
        font-size:16px;
    }

    .cta-btn{
        width:100%;
        padding:15px;
    }

}

.content-box{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.content-badge{
    display:inline-flex;
    align-items:center;
    background:#2563EB;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.content-title{
    font-size:40px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.content-box p{
    font-size:17px;
    line-height:1.9;
    color:#4B5563;
    margin-bottom:20px;
    text-align:justify;
}

.content-box strong{
    color:#2563EB;
}

@media (max-width:991px){

    .content-box{
        padding:35px 25px;
    }

    .content-title{
        font-size:32px;
    }

}

@media (max-width:576px){

    .content-box{
        padding:25px 20px;
    }

    .content-title{
        font-size:28px;
    }

    .content-box p{
        font-size:16px;
        text-align:left;
    }

}