/* Google Fonts: Montserrat & Roboto */

/* Team Section Styles */
.team-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    margin-top: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.06);
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}
.team-founder, .team-tech {
    flex: 1 1 320px;
    min-width: 270px;
}
.team-founder h4, .team-tech h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #0a2540;
    margin-bottom: 1rem;
}
.member-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.member-card {
    background: #f8fafd;
    border-left: 4px solid #ff7b54;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
    margin-bottom: 0.5rem;
}
.member-role {
    display: block;
    font-size: 0.98rem;
    color: #555;
    margin-top: 0.3rem;
}
.template-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.template-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #ff7b54;
    color: #fff;
    font-size: 1rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(10,37,64,0.07);
    transition: background 0.18s, transform 0.18s;
}
.template-btn:hover {
    background: #0a2540;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 700px) {
    .team-container {
        flex-direction: column;
        gap: 2rem;
    }
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #f8fafd;
    color: #222;
}
header {
    background: #0a2540;
    color: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff7b54;
    display: inline-block;
}
.logo-img {
    height: 38px;
    width: 38px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.logo span {
    color: #fff;
    margin-left: 5px;
}
nav {
    float: right;
    display: flex;
    align-items: center;
    height: 100%;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}
nav a {
    position: relative;

    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ff7b54;
}

nav a.active, nav a.active:visited {
    color: #ff7b54;
    font-weight: 700;
    background: #fff;
    border-radius: 5px;
    padding: 4px 14px;
    box-shadow: 0 2px 8px rgba(255,123,84,0.08);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
nav a.active:hover {
    background: #ff7b54;
    color: #fff;
}
.hero {
    background: linear-gradient(120deg, #0a2540 80%, #ff7b54 100%);
    color: #fff;
    padding: 100px 0 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}
.cta-btn {
    background: #ff7b54;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,123,84,0.15);
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #ff4e00;
}
section {
    padding: 70px 0 60px 0;
}
section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    color: #0a2540;
    margin-bottom: 30px;
    text-align: center;
}
.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}
.service-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.service-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 18px rgba(10,37,64,0.07);
    padding: 30px 25px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-item:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 30px rgba(255,123,84,0.13);
}
.service-item img {
    width: 60px;
    margin-bottom: 15px;
}
.service-item h3 {
    color: #ff7b54;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.portfolio-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.portfolio-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(10,37,64,0.08);
    overflow: hidden;
    max-width: 320px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255,123,84,0.10);
}
.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.portfolio-item h4 {
    margin: 10px 0;
    color: #0a2540;
    font-size: 1.1rem;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(10,37,64,0.08);
}
.contact input, .contact textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}
.contact button {
    background: #ff7b54;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.contact button:hover {
    background: #ff4e00;
}
.contact-info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.09);
    padding: 2rem 2.5rem 2rem 2.5rem;
    margin: 2.5rem 0 0 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info h3 {
    color: #ff7b54;
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: 1.18rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}
.contact-info p {
    margin: 0.5rem 0 0.9rem 0;
    font-size: 1.08rem;
    color: #222;
    line-height: 1.7;
}
.contact-info strong {
    color: #0a2540;
    font-weight: 600;
}
.contact-info em {
    color: #555;
    font-size: 1rem;
}
.contact-info a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.18s;
}
.contact-info a:hover {
    color: #ff7b54;
}
.contact-info .founder-message {
    background: #f8fafd;
    border-left: 4px solid #ff7b54;
    border-radius: 7px;
    padding: 1rem 1.2rem;
    margin: 1rem 0 1.5rem 0;
    font-style: italic;
    color: #0a2540;
    box-shadow: 0 2px 8px rgba(10,37,64,0.06);
}

#formMessage {
    text-align: center;
    margin-top: 18px;
    font-weight: 500;
    color: #0a2540;
}
footer {
    background: #0a2540;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .service-list, .portfolio-list {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .logo {
        font-size: 1.3rem;
    }
    nav ul {
        gap: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .container {
        width: 96%;
    }
}

.menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex; /* Show on mobile */
    }

    nav {
        float: none;
    }

    nav ul {
        display: none; /* Hide nav links by default */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Position below header */
        right: 0;
        background: #0a2540;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        gap: 1.5rem;
    }

    nav ul.active {
        display: flex; /* Show when active */
    }

    .team-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .team-container {
        flex-direction: column;
        gap: 2rem;
    }
}
