/* Make the body fill the entire viewport */
body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Hide toggle button by default */
.toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;                /* ensures consistent vertical alignment */
}
.outline1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 4%;
    margin-bottom: 4%;
    padding: 0;
    color: #000000;
}
header {
    background-color: #ffa300;
    color: aliceblue;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    border-bottom: 4px solid #ffffff;
    position: absolute;   /* header stays at top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;     /* make sure header is above image */
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide toggle button by default */
nav a {
    text-align: center;
    text-decoration: none;
}
nav li {
    list-style: none;
}

.topmenu {
    margin-top: 30px;
    margin-bottom: 0;
    margin-right: 30px;
    display: flex;
    justify-content: right;
    gap: 10px;
}

.topmenu li {
    font-size: large;
    
}

.topmenu a {
    padding: 10px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

.topmenu a:hover {
    text-decoration: none; /* ✅ remove default underline */
    color: #060606;
    border-bottom: 3px solid #060606; /* ✅ single line under the nav */
}
.topmenu a.active{
    text-decoration: none; /* ✅ remove default underline */
    color: #060606;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #ffffff;
    --foreground: #25272d;
    --card: #ffffff;
    --primary: #ffa200;
    --primary-foreground: #ffffff;
    --muted-foreground: #717182;
    --input-background: #f3f3f5;
    --border: rgba(0, 0, 0, 0.1);
    --radius: 0.625rem;
    --secondary: #f2f2f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--foreground);
    background: linear-gradient(to bottom right, var(--background), var(--secondary));
    min-height: 100vh;
}

h2 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.5;
}

h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Layout */
.page-container {
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.max-width-wrapper {
    max-width: 1152px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-top: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.header-subtitle {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
    margin-top: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 2rem;
}


@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .container {
        padding: 5rem 1rem;
    }
}

/* Contact Info Section */
.info-section {
    order: 2;
}

@media (min-width: 900px) {
    .info-section {
        order: 1;
    }
}

.contact-info {
    margin-bottom: 2rem;
}

.info-header {
    margin-bottom: 2rem;
}

.info-header .muted-text {
    margin-top: 0.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 1.25rem;
}

.info-content h4 {
    margin-bottom: 0.25rem;
}

.muted-text {
    color: var(--muted-foreground);
}

/* Office Image */
.office-image {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
}

/* Form Section */
.form-section {
    order: 1;
}


@media (min-width: 1024px) {
    .form-section {
        order: 2;
    }
}


.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background-color: var(--input-background);
    border: 1px solid transparent;
    border-radius: calc(var(--radius) - 2px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3, 2, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 0.625rem 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: calc(var(--radius) - 2px);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.submit-button:hover {
    background-color: #1a1929;
}

.submit-button:active {
    transform: scale(0.98);
}

.submit-button i {
    font-size: 0.875rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s;
    pointer-events: none;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast i {
    font-size: 1.25rem;
}
a.info-item {
    text-decoration: none;
    color: inherit;
    display: flex; /* keeps layout */
    align-items: center;
}
.sidebar {
    display: none;
}
.menu-btn {
    display: none;
}
@media screen and (max-width: 1000px) {
    .topmenu {
        display: none; /* hide top nav links */
    }
    .menu-btn {
        display: block; /* show the hamburger button */
    }
    
    .sidebar {
        display: block; /* sidebar becomes functional */
    }

    .menu-btn {
        background: none;
        border: none;
        outline: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
      }
    .menu-btn i.hidden {
        display: none;
    }
   
      
    
    .menu-button:hover {
        background-color: #e5e7eb;
    }
    
    .menu-button .icon {
        width: 24px;
        height: 24px;
        color: #374151;
        border: none;
    }

    /* Right Sidebar */
    .sidebar {
        position: fixed;
        top: 60px;
        right: 0;
        height: 100%;
        width: 45%;
        max-width: 320px;
        background-color: #ffa300;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 40;
        overflow-y: auto;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-content {
        padding: 10px;
    }
    
    
    /* Navigation List */
    .nav-list {
        list-style: none;
    }
    
    .nav-list li {
        margin-bottom: 4px;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0 10px 8px; /* less space on left */
        border-radius: 8px;
        color: #000000;
        text-decoration: none;
        transition: background-color 0.2s;
        font-size: large;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
    }
    
    
    .nav-link:hover {
        background-color: #f3f4f6;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 30;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }
    
    .overlay.show {
        opacity: 1;
        pointer-events: auto;
    }
    header {
        position: fixed;
        background-color: #ffa300;
        color: aliceblue;
        font-family: "Roboto", serif;
        display: flex;                 /* places h1 and button side by side */
        align-items: center;           /* vertically align them */
        justify-content: space-between;/* puts h1 on left, button on right */
        padding: 0 20px;
        height: 60px;                  /* example fixed header height */
        
    }
    h1 {
        font-size: large;
    }
    .outline1 {
        padding-top: 20px;
        margin-bottom: 1.5rem;
        
    }
  
 
}