/*============================================
    GOOGLE FONT
============================================*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/*============================================
    ROOT VARIABLES — PREMIUM DARK BLUE
============================================*/
:root{
    --navy:#163A4D;
    --blue:#0A7B93;
    --accent:#27B4C8;
    --white:#ffffff;
    --gray:#F7FAFC;
    --navy-light:#24576C;
    --blue-light:#EAF8FB;
    --accent-soft:#D8F5F9;
    --shadow:0 18px 45px rgba(10,123,147,.12);
    --shadow-dark:0 18px 45px rgba(22,58,77,.18);
}

/*============================================
    RESET
============================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--gray);
    color: var(--navy);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
}

/*============================================
    TOP BAR
============================================*/
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar span {
    margin-right: 25px;
}

.top-bar i {
    color: var(--accent);
    margin-right: 8px;
}

.top-bar a {
    color: var(--white);
    margin-left: 18px;
    transition: .3s;
}

.top-bar a:hover {
    color: var(--accent);
}

/*============================================
    NAVBAR
============================================*/
.navbar {
    background:#ffffff;
    border-bottom:1px solid #E6EEF2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 80px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(6, 26, 64, 0.08);
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar .container {
    height: 80px;
    display: flex;
    align-items: center;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: auto;
    height: 60px;
    max-width: 220px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.navbar-brand span {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: 0.5px;
}

.navbar-brand .highlight {
    color: var(--blue);
    font-weight: 800;
}

/* Navigation */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    padding: 28px 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--blue);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 20px);
}

/* Get Quote Button */
.navbar .btn {
    margin-left: 25px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    color: var(--blue);
    font-size: 26px;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 12px 0;
    }

    .navbar .container {
        height: auto;
    }

    .navbar-brand img {
        width: 50px;
        height: 50px;
    }

    .navbar-brand span {
        font-size: 22px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        margin-left: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        bottom: 5px;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 50px;
    }

    .navbar .btn {
        width: 100%;
        margin: 20px 0 0;
    }
}

/*============================================
    BUTTONS
============================================*/
.btn {
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    transition: .4s;
}

.btn-primary{
    background:var(--blue);
    border:none;
    color:#fff;
}

.btn-primary:hover{
    background:var(--navy);
    color:#fff;
}

.btn-outline-primary {
    border: 2px solid var(--blue);
    color: var(--navy);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: var(--white);
}

.btn-accent:hover {
    background: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    border: none;
}

.btn-light:hover {
    background: var(--gray);
    color: var(--navy);
}

/*============================================
    HERO
============================================*/
.hero{
    padding:80px 0 100px;
    background:linear-gradient(
        135deg,
        var(--white) 0%,
        var(--gray) 50%,
        #e0f0fa 100%
    );
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--accent));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
}

.hero h1 .highlight {
    color: var(--blue);
}

.hero p {
    font-size: 18px;
    color: #4a5a6e;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    animation: float 4s ease-in-out infinite;
    max-height: 85vh;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/*============================================
    HERO INFO
============================================*/
.hero-info {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-info div {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex: 1;
    text-align: center;
    min-width: 100px;
    border-bottom: 4px solid transparent;
    transition: .3s;
}

.hero-info div:hover {
    border-bottom-color: var(--accent);
    transform: translateY(-5px);
}

.hero-info h2 {
    color: var(--blue);
    font-size: 36px;
    font-weight: 800;
}

.hero-info span {
    color: #4a5a6e;
    font-size: 14px;
}

/*============================================
    SECTION TITLE
============================================*/
.section-subtitle{
    display:block;
    font-size:34px;
    font-weight:900;
    color:var(--navy);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
    line-height:1.2;
}

.section-subtitle::before{
    content:"";
    width:40px;
    height:4px;
    border-radius:50px;
    background:linear-gradient(90deg,var(--blue),var(--accent));
}

.section-subtitle::after{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--accent);
}

/*============================================
HERO BADGE
============================================*/
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:12px 24px;
    background:#eef5ff;
    border:2px solid rgba(3,83,164,.15);
    border-radius:50px;
    color:var(--blue);
    font-size:16px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-badge::before{
    content:"";
    width:40px;
    height:4px;
    border-radius:50px;
    background:linear-gradient(90deg,var(--blue),var(--accent));
}

/*============================================
GLOBAL SECTION HEADINGS
============================================*/
section h2{
    font-size:28px;
    font-weight:700;
    color:#666;
    line-height:1.4;
    margin-bottom:20px;
}

section p{
    font-size:17px;
    line-height:1.8;
}
section h2{
    font-size:34px;
}

.hero-badge,
.section-subtitle{
    display:block;
    font-size:34px;
    font-weight:900;
    color:var(--navy);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
    line-height:1.2;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--navy);
}

