
/* WordPress-inspired modern styling for Globe-Tech Impact Services Limited */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #222;
}
header {
    background: linear-gradient(90deg, #0073aa 0%, #005177 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding-bottom: 0.5em;
    position: relative;
    z-index: 10;
}
.hero {
    text-align: center;
    padding: 2.5em 1em 1em 1em;
    position: relative;
}
.logo {
    width: 120px;
    margin-bottom: 1em;
}
.tagline {
    font-size: 1.3em;
    font-weight: 400;
    margin-top: 0.5em;
    color: #ffd700;
}
.hamburger {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
}
.hamburger span {
    display: block;
    width: 32px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px !important;
    height: 100vh;
    background: #005177;
    box-shadow: 2px 0 16px rgba(0,0,0,0.12);
    z-index: 100;
    transition: left 0.3s;
    padding-top: 2em;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sidebar.open {
    left: 0;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 2em 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: flex-start;
}
.sidebar ul li {
    width: 100%;
}
.sidebar ul li a {
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    padding: 0.5em 1em;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s, color 0.2s;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}
.sidebar ul li a:hover {
    background: #0073aa;
    color: #ffd700;
}
.close-btn {
    position: absolute;
    top: 1em;
    right: 1em;
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    z-index: 101;
}
.section {
    max-width: 900px;
    margin: 2em auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,83,100,0.10);
    padding: 2.5em 2em;
    position: relative;
    border-left: 8px solid #0073aa;
}
.section h2 {
    color: #0073aa;
    font-size: 2em;
    margin-bottom: 0.5em;
    font-weight: 700;
}
.section ul {
    margin: 1em 0 0 1em;
    padding: 0;
    list-style: disc inside;
}
.section-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin: 1.5em auto 0 auto;
    display: block;
    box-shadow: 0 2px 12px rgba(44,83,100,0.12);
}
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2em;
    margin-top: 2em;
}
.sector {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5em 1em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(44,83,100,0.07);
    border-top: 4px solid #0073aa;
    transition: box-shadow 0.2s;
}
.sector:hover {
    box-shadow: 0 6px 24px rgba(44,83,100,0.18);
}
.sector img {
    width: 100%;
    max-width: 120px;
    border-radius: 8px;
    margin-bottom: 1em;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,83,100,0.07);
}
.contact input, .contact textarea {
    padding: 0.8em;
    border-radius: 8px;
    border: 1px solid #c3cfe2;
    font-size: 1em;
    font-family: inherit;
    background: #fff;
    transition: border 0.2s;
}
.contact input:focus, .contact textarea:focus {
    border: 1.5px solid #0073aa;
    outline: none;
}
.contact button {
    background: linear-gradient(90deg, #0073aa, #005177);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1em;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(44,83,100,0.07);
}
.contact button:hover {
    background: linear-gradient(90deg, #005177, #0073aa);
}
footer {
    text-align: center;
    padding: 2em 0 1em 0;
    background: #0073aa;
    color: #fff;
    font-size: 1em;
    margin-top: 2em;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
    .section {
        padding: 1.2em 0.5em;
    }
    .sidebar {
        width: 80vw;
        min-width: 180px;
        max-width: 320px;
    }
}
@media (max-width: 600px) {
    .section {
        padding: 1em;
    }
    .sidebar ul {
        gap: 1em;
    }
    .sidebar {
        width: 100vw;
        left: -100vw;
    }
    .sidebar.open {
        left: 0;
    }
    .hero {
        padding: 2em 0.5em 1em 0.5em;
    }
}
