* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
}

/* Header */
.header {
    background-color: #0b1e36;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    color: #00bcd4;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 14px;
    color: #a0b2c6;
}

.brand-tagline {
    font-size: 8px;
    color: #00bcd4;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.nav-links a.active {
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 3px;
}

/* Language Selector */
.lang-switch {
    /*display: flex;
    align-items: center;
    gap: 8px;*/

    display:inline-flex;
    border:1px solid rgba(19,216,244,.5);
    border-radius:999px;
    padding:3px;
    background:rgba(255,255,255,.04)
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-switch button {
    border:0;
    background:transparent;
    /*color:#dcecf7;*/
    color: #00bcd4;
    font-weight:900;
    padding:7px 10px;
    border-radius:999px;
    cursor:pointer
}
.lang-switch button.active {
    background:var(--cyan);
    color:#b8cbd8
}

.header-phone {
    background-color: #00bcd4;
    color: #0b1e36;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-label {
    font-size: 10px;
    display: block;
    font-weight: bold;
}

.phone-number {
    font-size: 14px;
    font-weight: 800;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(11, 30, 54, 0.85), rgba(11, 30, 54, 0.85)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: #fff;
    padding: 80px 50px;
    position: relative;
}

/*.sub-heading {*/
.kicker{
    color: #00bcd4;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 15px 0;
}

.hero p {
    max-width: 500px;
    font-size: 14px;
    color: #d0dce5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #00bcd4;
    color: #0b1e36;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 50px;
    font-size: 12px;
    color: #a0b2c6;
}

/* Services */
.services-section {
    padding: 60px 50px;
    text-align: center;
}

.section-title h2 {
    color: #0b1e36;
    font-size: 28px;
    margin: 10px 0;
    
}

.section-title p {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: #00bcd4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 13px;
    color: #0b1e36;
    margin-bottom: 15px;
    height: 35px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card li i {
    color: #00bcd4;
    font-size: 10px;
}

/* Why Choose Us */
.why-us-section {
    background-color: #0b1e36;
    color: #fff;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.shield-illustration {
    font-size: 120px;
    color: #00bcd4;
    text-align: center;
    opacity: 0.8;
}

.why-us-center h2 {
    font-size: 28px;
    margin: 15px 0;
}

.why-us-center p {
    color: #a0b2c6;
    font-size: 13px;
    margin-bottom: 25px;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
}

.feature-item h4 {
    font-size: 14px;
}

.feature-item p {
    font-size: 11px;
    color: #a0b2c6;
}

/* Assessment */
.assessment-section {
    padding: 60px 50px;
    background-color: #f4f7f6;
}

.assessment-container {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.laptop-mockup {
    font-size: 100px;
    color: #0b1e36;
    text-align: center;
}

.assessment-content h2 {
    color: #0b1e36;
    font-size: 26px;
    margin: 10px 0;
}

.assessment-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

.assessment-includes h4 {
    color: #0b1e36;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.assessment-includes ul {
    list-style: none;
}

.assessment-includes li {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
}

.assessment-includes li i {
    color: #00bcd4;
    margin-right: 5px;
}

/* Testimonial */
.testimonial-banner {
    background-color: #0b1e36;
    color: #fff;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a3352;
}

.quote-container {
    max-width: 600px;
}

.quote-icon {
    color: #00bcd4;
    font-size: 20px;
}

.quote-text {
    font-style: italic;
    font-size: 13px;
    color: #d0dce5;
    margin: 5px 0;
}

.quote-author {
    font-size: 11px;
    color: #a0b2c6;
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.badge {
    text-align: center;
    font-size: 10px;
    color: #a0b2c6;
}

.badge i {
    display: block;
    font-size: 20px;
    color: #00bcd4;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #071322;
    color: #fff;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.copyright {
    color: #666;
    font-size: 10px;
    margin-top: 10px;
}

.contact-col p {
    margin-bottom: 5px;
    color: #a0b2c6;
}

.contact-col i {
    color: #00bcd4;
    margin-right: 8px;
}

.slogan-col {
    text-align: right;
}

.handwritten {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #00bcd4;
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
}