.section-title h2 .highlight {
    color: var(--blue);
}

.section-title p {
    color: #4a5a6e;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/*============================================
    CLIENTS
============================================*/
.clients {
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.clients h6 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 50px;
}

.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.client-slider:hover .slide-track {
    animation-play-state: paused;
}

.logo-item {
    width: 180px;
    height: 90px;
    margin: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: transform .3s ease;
}

.logo-item:hover img {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/*============================================
    ABOUT
============================================*/
.about {
    background: var(--gray);
}

.about img {
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.about h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin: 20px 0;
}

.about h2 .highlight {
    color: var(--blue);
}

.about p {
    color: #4a5a6e;
    line-height: 1.9;
}

.about-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: .3s;
    border-left: 4px solid transparent;
}

.about-box:hover {
    transform: translateY(-6px);
    border-left-color: var(--accent);
}

.about-box i {
    color: var(--blue);
    font-size: 22px;
}

/*============================================
    SERVICES
============================================*/
.services {
    background: var(--white);
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--blue), var(--accent));
    transform: scaleX(0);
    transition: transform .4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(3, 83, 164, 0.15);
}

/*============================================
    SERVICE ICONS - RECTANGULAR
============================================*/
.service-icon {
    width: 100%;
    max-width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--blue), var(--accent));
    box-shadow: 0 8px 25px rgba(10, 123, 147, 0.12);
    transition: all 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(10, 123, 147, 0.2);
}

.service-card:hover .service-icon img {
    transform: scale(1.08);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    color: #4a5a6e;
    line-height: 1.8;
}

/*============================================
    WHY CHOOSE US
============================================*/
.why-us {
    background: var(--gray);
}

.feature-box {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    transition: .3s;
    border-right: 4px solid transparent;
}

.feature-box:hover {
    box-shadow: var(--shadow);
    border-right-color: var(--accent);
}

.feature-box i {
    font-size: 26px;
    color: var(--blue);
    margin-top: 5px;
}

.feature-box h5 {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--navy);
}

.feature-box p {
    color: #4a5a6e;
    margin: 0;
}

/*============================================
    PROCESS
============================================*/
.process {
    background: var(--white);
}

.process-card {
    background: var(--gray);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: .35s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
}

.process-card i{
    font-size:48px;
    margin-bottom:20px;
    transition:.3s ease;
}

/* Different icon color for each step - Using nth-child */
.process-card:nth-child(1) i { color:#2563EB; } /* Blue */
.process-card:nth-child(2) i { color:#10B981; } /* Green */
.process-card:nth-child(3) i { color:#F59E0B; } /* Orange */
.process-card:nth-child(4) i { color:#EF4444; } /* Red */

.process-card:hover i{
    transform:scale(1.1);
}

/*============================================
    INDUSTRY CARD
============================================*/
.industry-card{
    background:#ffffff;
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border:1px solid #e6eef2;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(22,58,77,.06);
}

.industry-card:hover{
    background:linear-gradient(
        135deg,
        var(--blue),
        var(--accent)
    );
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(10,123,147,.20);
}

/* ICON */
.industry-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--blue-light);
    color:var(--blue);
    font-size:32px;
    transition:.35s ease;
}

/* Hover Icon */
.industry-card:hover i{
    background:rgba(255,255,255,.2);
    color:#ffffff;
}

/* TITLE */
.industry-card h5{
    font-size:18px;
    font-weight:700;
    color:var(--navy);
    transition:.35s ease;
}

/* Hover Text */
.industry-card:hover h5{
    color:#ffffff;
}

/*============================================
    PORTFOLIO
============================================*/
.portfolio {
    background: var(--white);
}

.portfolio-card {
    background: var(--gray);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .35s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-weight: 700;
    color: var(--navy);
}

.portfolio-content p {
    color: #4a5a6e;
}

/*============================================
    COUNTER
============================================*/
.counter-section {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 80px 0;
}

.counter-box {
    color: var(--white);
}

.counter-box h2 {
    font-size: 50px;
    font-weight: 800;
    color:#ffffff;
}

.counter-box p {
    opacity: .85;
    font-size: 18px;
}

/*============================================
    CTA
============================================*/
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--blue), var(--accent));
    padding: 70px;
    border-radius: 35px;
    color: var(--white);
    text-align: center;
}

