/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f9;
    color: #1f2d3d;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #1c3d6b;
}

.logo img {
    width: 105px;
    margin-right: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1c3d6b;
    font-weight: 500;
}

.nav-links a.active {
    border-bottom: 3px solid #1c3d6b;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1c3d6b;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* MOBILE MENU DEFAULT */
#nav-menu {
    transition: all 0.3s ease-in-out;
}

/* Hide mobile quote on desktop */
.mobile-quote {
    display: none;
}

/* BUTTONS */
.btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1c3d6b, #244f8f);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, #c69a3b, #e1b75b);
    color: #fff;
}

.btn-light {
    background: linear-gradient(135deg, #ffffff, #e9edf3);
    color: #1c3d6b;
    border: 1px solid #d3d9e3;
}

.btn.large {
    padding: 14px 28px;
    font-size: 16px;
}

/* HERO */
/* HERO SECTION */
.hero {
    position: relative;
    background: url("../images/hero.png") center/cover no-repeat;
    padding: 190px 0;
    color: #ffffff;
    overflow: hidden;
}

/* TRUE DESIGN OVERLAY MATCH */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Multi-layer overlay to match screenshot */
    background:
        linear-gradient(
            120deg,
            rgba(25, 54, 95, 0.88) 0%,
            rgba(34, 69, 115, 0.82) 40%,
            rgba(52, 95, 150, 0.75) 70%,
            rgba(255, 255, 255, 0.35) 100%
        );
    z-index: 1;
}

/* Slight desaturation of background image like design */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 35, 65, 0.15);
    z-index: 1;
}

/* Keep content above overlays */
.hero .container {
    position: relative;
    z-index: 2;
}


/* Text refinements */
.hero-text h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
}

/* SERVICES STRIP */
.services-strip {
    text-align: center;
    font-weight: 500;
    background: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #e5e9f2;
}

.strip-items {
    /* display: flex;
    justify-content: space-around; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1c3d6b;
    font-size: 16px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.strip-item img {
    width: 137px;
    height: 127px;
    object-fit: contain;
}


/* Optional subtle divider between items */
.strip-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #e1e6f0;
}

/* ABOUT */
.about {
    padding: 70px 0;
   
}

/* CUSTOM SOFTWARE */
.custom-software {
     background: #f4f6f9;
    /* border-radius: 14px; */
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
/* 
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03); */
}

/* .custom-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
} */

.custom-wrapper {
    position: relative;

    background: linear-gradient(
        180deg,
        #f2f6fb 0%,
        #edf3f9 50%,
        #e8f0f7 100%
    );

    border-radius: 14px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    box-shadow:
        0 15px 40px rgba(15, 35, 65, 0.06),
        0 4px 12px rgba(15, 35, 65, 0.04);

    overflow: hidden;
}

/* FLOATING UI SHAPES */

.custom-wrapper::before,
.custom-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(28, 61, 107, 0.08),
        rgba(28, 61, 107, 0.04)
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

/* Left floating panel */
/* 1px Inner Highlight */
.custom-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.9)
    );

    opacity: 0.7;
    pointer-events: none;
    z-index: 3;
}

/* Upper floating panel */
/* Subtle Grain Overlay */
.custom-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);

    background-size: 3px 3px;

    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.custom-text {
    flex: 1;
}

.custom-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1c3d6b;
    margin-bottom: 10px;
}
.custom-text p {
    font-size: 18px;
    color: #6b7a90;
    margin-bottom: 25px;
}

.custom-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.custom-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #4a5b73;
    font-weight: 500;
}

.custom-text li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #d6a742; /* gold tone from design */
    font-weight: bold;
}

.custom-text .btn {
    margin-top: 10px;
}

/* IMAGE SIDE */
.custom-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    position: relative;
}

.custom-image img {
    max-width: 100%;
    height: auto;
    filter: saturate(0.95);
    max-height: 420px;
    mix-blend-mode: normal;
}

.custom-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(232, 240, 247, 0.9) 0%,
        rgba(232, 240, 247, 0.6) 40%,
        rgba(232, 240, 247, 0.2) 70%,
        transparent 90%
    );
    border-radius: 50%;
    z-index: 0;
}

/* WHY */
.why {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.why h3{
    font-size: 32px;
    font-weight: 700;
    color: #1c3d6b;
    margin-bottom: 10px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 50px;
    text-align: center;
}

.why-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-6px);
}

/* ICON */
.why-item img {
    width: 90px;
    height: auto;
    margin-bottom: 25px;
}

.why-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1c3d6b;
    margin-bottom: 12px;
}

/* SUBTITLE */
.why-item p {
    font-size: 16px;
    color: #6b7a90;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* MOBILE */
.mobile-app {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Individual Card */
.process-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-6px);
}

/* ICON */
.process-item img {
    width: 90px;
    height: auto;
    margin-bottom: 25px;
}

/* TITLE */
.process-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1c3d6b;
    margin-bottom: 12px;
}

.process-item p {
    font-size: 15px;
    color: #6b7a90;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1c3d6b, #2b4f7d);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #1c3d6b;
    color: #fff;
    /* padding: 30px 0; */

    /* color:#cbd5e1;
    padding:40px 0; */

    display:flex;
    flex-direction:column;
    min-height:200px; /* ensures space for bottom positioning */
}

.footer-content {
   display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    padding: 40px;
}

.copyright {
    text-align: center;
    padding: 15px 0;
    background: #163256;
    font-size: 14px;

      margin-top:auto;
    text-align:center;
    padding-top:20px;
    font-size:14px;
    border-top:1px solid rgba(255,255,255,0.1);
}


/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .hero-content,
    .custom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


     .strip-items {
        flex-direction: column;
        gap: 20px;
    }

    .strip-item {
        justify-content: flex-start;
        width: 100%;
    }

    .strip-item::after {
        display: none;
    }

    .why-grid,
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

     .desktop-quote {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

     #nav-menu.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-quote {
        display: block;
        margin-top: 10px;
        color: #fff;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item img {
        width: 75px;
    }
    
    .nav-links {
        /* display: none; */
    }

    #quote-btn{
        display: none;
    }

    #mobile-quote-btn{
        color: #fff !important;
    }

    .custom-software {
        padding: 0px;
    }
        .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-item img {
        width: 75px;
    }
}