:root {
--primary-color: #99A3F1;
--secondary-color: #fff;
--text-color-dark: #000;
--text-color-light: #fff;
--bg-light: #f9f9f9;
--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--shadow: 0 1px 10px rgba(0,0,0,0.1);
}
.dark-mode {
--secondary-color: #121212;
--text-color-dark: #e0e0e0;
--bg-light: #1e1e1e;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family);
    color: var(--text-color-dark);
    background: var(--secondary-color);
    line-height: 1.6;
}

a {text-decoration: none; color: inherit;}
ul {list-style: none;}
img {
    object-fit: contain;
    height: auto;
    max-width: 100%;
    float: right;
    
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.container {
    max-width: 65%;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: .5em;
    background: var(--primary-color);
    color: var(--text-color-light);
    border: none;
    border-radius: 2em;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.btn:hover {background: #000;}
header {
    background: var(--secondary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo-svg {
    height: 50px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-align: center;
}
.nav-links a:hover {color: var(--primary-color);}
#dark-mode-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color-dark);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
#dark-mode-toggle:hover {
    background: var(--primary-color);
    color: var(--text-color-light);
}
.dark-mode #dark-mode-toggle {
    color: var(--text-color-dark);
    border-color: var(--primary-color);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
}
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: left;
    background: var(--bg-light);
}
.hero h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}
.hero h1 span {color: var(--primary-color);}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.services {padding: 80px 0;}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(153, 163, 241, 0.2);
    border-color: var(--primary-color)
}
.service-card:hover svg{
    color: var(--primary-color);
}
.dark-mode .service-card {
    background: #252525;
    border-color: #333;
    color: #e0e0e0;
}
.service-icon {
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
}
.cta h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.cta .btn:hover {
    background-color: #000;
    color: var(--primary-color);
}
footer {
    padding: 20px 0;
    background: var(--bg-light);
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
.none{display: none;}
.container {max-width: 100% !important;}
.section-title {font-size: 2rem;}
.nav-links {
    position: absolute;
    right: 0px;
    height: auto;
    top: 80px;
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    width: 99%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    box-shadow: -4px 4px 6px rgba(0,0,0,0.1);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
}
.nav-links li {opacity: 0;}
.menu-toggle {display: flex;}
.services-grid {grid-template-columns: 1fr;}
}
.nav-active {transform: translateX(0%);}
@keyframes navLinkFade {
from {
    opacity: 0;
    transform: translateX(15px);
    }
to {
    opacity: 1;
    transform: translateX(0px);
    }
}
.toggle .line1 {transform: rotate(-50deg) translate(-8px, 8px);}
.toggle .line2 {opacity: 0;}
.toggle .line3 {transform: rotate(50deg) translate(-8px, -8px);}
