/*
Color Theme
Headings: Indigo Blue (#2F2C6D)
Content: Charcoal Black (#333333)
Background: White (#FFFFFF)
*/

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    body {
    font-family: 'Inter', sans-serif;
}

}

/* Header */
header .logo {
    height: 50px;
    width: auto;
}
{
    
    background: #FFFFFF;
    border-bottom: 2px solid #eee;
    padding: 20px 60px;
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: #2F2C6D;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #2F2C6D;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(47,44,109,0.35), rgba(47,44,109,0.35)),
                url("images/hero.jpg") center/cover no-repeat;
    text-align: center;
    padding: 120px 40px;
    color: white;
}
.hero h1, .hero p {
    color: white;
}


.hero h1 {
    color: #2F2C6D;
    font-size: 42px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}


/* Sections */
section:not(.hero):nth-child(even) {
    background: #f9f9f9;
}

section {
    padding: 80px 0;
}

.container {
    width: 85%;
    margin: auto;
}

section {
    padding: 60px;
}

h2, h3 {
    color: #2F2C6D;
}

/* Capability Boxes */
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.box {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    background: #FFFFFF;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f4f4ff;
}


/* Contact Email Styling */
#contact a {
    color: #2F2C6D;
    text-decoration: none;
    font-weight: 500;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #f2f2f2;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}