.cta-box h2 {
    font-size: 45px;
    font-weight: 800;
    color:#ffffff;
}

.cta-box p {
    font-size: 18px;
    margin: 20px 0 35px;
    opacity: 0.9;
}

.cta-box .btn-light {
    background: var(--white);
    color: var(--blue);
}

.cta-box .btn-light:hover {
    background: var(--gray);
    transform: translateY(-5px);
}

/*============================================
    TESTIMONIALS
============================================*/
.testimonials {
    background: var(--gray);
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    height: 100%;
    transition: .3s;
    border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--accent);
}

.stars i {
    color: #f4b400;
}

.testimonial-card p {
    color: #4a5a6e;
    line-height: 1.8;
    margin: 25px 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
}

.client-info span {
    color: #4a5a6e;
    font-size: 14px;
}

/*============================================
    CONTACT CTA
============================================*/
.contact-cta {
    background: var(--white);
    padding: 70px 0;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
}

.contact-cta h2 .highlight {
    color: var(--blue);
}

/*============================================
    FOOTER
============================================*/
.footer {
    background:#163A4D;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    width: 180px;
}

.footer p {
    color: #b0c4de;
    line-height: 1.8;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #b0c4de;
    transition: .3s;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: .3s;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #b0c4de;
}

/*============================================
    WHATSAPP BUTTON
============================================*/
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

/*============================================
    BACK TO TOP
============================================*/
.back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--navy);
}

.nav-scrolled {
    box-shadow: 0 15px 40px rgba(6, 26, 64, 0.1);
}

/*============================================
    FORM
============================================*/
.form-control {
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #e0e8f0;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(3, 83, 164, .25);
}

textarea.form-control {
    resize: none;
}

/*============================================
    RESPONSIVE
============================================*/
@media (max-width: 991px) {
    .hero h1 {
        font-size: 38px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .hero-info {
        gap: 15px;
    }
    .hero-info div {
        padding: 18px;
    }
    .hero-info h2 {
        font-size: 28px;
    }
    /* Service Icons Responsive */
    .service-icon {
        max-width: 240px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn {
        padding: 12px 24px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h2 {
        font-size: 30px;
    }
    .counter-box h2 {
        font-size: 36px;
    }
    .logo-item {
        width: 120px;
        height: 70px;
        margin: 0 15px;
    }
    /* Service Icons Responsive */
    .service-icon {
        max-width: 220px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 26px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .hero-info {
        flex-direction: column;
    }
    .hero-info div {
        flex: auto;
    }
    .navbar-brand img {
        width: 180px;
    }
    /* Service Icons Responsive */
    .service-icon {
        max-width: 100%;
        height: 180px;
        border-radius: 12px;
    }
}

/*========================
MISSION VISION
========================*/
.value-card{
    background:linear-gradient(
        135deg,
        var(--blue),
        var(--accent)
    );
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    margin-bottom:25px;
}

.value-list{
    padding-left:18px;
    margin-top:20px;
}

.value-list li{
    margin-bottom:12px;
    color:#666;
}

.value-badge{
    display:block;
    background:#f4f7fb;
    padding:10px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    text-align:center;
}

/*========================
STATS
========================*/
.stats-section{
    padding:90px 0;
    background:linear-gradient(135deg,#0d6efd,#0046b5);
    color:#fff;
}

.stat-box{
    padding:30px;
}

.stat-box h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box h6{
    font-size:17px;
    opacity:.95;
    letter-spacing:.5px;
}

/*=========================
OUR EXPERTISE
=========================*/
.expertise-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.expertise-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.18);
}

.expertise-card i{
    font-size:48px;
    color:#0d6efd;
    margin-bottom:20px;
}

.expertise-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.expertise-card p{
    color:#666;
    margin-bottom:0;
    line-height:1.7;
}

/*=========================
TECH STACK
=========================*/
.tech-card{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.35s;
}

.tech-card:hover{
    transform:translateY(-8px);
}

.tech-card h4{
    margin-bottom:20px;
    font-weight:700;
    color:#0d6efd;
}

.tech-card ul{
    padding-left:18px;
    margin:0;
}

.tech-card li{
    margin-bottom:12px;
    color:#555;
}

/*=========================
FEATURE CARD
=========================*/
.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(13,110,253,.15);
}

.feature-card i{
    font-size:48px;
    color:#0d6efd;
    margin-bottom:20px;
}

.feature-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    margin-bottom:0;
    line-height:1.7;
}

/*=========================
WHY CHOOSE US
=========================*/
.choose-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.choose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.15);
}

