/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #001959;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
.header {
    background-color: #E0F1FF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #001959;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1075C8;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #001959;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001959 0%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 5rem;
    margin-top: 70px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #001959;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.cta-button:hover {
    background-color: transparent;
    color: #E0F1FF;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #9FDCFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Portfolio Carousel */
.portfolio {
    background-color: #9FDCFF;
	position: relative;
	margin: 0 auto;
    overflow: hidden;
}

.portfolio-grid {
    gap: 2rem;
	display: flex;
    transition: transform 0.5s ease;
}

.portfolio-item {
    background-color: #E0F1FF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Images recizing */
 .portfolio-img {
    height: 220px;
	margin-bottom: 1rem;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

/* Process */
.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step h3 {
    color: #001959;
}

/* Team */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member {
    text-align: center;
    padding: 2rem;
    background-color: #E0F1FF;
    border-radius: 10px;
}

.role {
    color: #001959;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    background: linear-gradient(45deg, #9FDCFF 0%, #1075C8 100%);
    color: #001959;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    min-height: 150px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.contact-form button {
    background-color: #9FDCFF;
    color: #001959;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #1075C8;
}

/* Footer */
.footer {
    background-color: #E0F1FF;
    color: #001959;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links, .legal-links {
    display: flex;
    flex-direction: column;
}

.footer a {
    color: #1075C8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: #001959;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .subscribe-form button {
        border-radius: 4px;
    }
}