/* Stylesheet  v7.4
 * Copyright 2022-2025 - Author Gnanavel Rajendran - 9677275437 */
@import url('satoshi.css');

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: underline;
    color: #007bff;
}

.hero-section {
    background: url('../img/banner.webp') left center/cover no-repeat;
    height: 100vh;
    /* FULL SCREEN HEIGHT */
    min-height: 100vh;
    position: relative;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1rem;
    margin: 20px 0;
    font-weight: 200;
}

/* ✅ PERFECT LANGUAGE TOGGLE SWITCH */
.lang-switch {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 42px;
}

.lang-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lang-slider {
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-weight: bold;
    font-size: 15px;
    overflow: hidden;
    background: transparent;
    color: #fff;
}

.lang-option {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* BLUE BACKGROUND THAT SLIDES */
.lang-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #A00000;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.signature {
    width: 250px;
}

p{
    text-align: start;
}

/* When Tamil is selected */
.lang-switch input:checked+.lang-slider::before {
    transform: translateX(100%);
}

.left-border {
    border-left: 4px solid #007bff;
    /* you can change color & thickness */
    padding-left: 15px;
    /* optional spacing inside */
    margin-top: 7rem;
}

/* ✅ RESPONSIVE FIXES */
@media (max-width: 767px) {
    .hero-section {
        background-position: 30% center;
        /* centers face for mobile */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
}