main {
    z-index: var(--content-axis);
    box-sizing: border-box;
}


.index-first-con {
    width: 90%;
    margin: auto;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    
    padding: 5% 0;
}

.index-first-con .left {
    flex: 1 1 200px;
    max-width: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.index-first-con .left > h1 {
    text-align: center;
    font-size: 2.5rem;
}
#specialword1 {
    color: var(--maintheme);
    font-style: italic;
}
.index-first-con .left .lang-buttons-con{
    margin-top: 20px;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.index-first-con .left .lang-button {
    cursor: pointer;
    color: var(--texttheme1);
    background-color: var(--whitetheme);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 7px 15px;
    font-weight: bold;
    text-align: center;
}
.index-first-con .left .lang-button:hover {
    border: 2px solid var(--border-color-dark);
}

.index-first-con .right {
    flex: 1 1 350px;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-first-con .right img{
    height: auto;
    max-width: 100%;
    user-select: none;
    -webkit-user-drag: none; /* For WebKit browsers like Chrome, Safari */
    -moz-user-drag: none;    /* For Firefox */
    -ms-user-drag: none;     /* For Internet Explorer/Edge */
    user-drag: none;  /* standard fallback */
}


.horizontal-banner {
    width: 100%;
    height: 7vh;
    background-color: var(--maintheme);
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}


.index-second-con {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5% 0;
}

.index-second-con .isc-top{
    text-align: center;
    margin-bottom: 5%;
}

.index-second-con .isc-top h1 {
    margin: 0 auto;
    font-size: 2.5rem;
    max-width: 600px;
}

.index-second-con .isc-bottom {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.isc-bottom .pair {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* this will enforce default order */
.bot-img-con, .bot-text-con {
    flex: 1 1 300px;
    max-width: 500px;
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
}

/* alternate pairs effect: text first, image second */
.isc-bottom .pair:nth-child(even) {
    flex-direction: row-reverse;
}

.bot-img-con img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none; /* For WebKit browsers like Chrome, Safari */
    -moz-user-drag: none;    /* For Firefox */
    -ms-user-drag: none;     /* For Internet Explorer/Edge */
    user-drag: none;  /* standard fallback */
}

.bot-text-con {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bot-text-con h1 {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.bot-text-con p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
}


.index-third-con {
    width: 100%;
    background-color: var(--dialog-bkgrnd);

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 5% 0;
}

.index-third-con .itc-top {
    height: 20%;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 4%;
    text-align: center;
}

.index-third-con .itc-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}
.index-third-con .itc-bottom div {
    flex: 1 1 280px;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}

.index-fourth-con {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 0;
}

.index-fourth-con .ifc-top {
    width: 80%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 3%;
}
.ifc-top h1{
    text-align: center;
    margin-bottom: 1%;
}
.ifc-top p {
    text-align: center;
}

.index-fourth-con .ifc-bottom {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.ifc-bot-boxes {
    flex: 1 1 250px;
    max-width: 350px;
    
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.ifc-bot-boxes img {
    width: 100%;
    aspect-ratio: 16 / 9;
    user-select: none;
    -webkit-user-drag: none; /* For WebKit browsers like Chrome, Safari */
    -moz-user-drag: none;    /* For Firefox */
    -ms-user-drag: none;     /* For Internet Explorer/Edge */
    user-drag: none;  /* standard fallback */
}
.ifc-bot-boxes h3, .ifc-bot-boxes p {
    text-align: center;
}
.box-link-buttons {
    text-align: center;
    cursor: pointer;
    margin: auto;
    width: 90px;
    padding: 8px 10px;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s ease-in;
}
.box-link-buttons:hover {
    background-color: var(--secondtheme-dark);
}


.index-fifth-con {
    width: 100%;
    background-color: var(--dialog-bkgrnd);
    padding: 5% 0;
    
    display: flex;
    flex-direction: column;
    
    align-items: center;
    justify-content: center;
}

.ific-bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.ific-bottom .testimonial-con {
    flex: 1 1 250px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2%;
    text-align: center;
}

.ific-bottom .testimonial-con:hover {
    background-color: rgba(153, 153, 153, 0.091);
}


.faq-con {
    width: 100%;
    padding: 5% 0;
    display: flex;
    flex-direction: column;
}
.faq-con h1 {
    text-align: center;
}

.faq-con .faq-content details {
    margin: 20px auto;
    width: clamp(300px, 60%, 800px);
    padding: 1% 2%;
    background-color: var(--whitetheme);
}

.faq-content summary {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
}

.faq-content summary::after {
    content: "+" ;
    font-size: 1.7rem;
}

.faq-content details[open] summary::after {
    content: "- ";
}

.faq-content p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
}

.faq-content details[open] p {
    max-height: 500px;
    opacity: 1;
}

.faq-content details[open] p a {
    color: inherit;
}

.faq-content details[open] p a::after {
    content: " \29C9";
}

.index-seventh-con {
    background-color: var(--maintheme);
    color: white;
    padding: 3% 5%;
    text-align: center;
}