body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; color: #09096C; line-height: 1.6; }
    .navbar { background-color: #fcfcfd; padding: 1rem 0; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
    .nav-link { color: #09096C !important; font-weight: 600; margin: 0 10px; opacity: 0.8; transition: 0.3s; }
    .nav-link:hover, .nav-link.active { opacity: 1; border-bottom: 2px solid #09096C; }
    .btn-engage { border: 1px solid #fff; color: #fff; border-radius: 0; padding: 5px 20px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
    .btn-engage:hover { background: #fff; color: #D1221F; }

  /*  .hero-section { background-color: #e9ecef; padding: 100px 0; border-bottom: 1px solid #dee2e6; background-image: 
        linear-gradient(
            rgba(26, 37, 47, 0.25),
            rgba(26, 37, 47, 0.25)
        ),
        url("../assets/banner1.jpeg");
        background-size: 100%;
    background-position: center;
 }
    .hero-title { font-weight: 700; color: #e9ecef; font-size: 2.6rem; letter-spacing: -1px; }
    .hero-carousel { background: #bdc3c7; min-height: 350px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 4px; box-shadow: inset 0 0 50px rgba(0,0,0,0.1); }
     */
    .section-padding { padding: 80px 0; }
    .section-title { font-weight: 700; margin-bottom: 35px; position: relative; display: inline-block; }
    .section-title::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30%; height: 4px; background: #0C0C86; }

    .product-card, .capability-card, .industry-card {
        background: #fff; border: 1px solid #eee; transition: all 0.3s ease; height: 100%; text-decoration: none; color: inherit; display: block;
    }
    .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #0C0C86; }
    .img-placeholder { background: #dee2e6; height: 200px; display: flex; align-items: center; justify-content: center; color: #adb5bd; font-weight: bold; overflow: hidden; }

    .btn-dark-custom { background: #D1221F; color: white; border-radius: 0; padding: 12px 30px; border: none; font-weight: 600; transition: 0.3s; }
    .btn-dark-custom:hover { background: #E50000; color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

    .custom-solutions { background-color: #fff; border-top: 1px solid #eee; }
    .industries-section { background-color: #f1f3f5; }
    
    footer { background: #09096C; color: #adb5bd; padding: 70px 0 30px; }
    footer h6 { color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; font-weight: 700; }
    .footer-link { color: #adb5bd; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.2s; }
    .footer-link:hover { color: #fff; padding-left: 5px; }
    .footer-line { border-top: 1px solid #09096C; margin-top: 50px; padding-top: 25px; font-size: 0.85rem; }
        .industries-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.dark-bullets {
    list-style-type: disc;
    padding-left: 20px;
}

.dark-bullets li::marker {
    color: #0C0C86; /* Dark bullets */
    font-size: 1rem;
}

.industry-card-wrap {
    perspective: 1000px;
}

.industry-card {
    background: #ffffff;
    border: none;
    border-top: 4px solid #0C0C86; /* Top accent bar */
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: #0C0C86;
    color: #ffffff;
    box-shadow: 0 15px 45px rgba(44, 62, 80, 0.2);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0C0C86;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-icon {
    color: #ffffff;
}

.industry-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
/* Stylish Custom Solutions CSS */
.custom-solutions-section {
    background-color: #09096C; /* Deep Navy/Charcoal */
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.custom-solutions-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

    

.solution-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    width: 80%;
}

.solution-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff; /* Tech Blue accent */
    transform: translateY(-5px);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.solution-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-step p {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-bottom: 0;
}

/* Stylish Glow Button */
.btn-glow {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-glow:hover {
    background: #ffffff;
    color: #1a252f;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
/* Stylish Capabilities Section CSS */
.capabilities-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.capability-card {
    border: 1px solid #e9ecef;
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* The "Radar Pulse" Hover Effect */
.capability-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(44, 62, 80, 0.03);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.capability-card:hover::before {
    width: 300%;
    height: 300%;
}

.capability-card:hover {
    border-color: #0C0C86;
    transform: translateY(-1    0px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.cap-icon-box {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    color: #0C0C86;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
    border-radius: 0; /* Keep it sharp and industrial */
    border: 1px solid #dee2e6;
}

.capability-card:hover .cap-icon-box {
    background: #0C0C86;
    color: #ffffff;
    transform: rotateY(360deg);
}

.cap-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cap-divider {
    width: 30px;
    height: 2px;
    background: #0C0C86;
    margin: 15px auto;
    transition: width 0.3s ease;
}

.capability-card:hover .cap-divider {
    width: 60px;
    background: #0C0C86; /* Tech blue accent */
}

/* Horizontal Scroll Container */
.capabilities-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    padding-top: 20px;

    /* Smooth scrolling */
    scroll-behavior: smooth;

    /* Hide scrollbar (optional) */
    scrollbar-width: thin;
}

/* Row that holds cards */
.capabilities-row {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}

/* Individual card width */
.capability-scroll-item {
    flex: 0 0 320px; /* Fixed width */
}

/* Optional scrollbar styling */
.capabilities-scroll::-webkit-scrollbar {
    height: 8px;
}

.capabilities-scroll::-webkit-scrollbar-thumb {
    background: #0C0C86;
    border-radius: 4px;
}

/* SOLUTIONS SECTION */

.solutions-section {
    background-color: #ffffff; /* Clean white */
    padding: 100px 0;
}

/* Slight visual distinction */

.solutions-section .product-card {

    min-height: 220px;

}

/* Optional: subtle divider between sections */

.solutions-section {
    border-top: 1px solid #e9ecef;
}

/* Hero Right Image */

.hero-image {

    background-image: 
        linear-gradient(
            rgba(26, 37, 47, 0.25),
            rgba(26, 37, 47, 0.25)
        ),
        url("/home/zeeshan/Downloads/Kais/templates/banner1.jpeg");

    background-size: cover;
    background-position: center;

    min-height: 350px;

    border-radius: 6px;

    box-shadow: inset 0 0 50px rgba(0,0,0,0.2);

}

/* Navbar Logo */
.navbar-toggler {
    border-color: #09096C;
}

.navbar-logo {

    height: 65px;      /* Desktop height */
    width: auto;

    object-fit: contain;

}

.cap-image{
    height: 220px;
    width: auto;
    object-fit: contain;
}

/* Mobile Logo Size */

@media (max-width: 768px) {

    .navbar-logo {

        height: 38px;

    }

}

/* Extra small devices */

@media (max-width: 480px) {

    .navbar-logo {

        height: 50px;

    }

}


/* Hero Section */


.hero-section {
    background-color: #e9ecef;
    padding: 100px 0;
    border-bottom: 1px solid #dee2e6;
    background-image:
        linear-gradient(
            rgba(26, 37, 47, 0.35),
            rgba(26, 37, 47, 0.35)
        ),
        url("../assets/banner1.jpeg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* MOBILE HERO HEIGHT FIX */

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0 60px;
        background-position: center right;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 55px 0 50px;
        background-position: center;
        min-height: 500px;
    }
}

.hero-title {
    font-weight: 700;
    color: #e9ecef;
    font-size: 2.6rem;
    line-height: 1.2;
}
/* RESPONSIVE TEXT */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }

}

.hero-text {
    color: #e9ecef;
    max-width: 520px;
}
@media (max-width: 768px) {
    .hero-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 0.65rem;
    }
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        width: auto;
        padding: 12px 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 50%;
        padding: 5px 9px;
        font-size: 0.9rem;
    }
}

/* HERO CENTERING */
.hero-center {
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    min-height: 85vh;         /* controls hero height */
    text-align: center;
}
/* Tablet */

@media (max-width: 992px) {
    .hero-center {
        min-height: 70vh;
    }
}
/* Mobile */

@media (max-width: 768px) {
    .hero-center {
        min-height: 60vh;
    }
}
/* Small Mobile */

@media (max-width: 480px) {
    .hero-center {
        min-height: 65vh;
    }
}