
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; 
}

header {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.4rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #E17055;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
}



nav ul { display: flex; list-style: none; gap: 2.5rem; align-items: center; flex-shrink: 0; }
nav a {
    color: #2B4C7E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

nav a:hover { color: #E17055; background: rgba(225, 112, 85, 0.1); }
nav a.active {
    background: linear-gradient(135deg, #E17055 0%, #d65a3f 100%);
    color: white;
}

.page-header {
    background: #2B4C7E;
    color: #fff;
    padding: 12rem 2rem 8rem;
    text-align: center;
    animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0);     }
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.page-header p {
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.services-intro {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #2B4C7E;
    margin-bottom: 1.5rem;
}

.services-section {
    padding: 2rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-image {
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(43, 76, 126, 0.15);
    border-bottom: 5px solid #E17055;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #2B4C7E;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.service-features li::before {
    content: "✓";
    color: #E17055;
    margin-right: 10px;
    font-weight: bold;
}

.cta-section {
    background: #E8F4F8;
    padding: 6rem 2rem;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #E17055;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 112, 85, 0.3);
}

footer {
    background: #2B4C7E;
    color: white;
    padding: 3rem;
    border-top: 4px solid #E17055;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.footer-section h4 {
    color: #E17055;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #E8F4F8;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
}
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

@media (max-width: 768px) {
    .service-detail { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail:nth-child(even) { direction: ltr; }
    .page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.page-header p {
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}
    .footer-content { grid-template-columns: 1fr; }
    nav ul { display: none;} 
}