html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;

    /*background-image: url("/Images/Design/dpback1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    background : linear-gradient(to bottom right,#ffffff, #64748b)

}

.text-shadow {
    text-shadow: 1px 1px 3px #111;
}

.page-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #2E3652;
    color: #eeeeee;
    padding: 2rem;
  }
  
  .page-message-content {
    font-size: 1.5rem;
  }
  
  /* Close button styling */
  .close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: none;
    border: none;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #fff;
    /* Highlight on hover */
  }
  

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 20;
}

/* Hero */
.dp-hero {
    background-image: url("/Images/Design/Forest1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.dp-hero h1 {
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.dp-hero .lead {
    max-width: 620px;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline-dark {
    border-color: rgba(15, 23, 42, 0.35);
    color: #0f172a;
}

.btn-outline-dark:hover {
    background: #0f172a;
    color: #ffffff;
}

/* Cards general */
.dp-card {
    transition: all 0.3s;
}

.dp-card:hover {
    scale : 1.05;
}

/* Right data card */
.dp-data-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.dp-card-top {
    height: 46px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.dp-card-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dp-table-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dp-table-row span {
    color: #64748b;
}

.dp-table-row strong {
    color: #0f172a;
}

/* JSON block */
.dp-json {
    background: #0f172a;
    color: #dbeafe;
    border-radius: 18px;
    padding: 18px;
    font-size: 0.9rem;
    overflow-x: auto;
}

.dp-json pre {
    margin: 0;
    color: inherit;
}

/* Small feature ticks */
.dp-hero .small span {
    color: #64748b;
}

/* Responsive */
@media (max-width: 991.98px) {
    .dp-hero {
        min-height: auto;
    }

    .dp-hero h1 {
        font-size: 2.5rem;
    }

    .dp-data-card {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .dp-hero h1 {
        font-size: 2.1rem;
    }

    .dp-data-card {
        border-radius: 22px;
    }

    .dp-json {
        font-size: 0.78rem;
    }
}

.card-table:hover {
    transition: all 0.25s;
}

.card-table:hover {
    scale : 1.05;
}

.relationship-option {
    cursor: pointer;
    transition: all .2s ease;
}

.relationship-option:hover {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
}

.btn-check:checked + .relationship-option {
    border-color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.imp-card {
    background-color: rgba(255,255,255,0.8);
    border:solid 1px #eee;
    position: absolute;
    max-height: 40vh;
    padding: 1.5rem;
    width : 300px;
    height: 40vh;
}

.imp-card:hover {
    scale: 1.5!important;
    z-index: 15000;
    background-color:#eeeeee;
}

.bg-contactus {
    background-image: url("/Images/Design/Forest1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb-item a {
    text-transform: uppercase;
    color :#1d4ed8;
    text-decoration: none;
    font-weight:bolder;
    font-size:0.8;
}

