:root {
    --primary-accent: #E76F51;
    --dark-bg: #264653;
    --secondary-accent: #F4A261;
    --main-light: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--main-light);
    color: var(--dark-bg);
    overflow-x: hidden;
}
.hero-section{
    margin:2rem 0 0 0;
}

.contact-us{
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));;
}

/* --- Navbar --- */
.navbar {
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.navbar-brand span {
    color: var(--primary-accent);
    margin-left: 6px;
}

/* --- Form Alignment & Floating Labels --- */
.contact-card {
    background: #1e1e1e;
    padding: 50px;
    border-radius: 20px;
}

.floating-group {
    position: relative;
    margin-bottom: 35px;
}

.form-control-custom,
.select-display {
    width: 100%;
    padding: 12px 0;
    /* Zero left padding for flush alignment */
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 12px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label::after {
    content: " *";
    color: var(--primary-accent);
}

/* Animation Triggers */
.form-control-custom:focus~.floating-label,
.form-control-custom:not(:placeholder-shown)~.floating-label,
.floating-group.has-value .floating-label {
    top: -22px;
    font-size: 0.85rem;
    color: var(--primary-accent);
    font-weight: bold;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.ai-glow {
    filter: drop-shadow(0 0 2px var(--primary-accent));
}

/* --- Custom Picklist --- */
.custom-select-wrapper {
    position: relative;
    cursor: pointer;
}

.select-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.select-display::after {
    content: '▼';
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    transition: 0.3s;
}

.custom-select-wrapper.open .select-display::after {
    transform: rotate(180deg);
}

.options-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2a2a2a;
    border-radius: 8px;
    z-index: 1000;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.open .options-panel {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.option-item {
    padding: 12px 15px;
    color: #ddd;
    transition: 0.2s;
}

.option-item:hover {
    background: var(--primary-accent);
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
}

.text-accent { color: var(--primary-accent); }


/* ================================
   ABOUT US PAGE STYLES
================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: #fff;
    padding: 110px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-header p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    color: #FFFFFF;
}

/* Section wrapper */
.about-section {
    padding: 90px 20px;
    background: #ffffff;
}

.about-section.light {
    background: #f8fafc;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.about-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin-top: 12px;
}

.about-section p {
    max-width: 850px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}

.about-section ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.about-section ul li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    font-size: 1.05rem;
    color: #1e293b;
}

.about-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: 700;
}
