/**************************************/
/************ General CSS *************/
/**************************************/
:root {
    --brand-dark: #0d1b4d;
    --brand-deep: #101c59;
    --brand-blue: #1d9ed8;
    --brand-cyan: #48d6ea;
    --brand-light: #9beaf8;
    --brand-text: #2b3d74;
    --brand-muted: #66749b;
    --brand-white: #ffffff;
    --brand-bg: #f5f9ff;
}

body {
    color: #757575;
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf6fb 100%);
}

a {
    color: var(--brand-blue);
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: var(--brand-dark);
    outline: none;
    text-decoration: none;
}

p {
    color: #757575;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #888888;
    margin: 0 0 15px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-weight: 400;
}

.mt-100 {
    margin-top: 100px;
}

.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #edf7ff 0%, #eef7ff 100%);
}

.legal-hero {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 36px;
    padding: 12px 0 0;
}

.legal-hero .service-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    color: #fff;
    border: none;
    box-shadow: 0 12px 22px rgba(29, 158, 216, 0.2);
    margin-bottom: 18px;
}

.legal-hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--brand-dark);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.legal-hero p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brand-text);
    margin: 0;
    font-weight: 500;
}

.legal-shell {
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(13, 27, 77, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(13, 27, 77, 0.06);
    padding: 18px 16px;
    backdrop-filter: blur(4px);
}

.legal-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 27, 77, 0.05);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(13, 27, 77, 0.035);
}

.legal-card:last-child {
    margin-bottom: 0;
}

.legal-card-header {
    background: linear-gradient(135deg, #0b1b53 0%, #1b82cb 100%);
    padding: 18px 22px;
}

.legal-card-header h2 {
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.7rem);
    color: #ffffff;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.legal-card-header--intro {
    padding: 26px 24px 22px;
}

.legal-card-header--intro h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.legal-card-header--intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.06rem;
    line-height: 1.6;
    font-weight: 500;
}

.legal-card-body {
    padding: 20px 22px 22px;
}

.legal-card-body p {
    font-size: 0.97rem;
    line-height: 1.72;
    color: #42507d;
    margin: 0;
}

@media (max-width: 767px) {
    .legal-page {
        padding-top: 110px;
    }

    .legal-shell {
        padding: 14px 12px;
    }

    .legal-card-header {
        padding: 16px 18px;
    }

    .legal-card-header h2 {
        font-size: 1.8rem;
    }

    .legal-card-body {
        padding: 18px 18px 20px;
    }

    .legal-card-body p,
    .legal-hero p {
        font-size: 1rem;
    }
}


/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #4F84C4;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}



/**************************************/
/************** Nav CSS ***************/
/**************************************/
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 88px;
    padding: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(13, 27, 77, 0.08);
    border-bottom: 1px solid rgba(13, 27, 77, 0.05);
}

#nav.nav-sticky {
    height: 76px;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

#nav .navbar {
    height: 100%;
    background: transparent !important;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding-left: 0;
    padding-right: 0;
}

#nav .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
}

#nav .navbar-brand {
    padding: 0;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

#nav .navbar-brand img {
    position: static;
    max-height: 74px;
    width: auto;
    margin-top: 0;
    transition: all .5s;
    filter: none;
}

#nav.nav-sticky .navbar-brand img {
    max-height: 58px;
    transition: all .5s;
}

#nav .nav-link,
#nav .nav-link:focus,
#nav .nav-link:hover,
#nav .nav-link.active {
    color: var(--brand-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

#nav .nav-link:hover,
#nav .nav-link.active {
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    box-shadow: 0 8px 20px rgba(29, 158, 216, 0.2);
}

#nav .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 768px) {
    #nav,
    #nav .navbar {
        background: rgba(255, 255, 255, 0.96) !important;
    }
    
    #nav a.nav-link {
        padding: 10px 18px;
        font-size: 14px;
        text-transform: uppercase;
    }
}

@media (max-width: 768px) {   
    #nav,
    #nav .navbar {
        background: rgba(255, 255, 255, 0.96) !important;
    }
    
    #nav a.nav-link {
        padding: 10px 12px;
    }
    
    #nav .dropdown-menu {
        box-shadow: none;
    }
    
    #nav .container-fluid {
        padding: 0;
    }
}



/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    margin-top: 100px;
}

.header .carousel-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13,27,77,0.96), rgba(29,158,216,0.82));
}

.header .carousel-img {
    text-align: center;
}

.header .carousel-img img {
    max-width: 100%;
    max-height: 100%;
}

.header .carousel-content {
    padding: 30px;
    text-align: center;
}

