* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f4f6f8;
}

.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background: #ffffff;
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

/* Sidebar icons */
.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar nav img {
    width: 18px;
    height: 18px;
}

/* Top profile icon */
.profile-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

/* Site card icons */
.icon {
    width: 26px;
    height: 26px;
}


.logo img {
    width: 50px;
    margin-bottom: 30px;
}

.sidebar nav a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: #eef2f7;
    font-weight: 600;
}

/* Main */
.main {
    flex: 1;
    padding: 20px 30px;
}

/* Top bar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.topbar input {
    width: 300px;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.profile {
    font-size: 26px;
}

/* Sites */
.sites {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-info h3 {
    font-size: 22px;
}

.site-info p {
    font-size: 14px;
    color: #666;
}

.pin {
    font-size: 26px;
}

.phone {
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.site-actions {
    display: flex;
    gap: 10px;
}

.btn {
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.btn.dashboard {
    background: #2c4558;
}

.btn.active {
    background: #0a7a14;
}


/* ====================================LANDING PAGE================================================== */

/* Header Base */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Container */
.nav-container {
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 38px;
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e5e7eb;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #e79a00;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* CTA Button */
.nav-cta a {
    padding: 8px 16px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

.nav-cta a::after {
    display: none;
}

.nav-cta a:hover {
    background: #1d4ed8;
}

/* Header shadow on scroll */
.nav-header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
    
    .nav-menu ul {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}



.Landingbody {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #21293d, #0e0b41);
    min-height: 100vh;
    color: #fff;
    margin: 0;
    padding-top: 50px;
}

.landing {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
}

/* Welcome Section */
.welcome h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.welcome span {
    color: #e79a00;
}

.welcome p {
    margin: 20px 0;
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
}

.welcome ul {
    list-style: none;
}

.welcome li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.welcome i {
    color: #e79a00;
    margin-right: 10px;
}


/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 5px;
    margin: 20px 0;
}

.image-grid img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .image-grid img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        margin-bottom: 0px;
    }

    .welcome h1 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .form-box {
        margin-top: -50px;
    }
}

/* Form Section */
.form-box {
    background: #bdbcbc;
    color: #1f2937;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Fields */
.field {
    margin-bottom: 10px;
}

.field label,
label[for="Business-select"] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

/* Inputs & Select */
.field input,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    background-color: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Focus State */
.field input:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Select Arrow Styling */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 20 20'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

/* Button */
button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease;
}

button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Footer */
.form-footer {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.form-footer a {
    color: #052977;
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    resize: none;
    font-family: inherit;
}

textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        
    }
}