/* Home page about image and layout */
.about-image {
    float: left;
    margin: 50px 2rem 1.5rem 0;
    width: 260px;
    max-width: 40%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #e3e7ef;
}
.about-content {
    overflow: hidden;
    text-align: left;
}
@media (max-width: 900px) {
    .about-image {
        width: 160px;
        max-width: 100%;
        margin: 0 auto 1rem auto;
    }
}
@media (max-width: 600px) {
    .about-image {
        width: 100%;
        max-width: 260px;
        margin: 0 auto 1rem auto;
        float:none
    }
    .about-content {
        text-align: left;
    }
}
/* Services page image and layout */
.services-section {
    position: relative;
    min-height: 350px;
}
.services-image {
    float: right;
    width: 320px;
    max-width: 45%;
    margin: 0 0 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #232c3d;
}
.services-content {
    overflow: hidden;
}
@media (max-width: 900px) {
    .services-image {
        width: 200px;
        max-width: 100%;
        margin: 0 0 1rem 1rem;
    }
}
@media (max-width: 600px) {
    .services-image {
        float: none;
        display: block;
        margin: 0 auto 1rem auto;
        width: 100%;
        max-width: 320px;
    }
    .services-section {
        min-height: unset;
    }
}
/* Contact page image and layout */
.contact-section {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}
.contact-content {
    flex: 1;
}
.contact-image {
    width: 320px;
    max-width: 45%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #232c3d;
    object-fit: cover;
}
@media (max-width: 900px) {
    .contact-image {
        width: 200px;
        max-width: 100%;
    }
    .contact-section {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-image {
        margin: 1rem auto 0 auto;
        display: block;
    }
}
@media (max-width: 600px) {
    .contact-image {
        width: 100%;
        max-width: 320px;
        margin: 1rem auto 0 auto;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

body {
    background: #f8fafc;
    color: #333;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

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

.logo {
    width: 280px;
    height: auto;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 1rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #4e8cff;
    background-color: rgba(78, 140, 255, 0.1);
}

.nav-link.active {
    color: #4e8cff;
    background-color: rgba(78, 140, 255, 0.15);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: rgba(78, 140, 255, 0.1);
    color: #4e8cff;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        width: 220px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        justify-content: center;
        border-radius: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(78, 140, 255, 0.05);
        margin-top: 0.5rem;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

h1 {
    font-size: 2.5rem;
    margin: 0.2rem 0 0.5rem 0;
    color: #fff;
    font-family: 'Georgia', serif;
}

/* Service Items Styling */
.service-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #4e8cff;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 140, 255, 0.15);
    border-left-color: #3b82f6;
}

.service-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.service-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.service-item:target {
    background: rgba(78, 140, 255, 0.08);
    border-color: #4e8cff;
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% { 
        background: rgba(78, 140, 255, 0.15);
        transform: scale(1.02);
    }
    100% { 
        background: rgba(78, 140, 255, 0.08);
        transform: scale(1);
    }
}

main {
    max-width: 900px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 3rem;
    color: #333;
}

section {
    margin-bottom: 3rem;
}

h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}
ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}
ul li {
    margin-bottom: 1.1em;
    line-height: 1.6;
}
.placeholder {
    color: #b0b8c1;
    font-style: italic;
}
footer {
    text-align: center;
    padding: 2rem 0;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 300;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}
@media (max-width: 600px) {
    main {
        padding: 1rem;
    }
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin: 0.5rem 0;
    }
    header {
        flex-direction: column;
        align-items: center;
        padding: 0rem 1rem 0rem 1rem;
        min-height: 30px;
    }
    .logo {
        width: 300px;
        max-width: 80vw;
        margin: 0 auto 0.5rem auto;
        margin-top: 0;
        display: block;
        padding: 0;
    }
}