.header .carousel-content h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: capitalize;
    text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.header .carousel-content p {
    color: rgba(255,255,255,0.88);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.header .carousel-content .btn {
    padding: 12px 30px;
    color: #ffffff;
    border-radius: 0;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    border: none;
    box-shadow: none;
}

.header .carousel-content .btn:hover {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}

.carousel-control-next i,
.carousel-control-prev i {
    color: #888888;
    font-size: 45px;
}

.carousel-indicators li {
    width: 20px;
    height: 0px;
    background: #888888;
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding-bottom: 25px;
}

.section-header h2 {
    color: #666666;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
}

.section-header::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue));
    border-radius: 0 0 5px 5px;
    bottom: 0;
    left: calc(50% - 50px);
}

.section-header p {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin: 0;
}



/**************************************/
/********* About + Single CSS *********/
/**************************************/
.about,
.single {
    position: relative;
    padding: 90px 0 60px 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf6fb 100%);
}

.about .col-md-12,
.about .col-md-6,
.single .col-md-12,
.single .col-md-6 {
    margin-bottom: 30px;
}

.about .row > .col-md-6 {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.about .about-img,
.single .single-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(13, 27, 77, 0.08);
    flex-shrink: 0;
}

.about .about-img img,
.single .single-img img {
    width: 100%;
    display: block;
}

.about .about-content,
.single .single-content {
    position: relative;
    width: 80%;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: -100px auto 0 auto;
    padding: 30px 30px 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 27, 77, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(13, 27, 77, 0.08);
}

.about .about-content p,
.single .single-content p {
    flex: 1;
}

.about .about-content .btn,
.single .single-content .btn {
    margin-top: 20px;
    align-self: flex-start;
}

.about .about-content h2,
.single .single-content h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.02em;
}

.about .about-content p,
.single .single-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--brand-text);
    line-height: 1.8;
}

.about .btn,
.single .btn {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(29, 158, 216, 0.18);
}

.about .btn:hover,
.single .btn:hover {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.home-premium {
    padding: 80px 0 25px;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf6fb 100%);
}

.home-premium .container {
    max-width: 1240px;
}

.premium-card-shell {
    height: 100%;
    display: flex;
    width: 100%;
}

.premium-panel-card,
.premium-image-card {
    height: 100%;
    width: 100%;
}

.premium-panel {
    background: linear-gradient(135deg, rgba(11, 27, 64, 0.98), rgba(29, 132, 197, 0.9));
    border-radius: 30px;
    padding: 34px 28px 30px;
    box-shadow: 0 28px 50px rgba(17, 36, 90, 0.12);
    color: #fff;
    min-height: 100%;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: premiumRightIn 0.9s ease-out both;
}

.premium-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #e8f9ff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 9px 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-panel h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 5.2rem);
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: -0.065em;
    max-width: 430px;
}

.premium-panel p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.premium-metrics {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.premium-metrics div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.premium-metrics strong {
    font-size: clamp(2rem, 2.5vw, 3rem);
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.premium-metrics span {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}

.premium-image-box {
    position: relative;
    height: 100%;
    min-height: 420px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 27, 64, 0.96), rgba(29, 132, 197, 0.85));
    box-shadow: 0 28px 50px rgba(17, 36, 90, 0.12);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: premiumLeftIn 1s ease-out both;
}

.premium-image-card,
.premium-panel-card {
    display: flex;
    align-items: stretch;
    overflow: visible;
}

.premium-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    pointer-events: none;
}

.premium-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 30px;
    background: #fff;
}

.premium-grid {
    display: flex;
    align-items: stretch;
}

.premium-grid > [class*="col-"] {
    display: flex;
}

.premium-card:nth-child(2) { animation-delay: 0.08s; }
.premium-card:nth-child(3) { animation-delay: 0.16s; }
.premium-card:nth-child(4) { animation-delay: 0.24s; }

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), rgba(29,158,216,0.2), transparent);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(16, 28, 89, 0.12);
}

.premium-card i {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13,27,77,0.08), rgba(29,158,216,0.12));
    color: var(--brand-blue);
    font-size: 28px;
    margin-bottom: 18px;
}

