*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f9f9f9;
    overflow-x: hidden;
}
#lang-toggle {
    background: #fff;
    color: #4a7fa5;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 4px 14px;
    margin-left: 20px;
    cursor: pointer;
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

#lang-toggle:hover { background: #e8f0f7; border-color: #e8f0f7; }

/* ── Header ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    background: #4a7fa5;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: #fff;
    padding: 2px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.2s;
}

nav a:hover { opacity: 1; text-decoration: underline; }

/* ── Hero ── */
.hero {
    margin-top: 64px;
    min-height: 35vh;
    background: linear-gradient(135deg, #4a7fa5 0%, #5e9bbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 5%;
    position: relative;
}

.hero-phone {
    position: absolute;
    top: 10px;
    right: 3%;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s;
    z-index: 1;
}

.hero-phone:hover {
    background: rgba(255,255,255,0.25);
}

.hero-content {
    margin-top: 35px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 520px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Noto Sans Telugu', sans-serif;
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    margin-bottom: 12px;
}

.hero-icon {
    height: 1.4em;
    width: 1.4em;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: #fff;
    padding: 2px;
}

/* ── Contact ── */
.contact {
    padding: 24px 5% 64px;
    text-align: center;
    background: #f0f5fa;
}

.contact h2, .gallery h2, .services h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7fa5;
    margin-bottom: 36px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: left;
    transition: transform 0.2s;
}

.contact-card:hover { transform: translateY(-3px); }

.contact-card img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

.contact-card img.instagram-icon { width: 55px; height: 55px; margin-left: -10px; }

.contact-card .instagram-text { margin-left: -8px; }

.contact-card .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card a {
    color: #4a7fa5;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
}

.contact-card a:hover { text-decoration: underline; }

/* ── Services ── */
.services {
    padding: 48px 5% 24px;
    text-align: center;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.service-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f0f5fa;
    border-radius: 10px;
    padding: 16px;
}

.service-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.service-card strong { display: block; font-size: 0.95rem; color: #4a7fa5; margin-bottom: 4px; }
.service-card p { font-size: 0.82rem; color: #555; margin: 0; line-height: 1.4; }

/* ── Gallery ── */
.gallery {
    padding: 24px 5% 64px;
    text-align: center;
    background: #fff;
}

.slideshow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: #000;
}

.slides {
    position: relative;
    width: 100%;
    height: 560px;
}

.slides img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slides img.active { opacity: 1; }

.slideshow .prev, .slideshow .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 10;
}

.slideshow .prev { left: 10px; }
.slideshow .next { right: 10px; }
.slideshow .prev:hover, .slideshow .next:hover { background: rgba(0,0,0,0.6); }

.dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 9px; height: 9px;
    margin: 0 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active { background: #fff; }

/* ── Footer ── */
footer {
    background: #4a7fa5;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* ── Mobile ── */
/* ── Mobile ── */
@media (max-width: 600px) {
    header { padding: 0 3%; height: 56px; flex-wrap: nowrap; width: 100%; }
    .logo { font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }
    .logo-img { height: 40px; width: 40px; margin-right: 6px; }
    #lang-toggle { padding: 2px 8px; font-size: 0.7rem; margin-left: 8px; flex-shrink: 0; }
    nav { flex-shrink: 1; min-width: 0; }
    nav a { margin-left: 6px; font-size: 0.7rem; }
    .hero { margin-top: 56px; padding: 20px 4%; min-height: 25vh; }
    .hero-phone { font-size: 0.8rem; padding: 6px 12px; top: 15px; right: 4%; }
    .hero-content { padding-top: 40px; }
    .hero-title { font-size: clamp(1.4rem, 4vw, 2rem); line-height: 1.2; }
    .hero-icon { height: 1.4em; width: 1.4em; }
    .contact, .gallery { padding: 40px 4%; }
    .contact h2, .gallery h2, .services h2 { font-size: 1.4rem; margin-bottom: 24px; }
    .slides { height: 260px; }
    .slideshow .prev, .slideshow .next { padding: 14px 18px; font-size: 1.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .services { padding: 32px 4%; }
    .services-grid { grid-template-columns: 1fr; }
}

