body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: linear-gradient(90deg,#0b69ff,#0057d9); 
    color: white;
    padding: 14px 0;
}

header .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 44px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    object-fit: contain;
}

header h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

nav li {
    margin: 0;
}

nav a {
    color: #e6eefc;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 220ms ease, transform 160ms ease, box-shadow 220ms ease;
    font-weight: 600;
    display: inline-block;
}

nav a:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

nav a:active {
    transform: translateY(0);
}

nav a.active, nav a[href$="#home"]:focus {
    background: #1a73e8;
    color: #fff;
    box-shadow: 0 8px 24px rgba(26,115,232,0.18);
}

@media (max-width: 640px) {
    header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    header h1 { font-size: 20px; }
}

footer {
    background-color: #1a73e8;
    color: #ccc;
    text-align: center;
    padding: 10px;
}

.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background: white;
}

.slide {
    display: none;
    animation: fadeEffect 1s;
}

.slide img {
    width: 100%;
    height: auto;
}

.dots {
    text-align: center;
    padding: 15px;
    background: #fff;
}

.dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    font-size: 14px;
    line-height: 20px;
    color: white;
    text-align: center;
}

.dot:hover, .dot.active {
    background-color: #1a73e8;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}
section {
    padding: 40px 0;
}
.container {
    width: 80%;
    margin: 0 auto;
}

#home {
    background: linear-gradient(180deg, rgba(10,102,255,0.06), rgba(255,255,255,0.02));
    padding: 60px 0;
}

.hero {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(250,250,255,0.85));
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(15,40,80,0.08);
    align-items: center;
}

.hero-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 18px  #1a73e8;
    flex-shrink: 0;
    background-color:  #1a73e8;
}

.hero-text h2 {
    margin: 0 0 8px 0;
    font-size: 26px;
    color: #06326b;
    letter-spacing: 0.2px;
}

.hero-text p {
    margin: 0 0 14px 0;
    color: #375776;
    line-height: 1.45;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg,#0b69ff,#0057d9);
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11,105,255,0.18);
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(11,105,255,0.22);
    opacity: 0.98;
}

@media (max-width: 720px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo {
        width: 72px;
        height: 72px;
    }
    .hero-text h2 { font-size: 22px; }
}