/* Global Styles */
:root {
    --primary-color: #0A2463;
    --secondary-color: #2E8B57;
    --tertiary-color: #008080;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #EEEEEE;
    --text-color: #000000;
    --text-light: #000000;
    --section-padding: 100px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

p {
    margin-bottom: 20px;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn.cta {
    background-color: var(--tertiary-color);
    color: var(--white);
}

.btn.cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: rgba(10, 36, 99, 0.05);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.rounded-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rounded-icon {
    border-radius: 8px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img{
    max-width: 200px;
}
.logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.logo i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 20px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    padding: 5px 0;
    font-weight: 600;
    color: var(--text-color);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 40vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7));
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.about-content h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: -15px;
    margin-bottom: 25px;
}

.mission, .approach {
    margin-bottom: 30px;
}

.mission h4, .approach h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.experience {
    margin-top: 40px;
    display: inline-block;
    position: relative;
}

.experience span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--tertiary-color);
    position: relative;
    z-index: 1;
}

.image-container {
    flex: 1;
    overflow: hidden;
}

/* Capabilities Section */
.capabilities {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon {
    margin-bottom: 20px;
}

.capability-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.capability-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Industry Sectors Section */
.industry-sectors {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-color);
}

.sectors-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sector-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-image {
    flex: 1;
}

.sector-content {
    flex: 1;
}

.sector-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.sector-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 16px;
}

.sector-focus {
    margin-top: 20px;
}

.sector-focus span {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.sector-focus ul {
    padding-left: 20px;
}

.sector-focus li {
    list-style-type: disc;
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 14px;
}

/* Contact CTA Section */
.contact-cta {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.contact-cta .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Partnership Section */
.partnership {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.partnership .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Statistics Section */
.statistics {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
    background-image: url('../images/subtle-pattern.webp');
    background-repeat: repeat;
}

.stat-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat {
    flex: 1;
    padding: 0 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-separator {
    width: 40px;
    height: 3px;
    background-color: var(--tertiary-color);
    margin: 15px auto;
}

.stat-description {
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-details {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tertiary-color);
}

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

.contact-form .btn {
    margin-top: 20px;
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-logo img{
    max-width: 200px;
}
.company-info .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}

footer h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    color: var(--white);
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

footer ul li, footer ul li a {
    margin-bottom: 10px;
    color: var(--white);
}

footer a:hover {
    color: var(--secondary-color);
}

footer p {
    color: var(--white);
}

.footer-text {
    color: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.copyright {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sector-card {
        flex-direction: column;
    }
    
    .sector-image {
        margin-bottom: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .capability-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 {
        font-size: 38px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .about-content,
    .contact-cta .container,
    .partnership .container {
        flex-direction: column;
    }
    
    .image-container {
        margin-top: 40px;
        order: -1;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 0;
        transition: left 0.3s ease;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 0 0 30px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .stat-container {
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-card {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid > div {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        flex: 0 0 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright {
        flex-direction: column;
        gap: 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}