.choose-card i{
    font-size:46px;
    color:#0d6efd;
    margin-bottom:20px;
}

.choose-card h5{
    font-weight:700;
    margin-bottom:15px;
}

/*=========================
PROCESS CARD - UPDATED WITH COLORS
=========================*/
.process-card{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:14px;
    font-weight:700;
    color:#0d6efd;
}

/* Process Icon - Base Style */
.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 24px;
    margin: 0;
    color: inherit;
}

/* Different colors for each step */
.process-card:nth-child(1) .process-icon {
    background: #E3F2FD;
    color: #0A7B93;
}

.process-card:nth-child(2) .process-icon {
    background: #E8F5E9;
    color: #2E7D32;
}

.process-card:nth-child(3) .process-icon {
    background: #F3E5F5;
    color: #7B1FA2;
}

.process-card:nth-child(4) .process-icon {
    background: #FFF3E0;
    color: #E65100;
}

.process-card:nth-child(5) .process-icon {
    background: #FCE4EC;
    color: #C62828;
}

.process-card:nth-child(6) .process-icon {
    background: #E0F7FA;
    color: #00838F;
}

.process-card:nth-child(7) .process-icon {
    background: #F3E5F5;
    color: #6A1B9A;
}

.process-card:nth-child(8) .process-icon {
    background: #E0F2F1;
    color: #00695C;
}

/* Hover effect for process icons */
.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.process-card:hover .process-icon i {
    transform: scale(1.1);
}

.process-card h5{
    font-weight:700;
    margin-bottom:15px;
}

/*=========================
CTA
=========================*/
.cta-section{
    padding:80px 0;
}

.cta-section .btn{
    font-weight:600;
    padding:14px 35px;
    border-radius:50px;
}

/*============================================
ABOUT FEATURES
============================================*/
.about-feature{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    height:100%;
    text-align:left;
    border:1px solid #e8edf5;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.about-feature:hover{
    transform:translateY(-8px);
    border-color:var(--blue);
    box-shadow:0 20px 45px rgba(3,83,164,.15);
}

.about-feature-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
}

.about-feature h5{
    font-size:22px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.about-feature p{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/*============================================
ABOUT HERO - CORPORATE STYLE
============================================*/
.about-hero{
    background:#ffffff;
    padding:100px 0;
}

.about-label{
    display:inline-block;
    color:var(--blue);
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    padding:10px 22px;
    background:var(--blue-light);
    border-radius:50px;
    margin-bottom:20px;
}

.about-heading{
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    color:var(--navy);
    margin-bottom:25px;
}

.about-heading span{
    color:var(--blue);
}

.about-description{
    color:#536273;
    font-size:17px;
    line-height:1.9;
    max-width:560px;
}

.about-actions{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

/* IMAGE */
.about-image-wrapper{
    position:relative;
}

.about-image-wrapper img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(22,58,77,.15);
}

/* STATS BOX */
.about-image-overlay{
    position:absolute;
    bottom:25px;
    left:25px;
    right:25px;
    background:rgba(255,255,255,.95);
    border-radius:18px;
    padding:25px;
    display:flex;
    justify-content:space-around;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.about-image-overlay h3{
    color:var(--blue);
    font-size:34px;
    font-weight:800;
    margin:0;
}

.about-image-overlay p{
    margin:5px 0 0;
    color:#536273;
    font-size:14px;
    font-weight:600;
}

@media(max-width:991px){
    .about-heading{
        font-size:38px;
    }
    .about-image-wrapper img{
        height:400px;
    }
}

@media(max-width:576px){
    .about-heading{
        font-size:30px;
    }
    .about-image-overlay{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }
}

/*============================================
ABOUT COMPANY SECTION
============================================*/
.about-company{
    background:#f7fafc;
}

.about-company-image{
    position:relative;
}

.about-company-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(22,58,77,.15);
}

.about-company-badge{
    position:absolute;
    bottom:30px;
    right:-25px;
    background:white;
    padding:25px 35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    border-bottom:4px solid var(--accent);
}

.about-company-badge h3{
    margin:0;
    font-size:42px;
    font-weight:800;
    color:var(--blue);
}

.about-company-badge p{
    margin:5px 0 0;
    color:#536273;
    font-size:14px;
    font-weight:600;
}

.about-company-title{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:var(--navy);
    margin-bottom:25px;
}

.about-company-title span{
    color:var(--blue);
}

.about-company-text{
    color:#536273;
    font-size:16px;
    line-height:1.8;
}

.company-points{
    margin-top:30px;
}

.company-point{
    display:flex;
    gap:18px;
    margin-bottom:22px;
}

.company-point i{
    font-size:24px;
    color:var(--accent);
    margin-top:5px;
}

.company-point h5{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
    color:var(--navy);
}

.company-point p{
    margin:0;
    color:#687585;
    line-height:1.6;
}

@media(max-width:991px){
    .about-company-title{
        font-size:34px;
    }
    .about-company-image img{
        height:400px;
    }
    .about-company-badge{
        right:15px;
        bottom:20px;
    }
}

@media(max-width:576px){
    .about-company-title{
        font-size:28px;
    }
    .about-company-badge{
        padding:20px;
    }
    .about-company-badge h3{
        font-size:32px;
    }
}

/*============================================
FOUNDATION SECTION
============================================*/
.foundation-section{
    background:#ffffff;
}

.foundation-label{
    display:inline-block;
    padding:8px 22px;
    background:var(--blue-light);
    color:var(--blue);
    border-radius:50px;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
}

.section-header h2 span{
    color:var(--blue);
}

.section-header p{
    max-width:750px;
    margin:auto;
    color:#667085;
    font-size:17px;
    line-height:1.8;
}

/* CARD */
.foundation-card{
    background:#ffffff;
    padding:40px 30px;
    height:100%;
    border-radius:22px;
    border:1px solid #e8edf5;
    box-shadow:0 12px 35px rgba(22,58,77,.08);
    transition:.35s;
}

.foundation-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
}

.foundation-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:white;
    font-size:30px;
    margin-bottom:25px;
}

