@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

html {
    scroll-behavior: smooth;
}



/* nabar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    background-color: #131212bd;
}

.navbar.sticky {
    padding: 15px 0;
    background-color: rgb(106, 163, 134);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto 0 auto 40px;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar.sticky .logo a span {
    color: #fff;
}

.navbar .logo a span {
    color: rgb(74, 159, 103);
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: crimson;
    font-weight: bold;
}

.navbar.sticky .menu li a:hover {
    color: #fff;
    font-weight: bold;
}



/* menu button styling */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}



/* .scroll-up-btn stlying */
.scroll-up-btn {
    position: fixed;
    right: 30px;
    height: 45px;
    width: 42px;
    background: crimson;
    text-align: center;
    line-height: 45px;
    color: #fff;
    opacity: 0;
    z-index: 99999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}



/* home-section styling */
.home {
    display: flex;
    background-image:
        url('vecteezy_collection-of-medical-supplies-and-equipment-on-a-light-blue_55204585.jpg');
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    min-height: 500px;
    font-family: "Ubunto", sans-serif;
}

.home .max-width {
    margin: auto 0 auto 40px;
}

.home .home-content .text-1 {
    font-size: 27px;
    color: #000000
}

.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    color: #FFFFFF
}

.home .home-content .text-3 {
    font-size: 15px;
    margin: 5px 0;
    color: #000000
}

.home .home-content .text-3 span {
    color: crimson;
    font-weight: 500;
}

.home .home-content a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
}

.home .home-content a:hover {
    color: crimson;
    background: none;
}



/* about section styling */
.about .title::after {
    content: "US ";
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: crimson;
}

.about .about-content .right p {
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
}

.about .about-content .right a:hover {
    color: crimson;
    background: none;

}



/* services section stylying */
.services,
.teams {
    color: #fff;
    background: #111;
}

.services .alink {
    color: white;
}

.services .title:before,
.teams .title:before {
    background: #fff;
}

.services .title:after {
    background: #111;
    content: "What We provide";

}

.services .services-content .card {
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;


}

.services .services-content .card:hover {
    background: rgba(20, 220, 170, 0.085);
}

.services .services-content .card .box {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Add this to stack items vertically */
    align-items: center;
    /* Center items horizontally */
    justify-content: center;
}

.services .services-content .card i {
    color: crimson;
    font-size: 50px;
    transition: color 0.3s ease;
}

.services .services-content .card:hover i {
    color: #fff;
}

.services .services-content .card:hover .box {
    transform: scale(1.05);
}

.services .services-content .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px;
    color: rgb(229, 130, 9);
}




/* contact section styling */
.contact .title::after {
    content: "get in touch";
}

.contact .contact-content .column {
    width: calc(50% - 30px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .left .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .left .row .info {
    margin-left: 30px;
}

.contact .contact-content .left .row i {
    font-size: 25px;
    color: crimson;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: #111;
}

.contact .contact-content .row-icons a i {
    margin-top: 5px;
    font-size: 25px;
    color: #fff;
    background: crimson;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid crimson;

}

.contact .contact-content .row-icons a:hover i {
    cursor: pointer;
    background: none;
    color: crimson;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 80px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 10px;
}

.contact .right form .email {
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button {
    height: 47px;
    width: 170px;
}

.contact .right form .button button {
    width: 100%;
    height: 100%;
    border: 2px solid crimson;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .right form .button button:hover {
    color: crimson;
    background: none;
}



/* footer section styling start */
footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 20px 23px;
    color: #fff;
}

.socialIcons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}

.socialIcons a {
    width: 35px;
    margin: 0 5px;
}


footer span a {
    color: crimson;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}








/* all similar styling */
section {
    padding: 100px 0;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    padding: 20px;
    font-family: 'Ubunto', sans-serif;
}

section .title::before {
    content: "";
    font-weight: bolder;
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .services-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}



/* carsouel animation stylying start here */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid crimson !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: crimson !important;
}



/* responsive media quries starts */
@media(max-width:1300px) {
    .about .about-content .column {
        width: 50%;
    }
}

@media(max-width:1150px) {
    .home .max-width {
        margin-left: 0px;
    }

    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }

    .socialIcons {
        margin-right: 70px;
    }

}

@media(max-width:1000px) {
    .max-width {
        padding: 0 50px;
    }

    .menu-btn {
        display: block;
        z-index: 999;
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 50%;
        right: -50%;
        top: 0;
        text-align: center;
        background: black;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        right: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .navbar .menu li a:hover {
        color: black;
        font-size: 33px;
        font-weight: bold;
    }

    .navbar.sticky .menu li a:hover {
        color: black;
        font-size: 33px;
        font-weight: bold;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 800px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }

    .socialIcons {
        margin-top: 0;
        margin-right: 150px;
    }
}



@media(max-width:700px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 32px;
    }

    .home .home-content a {
        font-size: 20px;
    }
}