.premium-card h4 {
    color: var(--brand-dark);
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.premium-card p {
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    padding: 90px 0 60px 0;
    text-align: center;
}

.home-service-grid {
    margin-top: 20px;
}

.home-service-grid .col-lg-3 {
    margin-bottom: 24px;
}

.service .row {
    display: flex;
    flex-wrap: wrap;
}

.service .row > [class*="col-"] {
    display: flex;
}

.service-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(11, 27, 64, 0.96), rgba(28, 124, 185, 0.9), rgba(67, 178, 224, 0.72));
    border-radius: 32px;
    padding: 42px 32px 30px;
    margin-bottom: 56px;
    box-shadow: 0 26px 60px rgba(17, 36, 90, 0.16);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 18%, rgba(255,255,255,0.22), transparent 22%),
                radial-gradient(circle at 15% 100%, rgba(255,255,255,0.1), transparent 30%);
    pointer-events: none;
}

.service-hero-copy {
    text-align: left;
    color: #fff;
    padding-right: 12px;
    position: relative;
    z-index: 1;
}

.service-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #dfeeff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 22px;
}

.service-hero-copy h2 {
    font-size: clamp(2.5rem, 4vw, 5rem);
    font-weight: 800;
    line-height: 0.97;
    margin-bottom: 20px;
    color: #fff;
    max-width: 700px;
    letter-spacing: -0.06em;
}

.service-hero-copy p {
    max-width: 700px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.service-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-hero-actions .btn {
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
}

.service-hero-actions .btn-primary {
    background: linear-gradient(135deg, #0fa8ea, #1d9ed8);
    border: none;
    box-shadow: 0 12px 30px rgba(18, 150, 222, 0.35);
}

.service-hero-actions .btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-hero-metrics {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.service-hero-metrics div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-hero-metrics strong {
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1;
    color: #fff;
    font-weight: 800;
}

.service-hero-metrics span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.service-hero-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.14), transparent 58%);
    z-index: 1;
}

.service-visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 18px;
    color: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.service-card-main {
    width: 300px;
    left: 40px;
    bottom: 26px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255,255,255,0.16);
}

.service-card-small {
    width: 220px;
    right: 28px;
    top: 26px;
    text-align: center;
    background: rgba(17, 36, 90, 0.35);
    border: 1px solid rgba(255,255,255,0.16);
}

.service-visual-card i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 26px;
    margin-bottom: 14px;
}

.service-visual-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-visual-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

.service .service-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 77, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(16, 28, 89, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
    animation: serviceCardIn 0.7s ease both;
}

.service .premium-service:nth-child(2) { animation-delay: 0.08s; }
.service .premium-service:nth-child(3) { animation-delay: 0.16s; }
.service .premium-service:nth-child(4) { animation-delay: 0.24s; }

.service .service-item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 26px 50px rgba(16, 28, 89, 0.14);
    border-color: rgba(15, 118, 201, 0.15);
}

.service .service-visual {
    position: relative;
    height: 220px;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service .service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 77, 0.15), rgba(13, 27, 77, 0.68));
}

.service .service-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.service .service-badge i {
    font-size: 30px;
    color: #ffffff;
}

.service .service-detail {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 20px 26px;
    background: #ffffff;
}

.service .service-detail h4,
.service .service-detail h4 a {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.service .service-detail h4 a:hover {
    color: var(--brand-blue);
}

.service .service-detail p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--brand-muted);
}

.service-feature-wrap,
.service-stack,
.service-process,
.service-industries {
    margin-top: 70px;
}

.service-feature-card,
.stack-card,
.process-step,
.industry-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(13,27,77,0.08);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(16, 28, 89, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before,
.stack-card::before,
.process-step::before,
.industry-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand-blue), transparent);
}

.service-feature-card:hover,
.stack-card:hover,
.process-step:hover,
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 35px rgba(16, 28, 89, 0.1);
}

.service-feature-card {
    padding: 26px 20px;
    text-align: left;
}

.service-feature-card i,
.industry-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30,58,138,0.12), rgba(14,165,233,0.14));
    color: var(--brand-blue);
    font-size: 26px;
    margin-bottom: 16px;
}

.service-feature-card h4,
.industry-card h4,
.stack-card h4,
.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.service-feature-card p,
.industry-card p,
.process-step p,
.stack-card li {
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.stack-card {
    padding: 24px 22px;
    text-align: left;
    margin-bottom: 24px;
}

.stack-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-card li {
    position: relative;
    padding-left: 20px;
    margin-top: 10px;
}

.stack-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-size: 20px;
    line-height: 1;
}

.process-step {
    padding: 26px 20px;
    text-align: left;
}

.process-step span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
}

.industry-card {
    padding: 26px 20px;
    text-align: left;
}

