/* ================================
   Basic Reset & Typography
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Navigation Bar
   ================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h2 a {
    color: #0056b3;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0056b3;
}

.btn-nav {
    background-color: #0056b3;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: #004494;
}

/* ================================
   Home Page - Hero Section
   ================================ */
.hero-section {
    background: linear-gradient(to right, #0056b3, #0088ff);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #fff;
    color: #0056b3;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #e2e2e2;
}

/* ================================
   Home Page - Services
   ================================ */
.services-section {
    padding: 60px 0;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #222;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

/* ================================
   Profile Page specific styles
   ================================ */
.page-container {
    padding: 60px 0;
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-header h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.profile-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.profile-section h2 {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #222;
}

.leader-card h3 {
    color: #0056b3;
}

.designation {
    font-style: italic;
    color: #777;
    margin-bottom: 15px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.grid-2 .box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-list {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 15px;
}

.focus-area {
    background: #e9f5ff;
    border-left: 5px solid #0056b3;
}

/* ================================
   Footer
   ================================ */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}