.foundation-card h4{
    font-size:24px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:18px;
}

.foundation-card p{
    color:#667085;
    line-height:1.8;
}

.foundation-card ul{
    padding:0;
    margin-top:25px;
}

.foundation-card ul li{
    list-style:none;
    margin-bottom:15px;
    color:#536273;
    font-weight:600;
}

.foundation-card ul i{
    color:var(--accent);
    margin-right:10px;
}

/* VISION BOX */
.vision-highlight{
    margin-top:25px;
    padding:15px;
    background:var(--blue-light);
    border-radius:12px;
    color:var(--blue);
    font-weight:700;
}

.vision-highlight i{
    margin-right:8px;
}

/* VALUES */
.values-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.values-list span{
    padding:10px 18px;
    background:#f5f9fc;
    border-radius:50px;
    color:var(--navy);
    font-size:14px;
    font-weight:700;
}

.values-list .full{
    width:100%;
    text-align:center;
}

@media(max-width:991px){
    .section-header h2{
        font-size:34px;
    }
}

@media(max-width:576px){
    .section-header h2{
        font-size:28px;
    }
    .foundation-card{
        padding:30px 20px;
    }
}

/*============================================
COMPANY STATS
============================================*/
.company-stats{
    padding:90px 0;
    background:linear-gradient(135deg,var(--navy),var(--blue));
}

.stats-header span{
    display:inline-block;
    color:var(--accent);
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:15px;
}

.stats-header h2{
    color:#ffffff;
    font-size:38px;
    font-weight:800;
}

.stat-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    padding:35px 20px;
    border-radius:22px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.stat-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,var(--accent),#ffffff);
    color:var(--navy);
    font-size:28px;
}

.stat-card h2{
    color:#ffffff;
    font-size:48px;
    font-weight:800;
    margin-bottom:8px;
}

.stat-card p{
    color:rgba(255,255,255,.85);
    font-size:16px;
    font-weight:600;
    margin:0;
}

@media(max-width:768px){
    .stats-header h2{
        font-size:30px;
    }
    .stat-card h2{
        font-size:38px;
    }
}

/*============================================
EXPERTISE SECTION
============================================*/
.expertise-section{
    background:#f7fafc;
}

.expertise-label{
    display:inline-block;
    padding:8px 22px;
    background:var(--blue-light);
    color:var(--blue);
    border-radius:50px;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
}

/* FEATURED */
.featured-expertise{
    background:linear-gradient(135deg,var(--navy),var(--blue));
    padding:35px;
    border-radius:25px;
    color:white;
}

.featured-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:white;
}