@keyframes serviceCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumLeftIn {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes premiumRightIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes premiumFloat {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 90px 0;
    background: #4F84C4;
}

.call-to-action .container {
    max-width: 700px;
}

.call-to-action .section-header h2 {
    color: #ffffff;
}

.call-to-action .section-header::before {
    background: #ffffff;
}

.call-to-action .section-header p {
    color: #ffffff;
}

.call-to-action .btn {
    padding: 15px 30px;
    color: #4F84C4;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 0;
    transition: 0.3s;
}

.call-to-action .btn:hover {
    color: #ffffff;
    background: #353535;
}



/**************************************/
/************* Pricing CSS ************/
/**************************************/
.pricing {
    background: #f2f2f2;
    padding: 90px 0 60px 0;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.pricing .price-plan {
    display: block;
    background: #353535;
    margin: 0 0 30px;
    padding: 20px 0;
}

.pricing .price-plan i {
    color: #ffffff;
    font-size: 60px;
    line-height: 80px;
}

.pricing .price-title {
    display: block;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing .price-amount {
    position: relative;
    font-family: 'Arial, Helvetica', sans-serif;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.pricing .price-amount span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: lowercase;
}

.pricing .price-amount span:first-child {
    position: relative;
    top: -27px;
    left: -5px;
}

.pricing .price-date {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom:0;
}

.pricing .price-details {
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.pricing .price-details li {
    padding: 5px 0;
}

.pricing .price-details li i.ion-md-checkmark {
    color: #4F84C4;
    margin-right: 8px;
}

.pricing .price-details li i.ion-md-close {
    color: #ea4335;
    margin-right: 10px;
}

.pricing .btn {
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.pricing .price-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    background: #353535;
    color: #ffffff;
}

.pricing .price-btn:hover {
    background: #4F84C4;
}

.pricing .features-price-btn {
    background: #4F84C4;
}

.pricing .features-price-btn:hover {
    background: #353535;
}

.pricing .features-price .price-plan {
    background: #4F84C4;
}

.pricing .features-price .price-plan p{
    color:#FFFFFF;
}

.pricing .features-price .price-plan .price-amount, 
.pricing .features-price .price-plan .price-amount span {
    color: #ffffff;
}

.pricing .features-price .price-plan .price-title {
    color:#ffffff;
}



/**************************************/
/*********** Our Skills CSS ***********/
/**************************************/
.skills {
    position: relative;
    padding: 90px 0 60px 0;
}

.skills .skill-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.skills .skill-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #666666;
    margin-bottom: 15px;
}

.skills .skill-name {
    position: relative;
    width: 100%;
}

.skills .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.skills .skill-name p:last-child {
    float: right;
}

.skills .progress {
    margin-bottom: 15px;
    border-radius: 0;
}

.skills .progress .progress-bar {
    background: #4F84C4;
    border-radius: 0;
}



/**************************************/
/************ Counters CSS ************/
/**************************************/
.counters {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #4F84C4;
}

.counters i {
    display: inline-block;
    font-size: 90px;
    line-height: 0;
    color: #ffffff;
    margin-bottom: 10px;
}

.counters h2 {
    font-family: 'Arial, Helvetica', sans-serif;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #ffffff;
}

.counters p {
    font-size: 22px;
    color: #ffffff;
}



/**************************************/
/************ Portfolio CSS ***********/
/**************************************/
.portfolio {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.portfolio .portfolio-item .link-preview,
.portfolio .portfolio-item .link-details {
    position: absolute;
    display: inline-block;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    background: #4F84C4;
    border: 1px solid #ffffff;
    transition: 0.3s;
    opacity: 0;
}

.portfolio .portfolio-item .link-preview i,
.portfolio .portfolio-item .link-details i {
    font-size: 22px;
    color: #ffffff;
}

.portfolio .portfolio-item .link-preview:hover,
.portfolio .portfolio-item .link-details:hover {
    background: #ffffff;
    border: 1px solid #4F84C4;
}

.portfolio .portfolio-item .link-preview:hover i,
.portfolio .portfolio-item .link-details:hover i {
    color: #353535;
}

.portfolio .portfolio-item .link-preview {
    left: 0;
    top: calc(50% - 18px);
}

.portfolio .portfolio-item .link-details {
    right: 0;
    top: calc(50% - 18px);
}

.portfolio .portfolio-item:hover .link-preview {
    opacity: 1;
    left: calc(50% - 50px);
}

.portfolio .portfolio-item:hover .link-details {
    opacity: 1;
    right: calc(50% - 50px);
}

.portfolio .portfolio-item .portfolio-info {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.portfolio .portfolio-item .portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio .portfolio-item .portfolio-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/************** Team CSS **************/
/**************************************/
.team {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

.team .team-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-item .team-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.team .team-item .team-social {
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    height: 35px;
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
}

.team .team-item .team-social a {
    display: inline-block;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    width: 35px;
    height: 35px;
    background: #4F84C4;
    border: 1px solid #ffffff;
}

.team .team-item .team-social a i {
    font-size: 22px;
    color: #ffffff;
}

.team .team-item .team-social a:hover {
    background: #ffffff;
    border: 1px solid #4F84C4;
}

.team .team-item .team-social a:hover i {
    color: #353535;
}

.team .team-item:hover .team-social {
    opacity: 1;
    top: calc(50% - 18px);
}

.team .team-item .team-info {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #f2f2f2;
}

.team .team-item .team-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team .team-item .team-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/*********** Testimonials CSS *********/
/**************************************/
.testimonials {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.testimonials .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials .testimonial-text h4 {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
}

.testimonials .owl-dot.active {
    background-color: #4F84C4;
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}



/**************************************/
/************* Clients CSS ************/
/**************************************/
.clients {
    position: relative;
    padding: 90px 0;
}

.clients .section-header p {
    padding-bottom: 10px;
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}



/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf6fb 100%);
}

.contact .container {
    max-width: 1100px;
}

.contact .contact-wrap {
    align-items: stretch;
}

.contact .contact-card,
.contact .form,
.contact .map {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 77, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(13, 27, 77, 0.08);
}

.contact .contact-card {
    padding: 30px 26px;
    background: linear-gradient(135deg, rgba(13,27,77,0.98), rgba(29,158,216,0.92));
    color: var(--brand-white);
}

.contact .contact-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 18px;
}

.contact .contact-card-icon i {
    font-size: 32px;
    color: var(--brand-white);
}

.contact .contact-card h3 {
    color: var(--brand-white);
    font-size: 30px;
    margin-bottom: 12px;
}

.contact .contact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact .contact-meta-item {
    margin-top: 22px;
}

.contact .contact-meta-item .meta-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 8px;
}

.contact .contact-meta-item p {
    margin: 0;
    font-size: 15px;
    color: var(--brand-white);
}

.contact .form {
    padding: 30px;
    color: #353535;
}

.contact .form input,
.contact .form textarea {
    padding: 12px 14px;
    border: 1px solid rgba(13, 27, 77, 0.1);
    border-radius: 12px;
    box-shadow: none;
    font-size: 15px;
    background: #f8fbff;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border-color: rgba(29, 158, 216, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(29, 158, 216, 0.15);
    background: #ffffff;
}

.contact .form button[type="submit"] {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    border-radius: 12px;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.contact .form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(29, 158, 216, 0.2);
}

.contact .map {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.contact .map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
    padding: 0 0 30px 0;
    background: linear-gradient(180deg, #eaf6ff 0%, #dfefff 100%);
}

.footer .footer-top {
    background: linear-gradient(135deg, rgba(9, 29, 63, 0.99), rgba(27, 95, 164, 0.97), rgba(59, 172, 228, 0.88));
    padding: 64px 0 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-white);
    line-height: 1;
    padding: 0;
    margin-right: 8px;
    text-align: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.3s ease;
}

.footer .footer-top .social-links a:hover {
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
    color: var(--brand-dark);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 28, 89, 0.18);
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    border-bottom: 2px solid rgba(255,255,255,0.9);
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 10px;
    color: var(--brand-light);
    font-size: 15px;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}

.footer .footer-top .footer-links ul a:hover {
    color: #dff7ff;
}

.footer .footer-top .footer-contact p {
    color: rgba(255,255,255,0.82);
    line-height: 26px;
    margin-bottom: 0;
}

.footer .footer-top .footer-newsletter {
    display: flex;
    flex-direction: column;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 12px 14px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-radius: 12px 0 0 12px;
    outline: none;
}

.footer .footer-top .footer-newsletter input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer .footer-top .footer-newsletter form {
    display: flex;
    width: 100%;
    margin-top: 12px;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 38%;
    padding: 12px 8px;
    text-align: center;
    color: var(--brand-dark);
    background: linear-gradient(135deg, #ffffff, #dff6ff);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
}

.footer .footer-top .footer-newsletter p {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
}

.footer .copyright,
.footer .credit {
    color: rgba(10, 30, 59, 0.8);
    text-align: center;
    padding-top: 26px;
    font-size: 14px;
}

.footer .copyright a,
.footer .credit a {
    color: #0f6ca8;
    font-weight: 700;
}

.footer .copyright a:hover,
.footer .credit a:hover {
    color: #0d1b4d;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }
    
    .footer .copyright {
        text-align: left;
    }
}