﻿* {
    box-sizing: border-box;
}

html {
    font-size: 100%; /* 16px default */
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}


header {
    background: #087c84 !important;
    padding: 10px 20px !important;
    text-primary !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    color: white !important;
    height: 75px !important;
    font-size:11px !important;
}

.header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

    .header .logo {
        font-weight: bold !important;
    }

nav ul {
    list-style: none !important;
    display: flex !important;
    gap: 15px !important;
}

    nav ul li {
        display: inline-block !important;
    }

nav a, .btn-primary, .btn-outline {
    text-decoration: none !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    color: white !important;
}

.btn-primary {
    background-color: #0660D4;
    color: white;
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 20px 20px;
}

.products, .features, .pricing, .contact {
    padding: 60px 20px;
    text-align: center;
}

.product-grid, .feature-grid, .pricing-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 300px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.product-card {
    width: 320px;
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 225px;
}

.icon-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.text-content {
    display: flex;
    flex-direction: column;
}

    .text-content h3 {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin: 0 0 8px;
    }

    .text-content p {
        color: #4b5563;
        font-size: 14px;
        margin: 0 0 12px;
    }

    .text-content .learn-more {
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }


.yellow-bg {
    background-color: #ffe670;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.green-bg {
    background-color: #087c84;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    margin-top: 15px;
}

.product-card p {
    color: #4b5563;
    font-size: 14px;
    flex-grow: 1;
    margin-left: 60px;
    margin-top: 18px;
}

.learn-more {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.blue-link {
    color: #1d4ed8;
    margin-left: 60px;
}

.green-link {
    color: #047857;
    margin-left: 60px;
}



.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.footer-custom {
    background-color: #007774;
    font-size: 15px;
}

    .footer-custom a:hover {
        text-decoration: underline;
    }

.hero-section {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
    background-color: white;
    overflow: hidden;
}

.left-visuals {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-people {
    position: absolute;
    left: 1px;
    width: 90%;
    height: 100%;
    object-fit: cover;
    bottom: 30px;
}

.white-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 2.95;
    z-index: 2;
}

.laptop-image {
    position: absolute;
    bottom: 0%;
    left: 30px;
    width: 65%;
    z-index: 3;
}

.right-content {
    width: 100%;
    padding: 80px 60px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .right-content h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #0038D1;
        margin-bottom: 20px;
    }

    .right-content p {
        font-size: 1rem;
        color: #222;
        margin-bottom: 30px;
        font-weight: bold;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #0660D4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-hero {
    background-color: #ffdb56;
    color: #0020c2;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}


.btn-primary {
    background-color: #0660D4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-outline {
    background-color: white;
    color: #0660D4;
    border: 2px solid #0660D4;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}
.feature-card {
    position: relative;
    border-radius: 15px;
    text-align: center;
    padding: 80px 20px 20px;
    height: 100%;
    color: white;
}

    .feature-card .card-blur-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(6px);
        z-index: 1;
    }

    .feature-card .card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 2;
    }

    .feature-card .icon-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #007bff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto 15px;
        top:-115px;
        position: relative;
        z-index: 3;
        color: white;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    .feature-card .feature-title {
        font-weight: 700;
        z-index: 3;
        position: relative;
        margin-bottom: 15px;
        font-size: 1.5rem;
        top: -55px;
    }

    .feature-card .feature-desc {
        z-index: 3;
        position: relative;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 1.3rem;
    }

.bg-teal {
    background-color: #008080 !important;
}

.bg-brown {
    background-color: #B18655 !important;
}
.bg-teal-custom {
    background-color: #007774;
}

.icon-circle-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.btn-teal {
    background-color: #007774;
    color: white;
    border: none;
    transition: background 0.3s ease;
}

    .btn-teal:hover {
        background-color: #005e5d;
    }

.border-teal-custom {
    border: 5px solid #007774;
}

.btn-teal {
    background-color: #007774;
    color: white;
    border: none;
    transition: background 0.3s ease;
}

    .btn-teal:hover {
        background-color: #005e5d;
    }

.text-purple {
    color: #9B59B6;
}
.floating-box {
    position: absolute;
    top: -25px;
    left: 65%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 420px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: white;
    z-index: 10;
}
.border-wrapper {
    border: 5px solid #007774;
    border-radius: 20px;
    background-color: white;
}
.bg-teal-custom {
    background-color: #007774;
}

.nav-link-custom {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

    .nav-link-custom:hover {
        text-decoration: underline;
    }
.wrapper {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
