    /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}
/* Header */
header {
    background: #1f497d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
}
header p {
    font-size: 1.2em;
}
/* Navigation */
nav {
    background: #f2f2f2;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px; /* Ensure a balanced height */
}


nav .logo a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #1f497d;
}
/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 3px;
}
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}
    /* Insights Section Links */
    #insights a {
        color: #1f497d; /* Dark blue */
    }

    #insights a:hover {
        color: #e36c0a; /* Orange on hover */
    }


/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}
.hero::after {
    display: none;
}
.hero .content {
    position: relative;
    z-index: 2;
}
.hero h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: white;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.cta {
    display: inline-block;
    background: #e36c0a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.cta:hover {
    background: #cf5d07;
}
/* Sections */
section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
section.in-view {
    opacity: 1;
    transform: translateY(0);
}
section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #1f497d;
}
section p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1em;
}
/* Grid for Services */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.grid-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}
.grid-item h3 {
    margin-bottom: 10px;
    color: #e36c0a;
}
/* Process List */
ol {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    font-size: 1.1em;
}
ol li {
    margin-bottom: 10px;
    text-align: left;
}
/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
}
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
form button {
    background: #1f497d;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}
form button:hover {
    background: #15315b;
}
/* Footer */
footer {
    background: #1f497d;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
/* Back-to-Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e36c0a;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 1000;
    transition: background 0.3s ease;
}
#scrollTopBtn:hover {
    background: #cf5d07;
}
    /* Checkbox Group Styling */
    fieldset {
        border: none;
        margin: 15px 0;
        padding: 0;
    }

    legend {
        font-weight: bold;
        margin-bottom: 10px;
        display: block;
    }

    .checkbox-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .checkbox-group div {
        flex: 1 1 45%; /* Allows two checkboxes per row */
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .checkbox-group label {
        font-weight: normal;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    /* Adjust for smaller screens */
    @media (max-width: 768px) {
        .logo img {
            height: 30px; /* Smaller logo for mobile */
        }
    }

    @media (max-width: 480px) {
        .logo img {
            height: 30px; /* Even smaller for very small screens */
        }
    }

    .modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        width: 300px;
        text-align: center;
    }

    .modal-content {
        display: flex;
        flex-direction: column;
    }

    .modal input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    .modal button {
        background-color: #1f497d;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    /* Contact Form Dropdown Styling */
    form select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1em;
        background-color: white;
        color: #333;
        appearance: none; /* Removes default styling */
    }

    /* Add a dropdown arrow for better UX */
    form select:after {
        content: "▼";
        font-size: 0.9em;
        color: #333;
        padding-left: 5px;
    }

    /* Dropdown Hover & Focus */
    form select:hover,
    form select:focus {
        border-color: #1f497d; /* Dark blue border on hover */
        outline: none;
        box-shadow: 0 0 5px rgba(31, 73, 125, 0.5);
    }
 .logo img {
     margin-left: 20px;
 }
    .team-member .photo-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .team-member .photo-wrapper img {
        width: 100%;
        border-radius: 4px;
        display: block;
    }

    .linkedin-icon {
        position: absolute;
        top: 8px;
        right: 8px;
        background: white;
        border-radius: 50%;
        padding: 3px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
    }

    .linkedin-icon img {
        width: 20px;
        height: 20px;
        display: block;
    }

    .linkedin-icon:hover {
        transform: scale(1.1);
    }



