/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f1f1f1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #1E2A78, #4BCFFA);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.header p {
    font-size: 1.4em;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

 /* Sticky Navbar */
 .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: background 0.3s ease;
}

.navbar a:hover {
    color: #ff5773;
}
.navbar.sticky {
    background: rgba(255, 255, 255, 0.9);
}

.logo-container {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
   
}

.logo {
    height: 40px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: auto;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #1E2A78;
}

/* Resume Section */
.resume {
    background: #fff;
    padding: 60px 0;
    margin-top: 20px;
}

.resume h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1E2A78;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background: #f9f9f9;
    padding: 30px;
    border-left: 6px solid #1E2A78;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background: #f1f1f1;
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1E2A78;
}

.services-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 30px;
    flex: 1;
    max-width: 350px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 3em;
    color: #1E2A78;
    margin-bottom: 20px;
}

/* Blog Section */
.blog {
    background: #fff;
    padding: 60px 0;
}

.blog h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1E2A78;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-post {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-post a {
    text-decoration: none;
    color: #1E2A78;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-post a:hover {
    color: #ffdd57;
}

/* Contact Section */
.contact {
    background: #f1f1f1;
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #f5f5f7;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1E2A78;
}

button[type="submit"] {
    background: #1E2A78;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #ffdd57;
}

/* Footer Section */
.footer {
    background: #1E2A78;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}

.footer p {
    font-size: 1em;
}
