@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root {
    --primary-dark: #0E1E37;
    --primary: #19255C;
    --secondary: #2C3D5B;
    --accent: #7C8594;
    --light-gray: #C3C3C3;
    --lightest: #DEDEE6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Inter",sans-serif;
    font-weight: 400;
}

body {
    background-color: var(--lightest);
    color: var(--primary-dark);
    line-height: 1.6;
}

header {
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(14, 30, 55, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.language-selector {
    background:none;
}
.languageSelect{
    color: white;
}
.language-selector select {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-selector select option {
    background-color: var(--primary-dark);
    color: white;
}

.language-selector select option:hover,
.language-selector select option:checked {
    background-color: var(--secondary);
    color: white;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--light-gray);
}

.hero {
    background: url('background_pattern.svg'),
    linear-gradient(rgba(14, 30, 55, 1), rgba(25, 37, 92, 0.6), rgba(255,255,255,0.6)),  
    center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--lightest);
    transform: translateY(-3px);
}

section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services {
    background-color: var(--lightest);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.featured-projects {
    background-color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    height: 300px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14, 30, 55, 0.9));
    padding: 1rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.values {
    background-color: var(--primary);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonials {
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    padding: 2rem;
    background-color: var(--lightest);
    border-radius: 10px;
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

.cta {
    background: linear-gradient(rgba(14, 30, 55, 0.9), rgba(25, 37, 92, 0.9)), url('/api/placeholder/1200/600') center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.8rem;
    list-style: none;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap:0.25rem;
    align-items:center;
}
.contact-info a{
    color:var(--light-gray);
    transition:all 300ms linear;
}
.contact-info a:hover{
    color:white;
}
.contact-info i {
    margin-right: 10px;
    color: var(--accent);
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--secondary);
}

.value-number {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.watermarkDev{
    font-size:1rem;
    color:#c3c7cd;
}
.watermarkDev a{
    color:#a5abb4;
}

.header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    color:white;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
}
.mobile-nav.active{
    display:flex;
    flex-direction:column;
}
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 92px;
        left: 0;
        background: rgba(14, 30, 55, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .mobile-nav ul {
        flex-direction: column;
        padding: 0;
        width:100%;
    }

    .mobile-nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        margin:0;
    }
    .desktop-nav{
        display:none;
    }
    .mobile-nav{
        display:none;
    }
}
@media(min-width:768px){
    .desktop-nav{
        display:inline-flexbox;
    }
    .mobile-nav{
        display:none;
    }
    .desktop-nav ul li {
        margin-left:2rem;
    }
}