.featured-expertise h3{
    font-size:28px;
    font-weight:800;
}

.featured-expertise p{
    opacity:.9;
    line-height:1.8;
}

/* CARDS */
.expertise-box{
    background:white;
    padding:35px 30px;
    height:100%;
    border-radius:20px;
    border:1px solid #e8edf5;
    transition:.35s;
}

.expertise-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
    border-color:var(--blue);
}

.expertise-box i{
    font-size:38px;
    color:var(--blue);
    margin-bottom:20px;
}

.expertise-box h5{
    font-size:20px;
    font-weight:800;
    color:var(--navy);
}

.expertise-box p{
    color:#667085;
    line-height:1.7;
}

@media(max-width:768px){
    .section-header h2{
        font-size:32px;
    }
}

/*============================================
TECHNOLOGY SECTION
============================================*/
.technology-section{
    background:#f7fafc;
}

.technology-header span{
    color:var(--blue);
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
}

.technology-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    margin-top:15px;
}

.technology-header h2 strong{
    color:var(--blue);
}

.technology-header p{
    max-width:700px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/* CARD */
.technology-card{
    background:#ffffff;
    padding:35px;
    height:100%;
    border-radius:22px;
    border:1px solid #e6eef2;
    transition:.35s;
}

.technology-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
}

.technology-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    margin-bottom:25px;
}

.technology-card h4{
    font-size:22px;
    font-weight:800;
    color:var(--navy);
}

.technology-card p{
    color:#667085;
    line-height:1.7;
}

/* TAGS */
.technology-tags {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    margin-top:30px;
}

.technology-tags span{
    padding:8px 16px;
    background:#eef8fb;
    color:var(--blue);
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.technology-tags img {
    width:45px;
    height:45px;
    object-fit:contain;
    transition:0.3s ease;
}

.technology-tags img:hover {
    transform:translateY(-6px) scale(1.08);
}

@media(max-width:768px){
    .technology-header h2{
        font-size:32px;
    }
}

/*============================================
AI AUTOMATION SECTION
============================================*/
.ai-section{
    background:#f7fafc;
}

.ai-header span{
    color:var(--blue);
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
}

.ai-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    margin-top:15px;
}

.ai-header h2 strong{
    color:var(--blue);
}

.ai-header p{
    max-width:760px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/* FEATURE BOX */
.ai-feature-box{
    background:linear-gradient(135deg,var(--navy),var(--blue));
    padding:45px;
    border-radius:25px;
    color:white;
}

.ai-main-icon{
    width:100px;
    height:100px;
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    font-size:45px;
}

.ai-feature-box h3{
    font-size:30px;
    font-weight:800;
}

.ai-feature-box p{
    opacity:.9;
    line-height:1.8;
}

/* CARDS */
.ai-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    height:100%;
    border:1px solid #e6eef2;
    transition:.35s;
}

.ai-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
}

.ai-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:var(--blue-light);
    color:var(--blue);
    font-size:28px;
    margin-bottom:20px;
}

.ai-card h5{
    font-size:20px;
    font-weight:800;
    color:var(--navy);
}

.ai-card p{
    color:#667085;
    line-height:1.7;
}

@media(max-width:768px){
    .ai-header h2{
        font-size:32px;
    }
    .ai-feature-box{
        padding:30px;
    }
}

/*============================================
DIGITAL MARKETING SECTION
============================================*/
.marketing-section{
    background:#f7fafc;
}

.marketing-header span{
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    color:var(--blue);
}

.marketing-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    margin-top:15px;
}

.marketing-header h2 strong{
    color:var(--blue);
}

.marketing-header p{
    max-width:750px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/* CARDS */
.marketing-card{
    background:#fff;
    padding:32px 25px;
    border-radius:22px;
    height:100%;
    border:1px solid #e6eef2;
    transition:.35s;
}

.marketing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
}

.marketing-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
}

.marketing-card h5{
    font-size:19px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:12px;
}

.marketing-card p{
    font-size:15px;
    color:#667085;
    line-height:1.7;
    margin:0;
}

@media(max-width:768px){
    .marketing-header h2{
        font-size:32px;
    }
}

/*============================================
INDUSTRY SECTION
============================================*/
.industry-section{
    background:#f7fafc;
}

.industry-header span{
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    color:var(--blue);
}

.industry-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    margin-top:15px;
}

.industry-header h2 strong{
    color:var(--blue);
}

