.inder-regular {
    font-family: "Inder", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  


.header {
    display: flex;
    align-items: center;      /* Vertically center items */
    justify-content: space-between;  /* Space between left and right */
    padding: 10px 20px;
    margin-bottom: 100px;
}

h1 {
    font-family: "Vibur";
}

body {
    background: #ffffff;
    background: linear-gradient(94deg,rgba(255, 255, 255, 1) 1%, rgba(222, 222, 222, 1) 100%);
    font-family: "inder";
    font-weight: 600;
    padding-left: 180px;
    padding-right: 180px;
}

.social-icons {
    display: flex;           /* Keep icons in a row */
    gap: 15px;               /* space between icons */
}

.social-icons a {
    text-decoration: none;
    color: #121212;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}


h1 {
    font-size: 38px;
    margin: 0;
    text-align: center;
    flex: 1;                 /* Make h1 take available space */
}

.right-space {
    width: 90px;             /* Same width as social icons to center h1 */
}

p {
    font-family: "Inder";
}

.contactBtn a {
    color: #121212;
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
}

button i {
    font-size: large;
}

.mainContainer {
    /* border: red 1px solid; */
    width: 100%;
    height: 500px;
    text-align: center;
    font-weight: 700;
}

.expHolder {
    height: 80px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(214, 214, 214);
        /* border: red 1px solid; */
}

.expScroller {
    width: 50%;
    height: 100%;
}

h2 {
    font-size: 38px;
}

p {
    font-weight: 500;
    margin-bottom: 70px;
}

.languageandmode {
    display: flex;
    gap: 1rem;
}

.languageandmode a {
    color: inherit;
    font-size: 1.2rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.languageandmode a:hover {
    transform: scale(1.1);
}

.languageandmode a {
    font-size: 1.2rem; /* match your social icons */
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.fa-svg {
    width: 1em;      /* match font-size */
    height: 1em;     /* match font-size */
    fill: currentColor; /* inherit text color */
    display: block;  /* prevent inline spacing issues */
}

.mainContainer a {
    color: #121212;
    font-weight: 700;
    text-decoration: none;
}

.mainContainer a:hover {
    text-decoration: underline;
}

.email {
    font-weight: 500;
}

footer {
    text-align: center;
    bottom: 0;
}

@media (max-width: 710px) {
    body {
        padding-right: 0px;
        padding-left: 0px
    }
}