:root{
        --primary: #0B5E9A;
        --secondary: #2D8FD5;
        --accent: #F29A4A;
        --dark: #1E293B;
        --light: #F8FAFC;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Poppins', sans-serif;
    }

    /* ==========================
    NAVBAR
    ========================== */
    .navbar {
        padding: 12px 0;
        background: rgba(11, 94, 154, .95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    }
    .navbar-brand img {
        height: 65px;
        width: auto;
    }
    .btn-consult {
        background: var(--accent);
        color: #fff;
        border: none;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }
    .btn-consult:hover {
        background: #ff8a2b;
        color: #fff;
        transform: translateY(-2px);
    }

    /* ==========================
    HERO SECTION
    ========================== */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 120px;
        padding-bottom: 80px;
        position: relative;
        overflow: hidden;

        background: linear-gradient(135deg,
                #083b60 0%,
                #0B5E9A 45%,
                #2D8FD5 100%);
    }
    .hero::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .05);
        right: -250px;
        top: -250px;
    }
    .hero::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(242, 154, 74, .12);
        left: -150px;
        bottom: -150px;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero h1 {
        color: #fff;
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 25px;
    }
    .hero h1 span {
        color: var(--accent);
    }
    .hero p {
        color: rgba(255, 255, 255, .9);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 35px;
        max-width: 650px;
    }
    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    .btn-primary-custom {
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }
    .btn-primary-custom:hover {
        background: #ff8a2b;
        color: #fff;
        transform: translateY(-3px);
    }
    .btn-outline-custom {
        border: 2px solid rgba(255, 255, 255, .4);
        color: #fff;
        text-decoration: none;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }
    .btn-outline-custom:hover {
        background: #fff;
        color: var(--primary);
    }

    /* ==========================
    LOGO AREA
    ========================== */
    .hero-logo-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    .hero-logo-wrapper::before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(242, 154, 74, .18);
        border-radius: 50%;
        filter: blur(60px);
        z-index: -1;
    }
    .hero-logo {
        max-width: 100%;
        width: 450px;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .25));
        animation: floatLogo 4s ease-in-out infinite;
    }
    @keyframes floatLogo {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* ==========================
    RESPONSIVE
    ========================== */
    @media(max-width:991px) {
        .navbar-collapse {
            margin-top: 15px;
            padding: 20px;
            border-radius: 15px;
            background: rgba(11, 94, 154, .98);
        }
        .hero {
            text-align: center;
            padding-top: 150px;
        }
        .hero h1 {
            font-size: 2.8rem;
        }
        .hero p {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            justify-content: center;
        }
        .hero-logo {
            width: 320px;
            margin-top: 30px;
        }
    }
    @media(max-width:768px) {
        .navbar-brand img {
            height: 55px;
        }
        .hero {
            padding-top: 140px;
            padding-bottom: 60px;
        }
        .hero h1 {
            font-size: 2.2rem;
        }
        .hero p {
            font-size: 1rem;
        }
        .hero-logo {
            width: 260px;
        }
        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
        }
    }
    @media (max-width: 991.98px) {
        .menu-btn {
            display: none;
        }
    }
        
    /* ==========================
    ABOUT SECTION
    ========================== */
    .about-section {
        background: #fff;
        padding: 100px 0;
    }
    .section-tag {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 50px;
        background: rgba(45, 143, 213, .1);
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
    }
    .section-title {
        font-size: 2.7rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 25px;
        line-height: 1.3;
    }
    .section-text {
        color: #64748b;
        line-height: 1.9;
        margin-bottom: 20px;
    }
    .about-btn {
        display: inline-block;
        margin-top: 15px;
        background: var(--primary);
        color: #fff;
        padding: 14px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }
    .about-btn:hover {
        background: var(--accent);
        color: #fff;
    }
    /* Statistics Cards */
    .stat-card {
        background: #fff;
        padding: 35px 25px;
        border-radius: 20px;
        text-align: center;
        height: 100%;
        border: 1px solid #eef2f7;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        transition: .4s ease;
    }
    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11, 94, 154, .15);
    }
    .stat-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .stat-icon i {
        font-size: 30px;
        color: #fff;
    }
    .stat-card h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .stat-card p {
        margin: 0;
        color: #64748b;
        font-weight: 500;
    }
    @media(max-width:768px) {
        .section-title {
            font-size: 2rem;
        }
        .about-section {
            text-align: center;
        }
    }

    /* ==========================
    SERVICES SECTION
    ========================== */
    .services-section {
        padding: 100px 0;
        background: #d9e0e6;
    }
    .section-subtitle {
        max-width: 700px;
        margin: auto;
        color: #64748b;
    }
    .service-slide {
        padding: 15px;
    }
    .service-card {
        background: #fff;
        padding: 35px 30px;
        border-radius: 20px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        transition: .4s;
        border: 1px solid #eef2f7;
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11, 94, 154, .15);
    }
    .service-icon {
        width: 75px;
        height: 75px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        background: linear-gradient(135deg,var(--primary),var(--secondary));
    }
    .service-icon i {
        color: #fff;
        font-size: 34px;
    }
    .service-card h4 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
    }
    .service-card p {
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    .service-btn {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }
    .service-btn i {
        margin-left: 5px;
        transition: .3s;
    }
    .service-btn:hover i {
        transform: translateX(5px);
    }
    /* Slick Arrows */
    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
        z-index: 10;
    }
    .slick-prev:before,
    .slick-next:before {
        color: var(--primary);
        font-size: 40px;
    }

    /* ==========================
    NEWS SECTION
    ========================== */
    .news-section {
        padding: 100px 0;
        background: #ffffff;
    }
    .news-card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        transition: .4s;
        border: 1px solid #eef2f7;
    }
    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11, 94, 154, .15);
    }
    .news-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 8px 15px;
        border-radius: 50px;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        z-index: 2;
    }
    .news-badge.job {
        background: #198754;
    }
    .news-badge.update {
        background: #0B5E9A;
    }
    .news-badge.tech {
        background: #F29A4A;
    }
    .news-image {
        height: 220px;
        background: linear-gradient(135deg,var(--primary),var(--secondary));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .news-image i {
        font-size: 70px;
        color: #fff;
    }
    .news-content {
        padding: 30px;
    }
    .news-date {
        color: #64748b;
        font-size: 14px;
    }
    .news-date i {
        margin-right: 5px;
    }
    .news-content h4 {
        margin-top: 15px;
        margin-bottom: 15px;
        font-weight: 700;
        color: var(--dark);
    }
    .news-content p {
        color: #64748b;
        line-height: 1.8;
    }
    .news-btn {
        text-decoration: none;
        color: var(--primary);
        font-weight: 600;
    }
    .news-btn i {
        margin-left: 5px;
        transition: .3s;
    }
    .news-btn:hover i {
        transform: translateX(5px);
    }
    .view-all-news {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }
    .view-all-news:hover {
        background: var(--accent);
        color: #fff;
    }

    /* ==========================
    TESTIMONIALS
    ========================== */
    .testimonial-section {
        padding: 100px 0;
        background: #d9e0e6;
        overflow: hidden;
    }
    .testimonial-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .testimonial-track {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: scrollReviews 35s linear infinite;
    }
    .testimonial-track:hover {
        animation-play-state: paused;
    }
    .testimonial-card {
        width: 380px;
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        border: 1px solid #eef2f7;
    }
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    .testimonial-header img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
    }
    .testimonial-header h5 {
        margin: 0;
        font-weight: 700;
        color: var(--dark);
    }
    .testimonial-header span {
        color: #64748b;
        font-size: 14px;
    }
    .stars {
        color: #f29a4a;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .testimonial-card p {
        color: #64748b;
        line-height: 1.8;
        margin: 0;
    }
    @keyframes scrollReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    @media(max-width:768px) {
        .testimonial-card {
            width: 300px;
        }
    }

    /* ==========================
    CONTACT SECTION
    ========================== */
    .contact-section {
        padding: 100px 0;
        background: #ffffff;
    }
    .contact-info-box {
        background: linear-gradient(135deg,var(--primary),var(--secondary));
        color: #fff;
        padding: 50px;
        border-radius: 25px;
        height: 100%;
    }
    .contact-info-box h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }
    .contact-info-box>p {
        opacity: .9;
        margin-bottom: 40px;
    }
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    .contact-icon {
        width: 55px;
        height: 55px;
        border-radius: 15px;
        background: rgba(255, 255, 255, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .contact-icon i {
        color: #fff;
        font-size: 22px;
    }
    .contact-item h6 {
        font-weight: 600;
        margin-bottom: 5px;
    }
    .contact-item p {
        margin: 0;
        opacity: .9;
    }
    .contact-form-box {
        background: #fff;
        padding: 50px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        border: 1px solid #eef2f7;
    }
    .custom-input {
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 15px 20px;
        font-size: 15px;
    }
    .custom-input:focus {
        box-shadow: none;
        border-color: var(--primary);
    }
    .contact-btn {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: .3s;
    }
    .contact-btn:hover {
        background: var(--accent);
    }
    textarea.custom-input {
        resize: none;
    }
    @media(max-width:991px) {
        .contact-info-box,
        .contact-form-box {
            padding: 35px;
        }
        .contact-info-box {
            margin-bottom: 20px;
        }
    }
    @media(max-width:768px) {
        .contact-section {
            padding: 70px 0;
        }
        .contact-info-box,
        .contact-form-box {
            padding: 25px;
        }
        .contact-item {
            gap: 15px;
        }
    }

    /* ==========================
    About Page
    ========================== */
    /* ==========================
    WHO WE ARE SECTION
    ========================== */
    .who-we-are-section{
        padding:120px 0;
        background:#fff;
    }
    .who-image-wrapper{
        position:relative;
    }
    .who-image{
        border-radius:25px;
        box-shadow:0 20px 50px rgba(0,0,0,.10);
    }
    .experience-box{
        position:absolute;
        bottom:30px;
        right:-20px;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        color:#fff;
        padding:25px 30px;
        border-radius:20px;
        text-align:center;
        box-shadow:0 15px 35px rgba(11,94,154,.25);
    }
    .experience-box h2{
        margin:0;
        font-size:42px;
        font-weight:800;
    }
    .experience-box span{
        font-size:14px;
        opacity:.9;
    }
    .who-title{
        font-size:2.8rem;
        font-weight:700;
        color:var(--dark);
        line-height:1.3;
    }
    .who-text{
        color:#64748b;
        line-height:1.9;
        margin-top:20px;
    }
    .feature-item{
        display:flex;
        align-items:center;
        margin-bottom:18px;
    }
    .feature-item i{
        color:var(--accent);
        font-size:20px;
        margin-right:12px;
    }
    .feature-item span{
        font-weight:500;
        color:#334155;
    }
    .about-btn{
        display:inline-flex;
        align-items:center;
        background:var(--primary);
        color:#fff;
        padding:14px 32px;
        border-radius:50px;
        text-decoration:none;
        font-weight:600;
        transition:.3s;
    }
    .about-btn:hover{
        background:var(--accent);
        color:#fff;
    }
    @media(max-width:991px){
        .who-we-are-section{
            text-align:center;
        }
        .experience-box{
            position:relative;
            right:auto;
            bottom:auto;
            margin:25px auto 0;
            max-width:220px;
        }
        .feature-item{
            justify-content:center;
        }
        .who-title{
            font-size:2.2rem;
        }
    }
    /* ==========================
    WHY CHOOSE US
    ========================== */
    .why-us-section{
        padding:100px 0;
        background:#d9e0e6;
    }
    .why-title{
        font-size:2.8rem;
        font-weight:700;
        color:var(--dark);
        line-height:1.3;
    }
    .why-text{
        color:#64748b;
        line-height:1.9;
        margin-bottom:20px;
    }
    .why-card{
        background:#fff;
        padding:30px;
        border-radius:20px;
        height:100%;
        border:1px solid #eef2f7;
        box-shadow:0 10px 30px rgba(0,0,0,.06);
        transition:.4s;
    }
    .why-card:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 40px rgba(11,94,154,.15);
    }
    .why-icon{
        width:70px;
        height:70px;
        border-radius:18px;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        display:flex;
        align-items:center;
        justify-content:center;
        margin-bottom:20px;
    }
    .why-icon i{
        color:#fff;
        font-size:30px;
    }
    .why-card h5{
        font-weight:700;
        color:var(--dark);
        margin-bottom:12px;
    }
    .why-card p{
        margin:0;
        color:#64748b;
        line-height:1.8;
    }
    @media(max-width:991px){
        .why-us-section{
            text-align:center;
        }
        .why-title{
            font-size:2.2rem;
        }
    }
    /* ==========================
    HOW WE WORK
    ========================== */
    .process-section{
        padding:100px 0;
        background:#ffffff;
    }
    .process-wrapper{
        display:flex;
        align-items:flex-start;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }
    .process-item{
        flex:1;
        min-width:220px;
        max-width:250px;
        text-align:center;
        position:relative;
    }
    .process-icon{
        width:90px;
        height:90px;
        margin:0 auto 20px;
        border-radius:25px;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 15px 35px rgba(11,94,154,.20);
    }
    .process-icon i{
        font-size:38px;
        color:#fff;
    }
    .process-number{
        font-size:14px;
        font-weight:700;
        color:var(--accent);
        letter-spacing:2px;
        margin-bottom:10px;
    }
    .process-item h5{
        font-weight:700;
        margin-bottom:15px;
        color:var(--dark);
    }
    .process-item p{
        color:#64748b;
        line-height:1.8;
        font-size:15px;
    }
    .process-arrow{
        display:flex;
        align-items:center;
        justify-content:center;
        height:90px;
    }
    .process-arrow i{
        font-size:32px;
        color:var(--primary);
    }
    /* Mobile */
    @media(max-width:991px){
        .process-wrapper{
            flex-direction:column;
            align-items:center;
        }
        .process-arrow{
            transform:rotate(90deg);
            height:auto;
            margin:10px 0;
        }
        .process-item{
            max-width:400px;
        }
    }

    /* ==========================
    SERVICES PAGE
    ========================== */
    .services-page-section{
        padding:120px 0;
        background:#f8fafc;
    }
    .service-box{
        background:#fff;
        padding:35px;
        border-radius:25px;
        height:100%;
        border:1px solid #eef2f7;
        box-shadow:0 10px 30px rgba(0,0,0,.05);
        transition:.4s;
    }
    .service-box:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 40px rgba(11,94,154,.15);
    }
    .service-icon{
        width:80px;
        height:80px;
        border-radius:20px;
        display:flex;
        align-items:center;
        justify-content:center;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        margin-bottom:25px;
    }
    .service-icon i{
        color:#fff;
        font-size:34px;
    }
    .service-box h4{
        font-weight:700;
        margin-bottom:15px;
        color:var(--dark);
    }
    .service-box p{
        color:#64748b;
        line-height:1.8;
    }
    .service-box ul{
        list-style:none;
        padding:0;
        margin:25px 0;
    }
    .service-box ul li{
        margin-bottom:10px;
        color:#475569;
    }
    .service-box ul li::before{
        content:"✓";
        color:var(--accent);
        font-weight:700;
        margin-right:10px;
    }
    .service-link{
        color:var(--primary);
        font-weight:600;
        text-decoration:none;
    }
    .service-link:hover{
        color:var(--accent);
    }
    @media(max-width:768px){
        .services-page-section{
            padding:70px 0;
        }
        .service-box{
            padding:25px;
        }
    }

    /* ==========================
    CONTACT INFO + MAP
    ========================== */
    .contact-info-map-section{
        padding:120px 0;
        background:#f8fafc;
    }
    .contact-info-card{
        background:#fff;
        padding:45px;
        border-radius:25px;
        height:100%;
        box-shadow:0 10px 30px rgba(0,0,0,.06);
    }
    .contact-desc{
        color:#64748b;
        line-height:1.8;
        margin-bottom:35px;
    }
    .contact-info-item{
        display:flex;
        gap:20px;
        margin-bottom:30px;
    }
    .contact-icon{
        width:60px;
        height:60px;
        border-radius:15px;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
    }
    .contact-icon i{
        color:#fff;
        font-size:22px;
    }
    .contact-info-item h6{
        font-weight:700;
        margin-bottom:5px;
    }
    .contact-info-item p{
        color:#64748b;
        margin:0;
    }
    .map-box{
        height:100%;
        min-height:550px;
        border-radius:25px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    .map-box iframe{
        width:100%;
        height:100%;
        border:none;
    }

    /* ==========================
    CONTACT FORM
    ========================== */
    .contact-form-section{
        padding:10px 0;
        background:#ffffff;
    }
    .contact-form-card{
        background:#fff;
        padding:60px;
        border-radius:25px;
        box-shadow:0 15px 40px rgba(0,0,0,.06);
    }
    .custom-input{
        border:1px solid #dbe3eb;
        border-radius:12px;
        padding:15px 20px;
    }
    .custom-input:focus{
        border-color:var(--primary);
        box-shadow:none;
    }
    .contact-submit-btn{
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        color:#fff;
        border:none;
        padding:15px 40px;
        border-radius:50px;
        font-weight:600;
        transition:.3s;
    }
    .contact-submit-btn:hover{
        background:var(--accent);
        color:#fff;
    }
    textarea.custom-input{
        resize:none;
    }
    @media(max-width:991px){
        .contact-info-card,
        .contact-form-card{
            padding:30px;
        }
        .map-box{
            min-height:400px;
        }
    }

    /* ==========================
    SERVICE DETAILS
    ========================== */
    .service-details-section{
        padding:120px 0;
        background:#fff;
    }
    .service-details-title{
        font-size:3rem;
        font-weight:700;
        color:var(--dark);
        margin-bottom:25px;
    }
    .service-intro p,
    .service-content p{
        color:#64748b;
        line-height:1.9;
        font-size:16px;
    }
    .service-image-wrapper{
        margin:50px 0;
    }
    .service-details-image{
        width:100%;
        border-radius:25px;
        box-shadow:0 20px 50px rgba(0,0,0,.08);
    }
    .service-small-image{
        border-radius:20px;
    }
    .service-content h3{
        font-size:2rem;
        font-weight:700;
        color:var(--dark);
        margin-bottom:20px;
        margin-top:20px;
    }
    .service-content h4{
        font-weight:700;
        color:var(--dark);
    }
    .benefit-item{
        margin-bottom:18px;
        color:#475569;
        font-weight:500;
    }
    .benefit-item i{
        color:var(--accent);
        margin-right:10px;
    }
    .process-box{
        background:#f8fafc;
        padding:30px;
        border-radius:20px;
        text-align:center;
        transition:.3s;
    }
    .process-box:hover{
        transform:translateY(-5px);
    }
    .process-box span{
        display:inline-block;
        width:50px;
        height:50px;
        line-height:50px;
        border-radius:50%;
        background:var(--primary);
        color:#fff;
        font-weight:700;
        margin-bottom:15px;
    }
    .service-cta{
        margin-top:70px;
        background:linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
        padding:60px;
        border-radius:25px;
        text-align:center;
        color:#fff;
    }
    .service-cta h3{
        color:#fff;
    }
    .service-cta p{
        color:rgba(255,255,255,.9);
    }
    .service-cta-btn{
        display:inline-block;
        margin-top:15px;
        background:#fff;
        color:var(--primary);
        padding:14px 35px;
        border-radius:50px;
        font-weight:600;
        text-decoration:none;
    }
    .service-cta-btn:hover{
        color:var(--primary);
    }
    @media(max-width:991px){
        .service-details-title{
            font-size:2.2rem;
        }
        .service-cta{
            padding:35px;
        }
    }

    /* ==========================
    CAREERS PAGE
    ========================== */
    .jobs-section{
        padding:120px 0;
        background:#f8fafc;
    }
    .job-filter-box{
        background:#fff;
        padding:30px;
        border-radius:20px;
        margin-bottom:40px;
        box-shadow:0 10px 30px rgba(0,0,0,.05);
    }
    .job-input{
        height:55px;
        border-radius:12px;
        border:1px solid #dbe3eb;
    }
    .job-input:focus{
        box-shadow:none;
        border-color:var(--primary);
    }
    .btn-search-job{
        width:100%;
        height:55px;
        border:none;
        border-radius:12px;
        background:var(--primary);
        color:#fff;
        font-weight:600;
        transition:.3s;
    }
    .btn-search-job:hover{
        background:var(--accent);
    }
    .job-results-info{
        margin-bottom:25px;
        font-weight:600;
        color:var(--dark);
    }
    .job-card{
        background:#fff;
        padding:30px;
        border-radius:20px;
        margin-bottom:25px;
        border:1px solid #eef2f7;
        transition:.3s;
    }
    .job-card:hover{
        transform:translateY(-5px);
        box-shadow:0 15px 35px rgba(11,94,154,.12);
    }
    .job-top{
        display:flex;
        align-items:center;
        gap:15px;
        margin-bottom:15px;
    }
    .job-badge{
        background:#e8f4ff;
        color:var(--primary);
        padding:8px 15px;
        border-radius:50px;
        font-size:13px;
        font-weight:600;
    }
    .remote{
        background:#e8fff0;
        color:#198754;
    }
    .contract{
        background:#fff3cd;
        color:#856404;
    }
    .job-date{
        color:#64748b;
        font-size:14px;
    }
    .job-card h4{
        font-weight:700;
        margin-bottom:15px;
        color:var(--dark);
    }
    .job-meta{
        display:flex;
        flex-wrap:wrap;
        gap:25px;
        margin-bottom:15px;
    }
    .job-meta span{
        color:#64748b;
        font-size:14px;
    }
    .job-meta i{
        color:var(--primary);
        margin-right:6px;
    }
    .job-card p{
        color:#64748b;
        margin-bottom:0;
    }
    .job-btn{
        display:inline-block;
        background:var(--primary);
        color:#fff;
        text-decoration:none;
        padding:12px 30px;
        border-radius:50px;
        font-weight:600;
        transition:.3s;
    }
    .job-btn:hover{
        background:var(--accent);
        color:#fff;
    }
    @media(max-width:991px){
        .job-card{
            text-align:center;
        }
        .job-meta{
            justify-content:center;
        }
        .job-btn{
            margin-top:20px;
        }
        .job-top{
            justify-content:center;
        }
    }

    /* ==========================
    JOB DETAILS
    ========================== */
    .job-details-section{
        padding:120px 0;
        background:#f8fafc;
    }
    .job-details-card{
        background:#fff;
        padding:50px;
        border-radius:25px;
        box-shadow:0 10px 35px rgba(0,0,0,.05);
    }
    .job-header h1{
        font-weight:700;
        margin:20px 0;
        color:var(--dark);
    }
    .job-meta{
        display:flex;
        flex-wrap:wrap;
        gap:25px;
        color:#64748b;
    }
    .job-meta i{
        color:var(--primary);
        margin-right:6px;
    }
    .job-badge{
        background:#e8f4ff;
        color:var(--primary);
        padding:8px 18px;
        border-radius:50px;
        font-size:14px;
        font-weight:600;
    }
    .job-content{
        margin-top:40px;
    }
    .job-content h3{
        margin-top:40px;
        margin-bottom:20px;
        font-weight:700;
    }
    .job-content p{
        line-height:1.9;
        color:#64748b;
    }
    .job-image{
        margin:40px 0;
    }
    .job-image img{
        width:100%;
        border-radius:20px;
    }
    .job-list{
        padding-left:20px;
    }
    .job-list li{
        margin-bottom:12px;
        color:#64748b;
    }
    .benefit-box{
        margin-bottom:15px;
        color:#475569;
    }
    .benefit-box i{
        color:var(--accent);
        margin-right:10px;
    }
    .job-sidebar{
        background:#fff;
        padding:35px;
        border-radius:20px;
        position:sticky;
        top:120px;
        box-shadow:0 10px 35px rgba(0,0,0,.05);
    }
    .job-sidebar ul{
        list-style:none;
        padding:0;
        margin:25px 0;
    }
    .job-sidebar li{
        margin-bottom:15px;
        border-bottom:1px solid #eee;
        padding-bottom:15px;
    }
    .apply-btn{
        width:100%;
        display:block;
        text-align:center;
        padding:15px;
        background:var(--primary);
        color:#fff;
        text-decoration:none;
        border-radius:12px;
        font-weight:600;
    }
    .apply-btn:hover{
        background:var(--accent);
        color:#fff;
    }
    .job-apply-section{
        padding:100px 0;
        background:#fff;
    }
    .apply-card{
        background:#fff;
        padding:50px;
        border-radius:25px;
        box-shadow:0 10px 35px rgba(0,0,0,.05);
    }
    .apply-submit-btn{
        background:var(--primary);
        color:#fff;
        border:none;
        padding:14px 35px;
        border-radius:50px;
        font-weight:600;
    }
    @media(max-width:991px){
        .job-details-card,
        .apply-card{
            padding:30px;
        }
        .job-sidebar{
            margin-top:30px;
            position:relative;
            top:auto;
        }
    }

    /* ==========================
    FOOTER
    ========================== */
    .footer-section {
        background: #0b1f33;
        color: #fff;
        padding-top: 80px;
    }
    .footer-logo img {
        max-width: 220px;
        margin-bottom: 20px;
    }
    .footer-desc {
        color: rgba(255, 255, 255, .75);
        line-height: 1.8;
        margin-bottom: 25px;
    }
    .footer-social {
        display: flex;
        gap: 12px;
    }
    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }
    .footer-social a:hover {
        background: var(--accent);
        transform: translateY(-4px);
    }
    .footer-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #fff;
    }
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-links a {
        color: rgba(255, 255, 255, .75);
        text-decoration: none;
        transition: .3s;
    }
    .footer-links a:hover {
        color: var(--accent);
        padding-left: 5px;
    }
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    .footer-contact i {
        color: var(--accent);
        font-size: 18px;
        margin-top: 4px;
    }
    .footer-contact span {
        color: rgba(255, 255, 255, .75);
        line-height: 1.7;
    }
    /* Bottom Footer */
    .footer-bottom {
        margin-top: 60px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 25px 0;
    }
    .copyright {
        margin: 0;
        color: rgba(255, 255, 255, .7);
    }
    .footer-bottom-links {
        display: flex;
        justify-content: flex-end;
        gap: 25px;
    }
    .footer-bottom-links a {
        color: rgba(255, 255, 255, .7);
        text-decoration: none;
        transition: .3s;
    }
    .footer-bottom-links a:hover {
        color: var(--accent);
    }
    @media(max-width:768px) {
        .footer-section {
            text-align: center;
        }
        .footer-social {
            justify-content: center;
        }
        .footer-contact li {
            justify-content: center;
            text-align: left;
        }
        .footer-bottom-links {
            justify-content: center;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .copyright {
            text-align: center;
        }
    }

    /* ==========================
    FLOATING WHATSAPP
    ========================== */
    .whatsapp-float {
        position: fixed;
        width: 65px;
        height: 65px;
        bottom: 25px;
        right: 25px;
        background: #25D366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 34px;
        z-index: 9999;
        box-shadow: 0 8px 25px rgba(37, 211, 102, .45);
        transition: .3s ease;
    }
    .whatsapp-float:hover {
        color: #fff;
        transform: translateY(-5px) scale(1.08);
        box-shadow: 0 12px 35px rgba(37, 211, 102, .6);
    }
    /* Pulse Animation */
    .whatsapp-float::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(37, 211, 102, .4);
        animation: whatsappPulse 2s infinite;
        z-index: -1;
    }
    @keyframes whatsappPulse {
        0% {
            transform: scale(1);
            opacity: .8;
        }
        70% {
            transform: scale(1.6);
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
    @media(max-width:768px) {
        .whatsapp-float {
            width: 58px;
            height: 58px;
            font-size: 30px;
            bottom: 20px;
            right: 20px;
        }
    }