.industry-header p{
    max-width:750px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/* INDUSTRY BOX */
.industry-box{
    background:#fff;
    padding:30px;
    border-radius:22px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    height:100%;
    border:1px solid #e6eef2;
    transition:.35s;
}

.industry-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
}

.industry-icon{
    min-width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
}

.industry-box h5{
    font-size:20px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:10px;
}

.industry-box p{
    margin:0;
    color:#667085;
    line-height:1.7;
}

@media(max-width:768px){
    .industry-header h2{
        font-size:32px;
    }
    .industry-box{
        padding:25px;
    }
}

/*============================================
WHY CHOOSE SECTION
============================================*/
.choose-section{
    background:#f7fafc;
}

.choose-header span{
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    color:var(--blue);
}

.choose-header h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    margin-top:15px;
}

.choose-header h2 strong{
    color:var(--blue);
}

.choose-header p{
    max-width:760px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/* CARD */
.choose-box{
    background:#ffffff;
    padding:35px 30px;
    border-radius:22px;
    height:100%;
    border:1px solid #e6eef2;
    transition:.35s;
}

.choose-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
    border-color:transparent;
}

.choose-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:white;
    font-size:30px;
    margin-bottom:25px;
}

.choose-box h5{
    font-size:21px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.choose-box p{
    color:#667085;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){
    .choose-header h2{
        font-size:32px;
    }
}

/*========================================
   PROFESSIONAL PROCESS SECTION
========================================*/
.process-section{
    background:#f7fafc;
}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-item{
    background:#ffffff;
    padding:35px 30px;
    border-radius:22px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    border:1px solid #e8edf3;
    transition:.35s;
    position:relative;
}

.process-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
    border-color:var(--accent);
}

.process-icon{
    min-width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:25px;
}

.process-content span{
    color:var(--accent);
    font-size:14px;
    font-weight:800;
}

.process-content h5{
    margin:8px 0 10px;
    color:var(--navy);
    font-size:20px;
    font-weight:800;
}

.process-content p{
    margin:0;
    color:#667085;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:991px){
    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .process-wrapper{
        grid-template-columns:1fr;
    }
}

/*========================================
    PROFESSIONAL SECTION HEADING
========================================*/
.section-heading .heading-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:var(--blue-light);
    color:var(--blue);
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.section-heading .heading-badge::before{
    content:"";
    width:28px;
    height:3px;
    background:linear-gradient(90deg,var(--blue),var(--accent));
    border-radius:10px;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:var(--navy);
    line-height:1.25;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:var(--blue);
}

.section-heading p{
    max-width:720px;
    margin:auto;
    color:#667085;
    font-size:17px;
    line-height:1.8;
}

@media(max-width:768px){
    .section-heading h2{
        font-size:30px;
    }
}

/*========================================
   PREMIUM PROCESS CARDS
========================================*/
.process-card-modern{
    background:#ffffff;
    padding:35px 30px;
    border-radius:22px;
    height:100%;
    position:relative;
    overflow:hidden;
    border:1px solid #e8edf3;
    transition:.35s;
}

.process-card-modern::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--blue),var(--accent));
}

.process-card-modern:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
    border-color:transparent;
}

.process-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.process-no{
    font-size:42px;
    font-weight:900;
    color:#e8f2f5;
}

.process-icon-modern{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:#fff;
    font-size:26px;
}

.process-card-modern h4{
    font-size:22px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.process-card-modern p{
    color:#667085;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){
    .process-card-modern{
        padding:30px 25px;
    }
}

/*=========================================
   PREMIUM CTA SECTION
=========================================*/
.cta-section{
    padding:90px 0;
}

.cta-wrapper{
    background:linear-gradient(135deg,var(--navy),var(--blue));
    padding:65px 70px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-120px;
    top:-120px;
}

.cta-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.cta-wrapper h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:18px;
}

.cta-wrapper h2 span{
    color:var(--accent);
}

.cta-wrapper p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.8;
    max-width:650px;
    margin:0;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 35px;
    background:#fff;
    color:var(--blue);
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.cta-btn:hover{
    transform:translateY(-5px);
    background:var(--accent);
    color:#fff;
}

@media(max-width:768px){
    .cta-wrapper{
        padding:40px 25px;
    }
    .cta-wrapper h2{
        font-size:30px;
    }
}

/*=========================================
   SUPPORT SERVICE CARDS
=========================================*/
.support-box{
    background:#fff;
    padding:35px 30px;
    border-radius:22px;
    height:100%;
    border:1px solid #e6edf2;
    transition:.35s;
    position:relative;
}