@media(max-width:500px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .socialIcons {
        margin-top: 0;
        margin-right: 10px;
    }
}

@media(max-width:350px) {

    .about .title::after,
    .services .title::after,
    .contact .title::after {
        font-size: 15px;
    }
}

/* ============================= */
/* Grid layout for services (no slider) */
/* ============================= */

.services .services-content.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Center the last two cards */
.services .services-content.grid-services .card:nth-last-child(2),
.services .services-content.grid-services .card:nth-last-child(1) {
    justify-self: center;
}

/* Responsive layout */
@media (max-width: 992px) {
    .services .services-content.grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services .services-content.grid-services {
        grid-template-columns: 1fr;
    }
}

/* Director name should look like normal bold text, NOT a button */
.about .director-text {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    color: #c62828;
    /* crimson tone */
    font-weight: 700;
    /* bold */
    text-decoration: none;
    display: inline;
}

.about .director-text:hover {
    text-decoration: underline;
    color: #ff4d4d;
}

/* FIX: Director name visible by default */
.about .director-text {
    color: crimson !important;
    /* visible always */
    font-weight: 700;
    text-decoration: underline;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: inline;
}

.about .director-text:hover {
    color: #ff4d4d;
}

.no-after::after {
    content: none !important;
}



@media (max-width: 768px) {

    .home .text-1 {
        font-size: 20px;
    }

    .home .text-2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .home .text-3 {
        font-size: 15px;
        line-height: 1.6;
    }

    .home-content a {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/* =========================
   SCROLL-UP BUTTON – LEFT SIDE
   ========================= */

.scroll-up-btn {
    right: auto !important;
    /* disable right */
    left: 20px !important;
    /* move to left */
    bottom: 30px !important;
    /* keep same bottom spacing */
}




/* =====================================================
   🔥 ABSOLUTE CENTER FIX – ABOUT SECTION (MOBILE ONLY)
   ===================================================== */

@media (max-width: 768px) {

    /* FORCE full-width section reset */
    section#about,
    .about {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 60px 0 !important;
        /* remove side bias */
        box-sizing: border-box !important;
    }

    /* HARD RESET max-width container */
    .about .max-width {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        /* equal left & right */
        box-sizing: border-box !important;
    }

    /* Stack layout cleanly */
    .about-content {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    /* IMAGE COLUMN – perfectly centered */
    .about-content .column.left {
        width: 100% !important;
        margin: 0 auto 20px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .about-content .column.left img {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* TEXT COLUMN – equal margins both sides */
    .about-content .column.right {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .about-content .column.right p {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

    .about .max-width {
        padding: 0 14px !important;
    }

    .about-content .column.left img {
        max-width: 280px !important;
    }
}



/* =====================================================
   🔥 FINAL MOBILE FIX – NAVBAR + HOME (NO CONFLICT)
   ===================================================== */



/* ---------- HOME SECTION FIX ---------- */
.home {
    min-height: auto !important;
    padding-top: 140px !important;
    /* space for navbar */
    padding-bottom: 40px !important;
    background-position: center !important;
    background-size: cover !important;
}

.home .max-width {
    padding: 0 15px !important;
}

.home-content {
    text-align: center !important;
}

.home-content .text-1 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.home-content .text-2 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}

.home-content .text-3 {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.home-content .text-3 br {
    display: none !important;
}

.home-content a {
    font-size: 14px !important;
    padding: 10px 20px !important;
    display: inline-block !important;
}


/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

    .navbar .logo img {
        height: 36px !important;
    }

    .navbar .logo span {
        font-size: 15px !important;
    }

    .navbar .logo small {
        font-size: 11px !important;
    }

    .home-content .text-2 {
        font-size: 22px !important;
    }
}

/* =========================================
   CONTACT LEFT COLUMN – MOBILE FIX (FINAL)
   ========================================= */

@media (max-width: 768px) {

    .contact .column.left {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact .icons {
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact .icons .row {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
        flex-wrap: nowrap !important;
        /* KEEP icon + text together */
    }

    /* ICON */
    .contact .icons .row i {
        font-size: 20px !important;
        min-width: 24px !important;
        line-height: 1.2 !important;
        margin-top: 4px !important;
        flex-shrink: 0 !important;
    }

    /* TEXT WRAPPER */
    .contact .icons .info {
        padding: 0 !important;
        margin: 0 !important;
        width: calc(100% - 36px) !important;
        /* force wrap */
    }

    /* HEADING */
    .contact .icons .info .head {
        font-size: 15px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        margin-bottom: 2px !important;
        word-break: keep-all !important;
    }

    /* VALUE (ADDRESS / EMAIL / PHONE) */
    .contact .icons .info .sub-title {
        font-size: 14px !important;
        line-height: 1.45 !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        /* 🔥 FIX */
        white-space: normal !important;
    }
}




/* =====================================================
   EU MDR PAGE – FORCE RESPONSIVE (MOBILE & TABLET)
   ===================================================== */

@media (max-width: 768px) {

    /* NAVBAR FIX */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 15px !important;
        z-index: 9999;
    }

    .navbar .max-width {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar .logo a {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .navbar .menu {
        display: none !important;
        /* hide menu on mobile */
    }

    /* PUSH CONTENT BELOW NAVBAR */
    .services {
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }

    .services .max-width {
        padding: 0 15px !important;
    }

    /* IMAGE */
    .services img {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 12px !important;
    }

    /* MAIN TITLE */
    .services .title {
        font-size: 26px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    /* PARAGRAPHS */
    .services p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }

    /* SUB HEADINGS */
    .services h3 {
        font-size: 20px !important;
        margin-top: 25px !important;
        margin-bottom: 10px !important;
    }

    /* LIST */
    .services ul {
        padding-left: 18px !important;
    }

    .services ul li {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* CTA BUTTON */
    .services .btn {
        font-size: 14px !important;
        padding: 10px 22px !important;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

    .services {
        padding-top: 130px !important;
    }

    .services img {
        width: 60px !important;
        height: 60px !important;
    }

    .services .title {
        font-size: 22px !important;
    }

    .services h3 {
        font-size: 18px !important;
    }

    .services p,
    .services ul li {
        font-size: 14px !important;
    }
}


/* =====================================================
   🔥 FINAL MOBILE FIX – NAVBAR + HOME (NO CONFLICT)
   ===================================================== */

@media (max-width: 768px) {

    /* ---------- NAVBAR ---------- */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 10px 15px !important;
        z-index: 9999 !important;
        background: rgb(106, 163, 134) !important;
    }

    .navbar .max-width {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar .logo img {
        height: 42px !important;
    }

    .navbar .logo span {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .navbar .logo small {
        font-size: 12px !important;
    }

    /* ---------- MOBILE MENU (DROPDOWN) ---------- */
    .navbar .menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgb(106, 163, 134) !important;
        display: none !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px 0 !important;
    }

    .navbar .menu.active {
        display: flex !important;
    }

    .navbar .menu li {
        margin: 12px 0 !important;
    }

    .menu-btn {
        display: block !important;
        font-size: 26px !important;
        cursor: pointer !important;
    }

    /* ---------- HOME SECTION ---------- */
    .home {
        min-height: auto !important;
        padding-top: 130px !important;
        /* navbar space */
        padding-bottom: 40px !important;
    }

    .home .max-width {
        padding: 0 15px !important;
    }

    .home-content {
        text-align: center !important;
    }

    .home-content .text-1 {
        font-size: 18px !important;
    }

    .home-content .text-2 {
        font-size: 26px !important;
    }

    .home-content .text-3 {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .home-content .text-3 br {
        display: none !important;
    }

    .home-content a {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}

/* ===============================
   DIRECTOR NAME + DESIGNATION FIX
   =============================== */

.services .director-title,
.services .director-designation {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* NAME */
.services .director-title {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

/* DESIGNATION */
.services .director-designation {
    color: crimson !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .services .director-title {
        font-size: 24px !important;
    }

    .services .director-designation {
        font-size: 15px !important;
    }
}

/* =====================================================
   FORCE RESPONSIVE "What We provide" – HEAVY LOOK
   ===================================================== */

/* Base title */
.services .title {
    position: relative !important;
    text-align: center !important;
}

/* Heavy subtitle */
.services .title::after {
    content: "What We provide" !important;
    display: block !important;
    margin-top: 12px !important;

    /* 🔥 HEAVY LOOK */
    font-size: 16px !important;
    font-weight: 700 !important;
    /* bold */
    letter-spacing: 0.5px !important;
    /* stronger presence */
    text-transform: uppercase !important;

    color: crimson !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

/* Decorative line ABOVE title */
.services .title::before {
    content: "" !important;
    display: block !important;
    width: 100px !important;
    /* wider */
    height: 4px !important;
    /* thicker */
    background: crimson !important;
    /* stronger contrast */
    margin: 0 auto 12px !important;
    border-radius: 2px !important;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1024px) {
    .services .title::after {
        font-size: 18px !important;
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
    .services .title::after {
        font-size: 16px !important;
        letter-spacing: 0.4px !important;
        margin-top: 10px !important;
    }

    .services .title::before {
        width: 80px !important;
        height: 3px !important;
    }
}

/* =========================
   EXTRA SMALL PHONES
   ========================= */
@media (max-width: 480px) {
    .services .title::after {
        font-size: 15px !important;
        letter-spacing: 0.3px !important;
    }
}

/* ===============================
   GLOBAL SCROLL CONTROL (SAFE)
   =============================== */

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;     /* no left-right scroll */
    overscroll-behavior-x: none;       /* stop horizontal bounce */
    overscroll-behavior-y: contain;
    overscroll-behavior: none;    /* stop vertical bounce, keep scroll */
}
