.large-img {
    max-width: 320px;
    height: 180px;
}
.ai-img {
    max-width: 320px;
    height: 180px;
}
.about {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    text-align: center;
}
.about h2 {
    margin-bottom: 1rem;
}
.about ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    color: #b0e0e6;
    font-size: 1.1rem;
}
.about ul li {
    margin-bottom: 0.5rem;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0f2027;  /* fallback for old browsers */
    background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
    color: #fff;
}
header {
    background: #1a2980;
    background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
    padding: 2rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    color: #e0e0e0;
}
.intro {
    text-align: center;
    padding: 2rem 1rem;
}
.hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.services {
    background: rgba(255,255,255,0.05);
    padding: 2rem 1rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 900px;
}
.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.service {
    background: #222c36;
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-img {
    width: 100%;
    max-width: 220px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(38,208,206,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.service a {
    text-decoration: none;
    color: inherit;
}
.service a:hover .service-img {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(38,208,206,0.18);
}
.service:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(38,208,206,0.2);
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #1a2980;
    background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
    color: #e0e0e0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 2rem;
    font-size: 1rem;
}

.gallery {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    text-align: center;
}
.gallery h2 {
    margin-bottom: 1.5rem;
}
.gallery-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.gallery-images img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(38,208,206,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-images img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(38,208,206,0.25);
}