.support-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(10,123,147,.15);
    border-color:var(--accent);
}

.support-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--accent));
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.support-box h4{
    font-size:21px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.support-box p{
    color:#667085;
    line-height:1.8;
    margin:0;
}

/*============================================
BUSINESS CARDS
============================================*/
.business-card{
    background:#ffffff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    height:100%;
    border:1px solid rgba(6,26,64,0.08);
    transition:0.3s ease;
    position:relative;
}

.business-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(6,26,64,0.12);
}

.business-icon{
    width:75px;
    height:75px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,#0353A4,#00B4D8);
    color:#fff;
    font-size:30px;
}

.business-card h5{
    font-size:20px;
    font-weight:700;
    color:#061A40;
    margin-bottom:15px;
}

.business-card p{
    font-size:15px;
    line-height:1.7;
    color:#6c757d;
    margin-bottom:0;
}

/*============================================
    SECTION HEADER
============================================*/
.section-header{
    max-width:850px;
    margin:auto;
}

.section-subtitle{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0353A4;
    background:rgba(3,83,164,0.08);
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
}

.section-header h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:#061A40;
    margin-bottom:18px;
    position:relative;
}

.section-header h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:18px auto 0;
    border-radius:10px;
    background:linear-gradient(90deg,#0353A4,#00B4D8);
}

.section-header p{
    max-width:720px;
    margin:25px auto 0;
    color:#6c757d;
    font-size:17px;
    line-height:1.8;
}

/* Responsive */
@media(max-width:768px){
    .section-header h2{
        font-size:32px;
    }
    .section-header p{
        font-size:15px;
    }
}

/*============================================
    FUTURE TECHNOLOGY CARDS
============================================*/
.future-card{
    background:#ffffff;
    padding:32px 25px;
    height:100%;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(6,26,64,0.08);
    transition:all .35s ease;
}

.future-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(6,26,64,0.12);
}

.future-icon{
    width:70px;
    height:70px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#0353A4,#00B4D8);
    color:#fff;
    font-size:28px;
}

.future-card h5{
    font-size:19px;
    font-weight:700;
    color:#061A40;
    margin-bottom:12px;
}

.future-card p{
    color:#6c757d;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/*============================================
    PAGE HERO
============================================*/
.page-hero{
    position: relative;
    padding: 120px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.page-hero::before{
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(3,83,164,.05);
    border-radius: 50%;
}

.page-hero::after{
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(3,83,164,.04);
    border-radius: 50%;
}

.page-hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Main Heading */
.page-title{
    font-size: 64px;
    font-weight: 800;
    color: #061A40;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.1;
}

/* Second Heading */
.hero-heading{
    font-size: 42px;
    font-weight: 700;
    color: #0353A4;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Description */
.page-hero p{
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #5F6B7A;
}

/* Responsive */
@media (max-width: 991px){
    .page-hero{
        padding: 90px 0 70px;
    }
    .page-title{
        font-size: 48px;
    }
    .hero-heading{
        font-size: 32px;
    }
    .page-hero p{
        font-size: 16px;
    }
}

/*============================================
    SERVICES SECTION
============================================*/
.services{
    padding:100px 0;
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:18px;
    padding:35px 30px;
    height:100%;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:0;
    background:#0353A4;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(6,26,64,.12);
    border-color:#0353A4;
}

.service-card:hover::before{
    height:100%;
}

.service-card h4{
    font-size:22px;
    font-weight:700;
    color:#061A40;
    margin-bottom:15px;
    line-height:1.4;
}

.service-card p{
    margin:0;
    color:#6B7280;
    font-size:15px;
    line-height:1.8;
}

/* Responsive */
@media (max-width:991px){
    .service-card{
        padding:30px 25px;
    }
    .service-card h4{
        font-size:20px;
    }
}

@media (max-width:576px){
    .services{
        padding:70px 0;
    }
    .service-card{
        text-align:center;
    }
}
span {
    margin-top: 15px;
}


.portfolio-card {
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-card img {
    width: 100%;
    height: 250px;        /* Set your required image height */
    object-fit: cover;    /* Fills the area and crops extra parts */
    display: block;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}
.btn-light {
    background-color: #ffffff; /* Default background */
    color: #000;
    transition: background-color 0.3s ease;
}

.btn-light:hover {
    background-color: #ff6600; /* Change to your desired color */
    color: #fff; /* Text color on hover */
    border-color: #ff6600;
}
.btn-light {
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}