/* --------------------------------------------
   FONTS & ROOT VARIABLES
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --primary-color: #0063a6;
    --primary-color-light: #20242f;
    --secondary-color: #f49e09;
    --extra-light: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Lisu Bosa", serif;
}

/* --------------------------------------------
   GLOBAL RESET & BASE STYLES
--------------------------------------------- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    background-color: var(--white);
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

/* --------------------------------------------
   SECTION STRUCTURE
--------------------------------------------- */
.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--header-font);
    margin-bottom: 2rem;
    text-align: center;
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    outline: none;
    border: none;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    cursor: pointer;
}

/* --------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------- */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--primary-color);
    height: 3.5rem;
    z-index: 1100;
}

.logo img {
    width: 200px;
    padding-left: 40px;
}

.menu-toggle {
    display: block;
    padding-right: 60px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
}

/* Navigation overlay container */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    background-color: transparent;
    /* 👈 Now it's fully see-through */
    z-index: 1001;
    /* this is recent */
}


/* Show nav when toggled */
nav.show-nav {
    opacity: 1;
    pointer-events: auto;
}

/* Panel containers */
.nav-left,
.nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110%;

    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.nav-right {
    transform: translateX(100%);
}

/* Slide in both panels */
nav.show-nav .nav-left,
nav.show-nav .nav-right {
    opacity: 1;
    transform: translateX(0);
}

.nav-left {
    align-items: flex-start;
    padding-left: 30px;
}

.nav-right {
    align-items: flex-end;
    padding-right: 30px;
}

nav a {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    margin: 20px 0;
    transition: color 0.3s ease;
}

/* Hover effects for nav links */
.nav-left a:hover {
    text-align: center;
    background-color: white;
    color: var(--primary-color);
    padding: 10px 55px;
    position: static;
    margin-left: -2.5rem;
    height: 190px;
    width: 120px;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
}

.nav-right a:hover {
    text-align: center;
    background-color: white;
    color: var(--primary-color);
    padding: 40px;
    position: relative;
    transform: translateX(2rem);
    height: 220px;
    width: 120px;
    right: 0;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
}

/* --------------------------------------------
   HERO SECTION & CLOUD CHARACTER
--------------------------------------------- */
.header__container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    background-image: url("../images/backgroundpage-10.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header__container h1 {
    font-size: 7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 25%;
    width: 100%;
    text-align: center;
}

.cloud img {
    padding-top: 14rem;
    max-height: 950px;
    max-width: 650px;
}

/* --------------------------------------------
   EYES & FACIAL DETAILS
--------------------------------------------- */

.cloud {
    position: relative;
    /* padding-top: -24rem;  */
    display: flex;
    justify-content: center;
    align-items: center;
}



.eyes {
    position: absolute;
    top: 59%;
    left: 50.2%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.eye {
    width: 80px;
    height: 95px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px skyblue;
}

.ball {
    width: 36px;
    height: 46px;
    background: #1a1c1f;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(calc(-50% + 2px), calc(-50% + 1px));
    border-radius: 50%;
    background-image: url('cloud_eyeballs-22 white.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.shine {
    position: absolute;
    top: 24%;
    left: 26%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, white 50%, #fdfbfb 100%);
    border-radius: 50%;
    opacity: 0.92;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5)) drop-shadow(1px 1px 3px rgba(255, 255, 255, 0.4));
    animation: sparkle-ping 2s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
}



.circles {
    position: absolute;
    top: 58%;
    left: 50.2%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.circle1,
.circle2,
.circle3 {
    background: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.circle1 {
    width: 30px;
    height: 30px;
    transform: translate(11rem, -9rem);
}

.circle2 {
    width: 15px;
    height: 15px;
    transform: translate(7rem, -6rem);
}

.circle3 {
    width: 130px;
    height: 130px;
    transform: translate(6rem, -18rem);
}

/* --------------------------------------------
   RESPONSIVE BEHAVIOR
--------------------------------------------- */

@media (max-width: 768px) {

    header {
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1.2rem;
        background-color: transparent;
        /* makes it float above hero */
        position: absolute;
        top: 0;
        left: -10px;
        width: 100%;
        z-index: 1100;
        /* sits above cloud */
    }



    .logo img {
        width: 160px;
        padding-left: 0;
        margin-top: 50px;
    }


    .menu-toggle {
        font-size: 2.2rem;
        padding-right: 15px;
        margin-top: 50px;
    }

    .header__container h1 {
        display: none;
    }

    image\\svg+xml,
    <svg xmlns='http:\\\\www.w3.org\\2000\\svg'viewBox='0 0 52 52'fill='white'><path d='M26 0C11.664 0 0 11.663 0 26s11.664 26 26 26 26-11.663 26-26S40.336 0 26 0zm0 50C12.767 50 2 39.233 2 26S12.767 2 26 2s24 10.767 24 24-10.767 24-24 24z'\\><path d='M38.252 15.336l-15.369 17.29-9.259-7.407a1 1 0 0 0-1.249 1.562l10 8a.999.999 0 0 0 1.373-.117l16-18a1 1 0 1 0-1.496-1.328z'\\><\\svg>.header__container {
        background-image: url("../images/MobileBackground.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right 84% top;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 2rem 1rem;
        position: relative;
    }



    .cloud {
        position: relative;
        width: 100vw;
        max-width: 450px;
        aspect-ratio: 1 / 1;
        margin-top: auto;
        margin-bottom: 1rem;
    }

    .cloud img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        padding-top: 0;
        margin-top: 1.5rem;
    }



    .eyes {
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        gap: 1.2rem;
        line-height: 0;
    }

    .eye {
        width: 40px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 2px 4px skyblue;
        position: relative;
    }

    .ball {
        width: 20px;
        height: 24px;
        background: #1a1c1f;
        position: absolute;
        top: 58%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background-image: url('cloud_eyeballs-22 white.png');
        background-repeat: no-repeat;
        background-size: cover;
    }


    .circles {
        display: none;
    }



}

@media (max-width: 340px) {
    .header__container {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
        position: relative;
        padding-top: 1rem;
        /* Optional breathing room */
    }

    .cloud {
        z-index: 3;
        position: relative;
    }

    .cloud img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin-bottom: 0;
        transform: translateY(-4rem);
    }


}


@keyframes sparkle-ping {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.3) translate(1px, -1px);
    }
}


/* Home page css end  */

/*About Section css start */
/* =============================
   FONTS & ROOT CONFIGURATION
============================= */
@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --primary-color: #0063a6;
    --secondary-color: #f49e09;
    --white: #ffffff;
    --dark-blue: #003b8b;
    --light-blue: #e0f0fb;
    --text-blue: #1e6fa7;
    --scroll-track: #cde0ee;
    --scroll-thumb: #99c0db;
    --scroll-hover: #003366;
    --max-width: 1200px;
    --header-font: "Lisu Bosa", serif;
}

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

.round-image {
    width: 100px;
    /* adjust as needed */
    height: 100px;
    /* keep width and height equal for perfect circle */
    border-radius: 50%;
    object-fit: cover;
    /* ensures the image fills the circle without distortion */
}


html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    background-color: white;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

/* =============================
   HEADER / TITLE STYLES
============================= */
h3 {
    font-size: 56px;
    color: var(--dark-blue);
}



/* about */

/* ==========================================
   Utility & Layout
========================================== */
.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem 0 1rem;
    /* Top: 5rem, Right: 1rem, Bottom: 0, Left: 1rem (gap edit btw about anf services)*/
}


img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

/* ==========================================
   About Section
========================================== */
.about__container {
    padding-top: 2rem;
    margin-bottom: 4rem;
    min-height: 100vh;
}


.about__content {
    margin-left: 200px;
    /* Reduced from 200px to shift slightly left */
    width: calc(100% - 50px);
    /* Increased width by reducing subtraction */
    display: flex;
    flex-direction: row;
    transform: none;
    /* Removed to avoid unexpected shifts */
    background-color: var(--primary-color);
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: none;
    position: relative;
    z-index: 1;
    height: 400px;
}


.info-section {
    width: 100%;
    padding: 40px;
    margin-left: auto;
    margin-right: 0;
}


/* Circles */
.circles {
    position: absolute;
    top: 70%;
    left: 50.2%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.circle1,
.circle2,
.circle3 {
    background: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.circle1 {
    width: 30px;
    height: 30px;
    transform: translate(11rem, -9rem);
}

.circle2 {
    width: 15px;
    height: 15px;
    transform: translate(7rem, -6rem);
}

.circle3 {
    width: 130px;
    height: 130px;
    transform: translate(6rem, -18rem);
}

/* Cloud */
.cloud-section {
    width: 20%;
    transform: translate(-5.5rem, 7rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 9999;
}



img.cloud-image {
    height: 230px;
    width: 230px;
    position: relative;
    z-index: 10000;
}

/* Info Section */
.title-section {
    font-size: 2.5rem;
    color: white;
}

.title-section2 {
    font-size: 1.5rem;
    color: white;
    padding-bottom: 5px;
}

.profile-circle {
    width: 90px;
    height: 90px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: none;
    /* hidden by default (desktop) */
}


.info-section p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-right: 90px;
}

.content_2 {
    max-width: 800px;
    margin: 0px 50px 20px auto;
    padding-left: 130px;
    text-align: left;
    color: #0063a6;
    font-size: 12px;
    line-height: 1.8;
}

/* Bubble */
.bubble {
    position: absolute;
    left: -3rem;
    transform: translateY(-4rem);
    color: #0063a6;
    text-align: center;
    line-height: 1.2;
}

.bubble h4 {
    font-size: 1.8rem;
    font-weight: 700;
}

.bubble span {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

/* ABOUT Link Pill */
.about-link {
    position: absolute;
    right: 0;
    transform: translateY(-16.5rem);
    height: 180px;
    width: 100px;
    background-color: #0063a6;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-link a {
    font-size: 1rem;
    font-weight: bold;
    padding-left: 10px;
    color: white;
}

/* Logo & Heading */
main {
    padding-left: 180px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo1 img {
    height: 89px;
    padding-left: 80px;
    margin-right: 20px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(99%) saturate(2731%) hue-rotate(190deg) brightness(90%) contrast(101%);
}

h3 {
    font-size: 48px;
    font-weight: 700;
    color: #0063a6;
}

/* Highlight */
.highlight-light {
    font-weight: 400;
    font-size: 0.8rem;
    color: white;
}


#about {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

/* ==========================================
   Tablet Adjustments
========================================== */
@media (max-width: 1430px) {
    .about__content {
        max-width: 1600px;
    }

    .about-link {
        height: 160px;
        width: 100px;
        border-radius: 120px 0 0 120px;
    }

    .content_2 {
        max-width: 785px;
        margin: 0px 50px 20px auto;
        padding-left: 130px;
        text-align: left;
        color: #0063a6;
        font-size: 12px;
        line-height: 1.8;
    }

    /* Logo & Heading */
    main {
        padding-left: 185px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    #about {
        margin-bottom: 0;
        padding-bottom: 0 !important;
    }
}



@media (max-width: 768px) {

    #about {
        margin-bottom: 240px;
        padding-bottom: 0 !important;
    }

    .section__container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .about__content {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
        border-radius: 0;
        transform: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    .about__content::before,
    .about__content::after {
        background: none !important;
    }

    .about::before {
        content: "ABOUT";
        display: flex;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 70px;
        background-color: #0063a6;
        border-bottom-left-radius: 140px;
        border-bottom-right-radius: 140px;
        color: white;
        font-weight: bold;
        font-size: 14px;
        margin: 0 auto 20px auto;
    }

    .cloud-section,
    .circle1,
    .circle2,
    .circle3,
    .bubble {
        display: none !important;
    }

    .content_2 {
        padding: 0 20px;
        margin: 20px auto;
        font-size: 12px;
        border-radius: 0;
        text-align: justify;
        line-height: 1.7;
        word-break: break-word;
        width: 100%;
    }

    main {
        padding-left: 1px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .logo1 img {
        padding-left: 0;
        margin: 0 auto;
        height: 160px;
    }

    h3 {
        font-size: 32px;
        text-align: center;
    }

    .about-link {
        display: none;
    }

    .title-section {
        font-size: 1.3rem;
        margin: 0 0;
        font-weight: bold;
        text-align: center;
    }

    .title-section2 {
        display: block;
        font-size: 1rem;
        text-align: center;
        font-weight: bold;
        margin-top: 0;
        
    }

    .title-section2 .highlight-light {
        display: block;
        margin-top: 0;
        font-size: 14px;
    }

    .name {
        margin-bottom: 4px;
    }

    .description {
        width: 100%;
        text-align: justify;
        font-size: 12px;
        line-height: 1.7;
        margin-top: 1rem;
        padding: 0 20px;
        word-break: break-word;
    }

    .info-section {
        max-width: 400px;
        margin-left: auto;
        margin-right: 10px;
        background-color: #0063a6;
        color: white;
        border-radius: 30px;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .profile-circle {
        display: block;
    }
}


/* about mobile section ends */


/* about mobile section ends */

/* about ends */

/* section */

/* =============================
   SECTION TITLE SHAPE
============================= */
.container-fluid {
    background-color: var(--primary-color);
}

.container-fluid h6 {
    background-color: white;
    color: var(--primary-color);
    text-align: center;
    font-size: 18px;
    /* Smaller text */
    padding: 25px;
    /* Reduced padding */
    margin: 0 auto;
    height: 90px;
    /* Reduced height */
    width: 200px;
    /* Narrower width */
    border-bottom-left-radius: 120px;
    /* Scaled to match new width/height */
    border-bottom-right-radius: 120px;
}


/* =============================
   OWL CAROUSEL STYLES
============================= */
.carousel-custom-main {
    padding: 20px 0;
    background-color: transparent;
}

.owl-element .cards {
    display: block;
    width: 270px;
    height: 380px;
    margin: 4rem auto;
    padding: 30px;
    line-height: 40px;
    border: 1px solid transparent;
    background-color: white;
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.owl-item.center>.owl-element .cards {
    height: 400px;
    margin-top: 3rem;
    opacity: 1;
    color: var(--primary-color);
    padding-bottom: 40px;
}

.cards img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    padding: 10px;
}

/* adjust the services h5 first page cards */
.cards h5 {
    text-align: center;
    font-size: 1rem;
    white-space: nowrap;
    /* ✅ Prevents line break */
    overflow: hidden;
    /* ✅ Hides anything overflowing */
    margin-top: 28px;
}

/* adjust the button of services first page cards */
.cards i {
    font-size: 55px;
    background: white;
    color: var(--primary-color);
    padding: 7px;
    border-radius: 50%;
    margin-left: 4.3rem;
    display: inline-block;
    margin-top: 20px;
}

/* =============================
   SLIDER SECTION
============================= */
.slider-container {
    position: relative;
    margin: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.slider {
    max-width: 100%;
    background: var(--primary-color);
    position: relative;
    margin-bottom: -8rem;
    text-align: center;
    padding: 0.5rem 0;
}

/* .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
} */


.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    background: #0063a6;
    height: 800px;
    /* 👈 Set to your desired height */
}


.slide {
    min-width: 100%;
    transform: translateY(-11rem);
    position: relative;
}

.hidden {
    display: none;
}

/* =============================
   ✅ Image Wrapper with Toggleable Buttons (Visible on Hover/Touch)
============================= */
.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.image-wrapper img {
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-wrapper .prev,
.image-wrapper .next {

    top: 40%;
    /* Adjust this percentage to move up or down */
    transform: translateY(-50%);
    background: none;
    /* No background */
    border: none;
    /* No border */
    color: #0063a6;
    /* Blue arrows */
    font-size: 30px;
    /* Big arrows */
    cursor: pointer;
    opacity: 1;
    /* Always visible */
    pointer-events: auto;
    /* Always clickable */
}

/* Position prev on the left */
.image-wrapper .prev {
    left: 8px;
}

/* Position next on the right */
.image-wrapper .next {
    right: 8px;
}


/* Show buttons on hover */
.image-wrapper:hover .prev,
.image-wrapper:hover .next {
    opacity: 1;
    pointer-events: auto;
}

/* Show buttons on keyboard focus */
.image-wrapper:has(:focus-visible) .prev,
.image-wrapper:has(:focus-visible) .next {
    opacity: 1;
    pointer-events: auto;
}


/* Touch Support: JavaScript required for mobile interaction */
.image-wrapper.touch-active .prev,
.image-wrapper.touch-active .next {
    opacity: 1;
    pointer-events: auto;
}



/* this is the button for content */
/*  Content Slide Button Styled Like Image Arrow */
.content-next {
    position: absolute;
    top: 50%;
    right: 30px;
    /* Distance from the right edge */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 22px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 5;
}

.content-next:hover {
    background-color: var(--light-blue);
}



/* =============================
   BUTTONS & SIDEBAR STYLES
============================= */
.scrollable-buttons {
    flex: 0.6;
    max-height: 500px;
    overflow-y: auto;
    direction: rtl;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.scrollable-buttons .button {
    background-color: #0063a6;
    color: white;
    padding: 65px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
    direction: ltr;
    height: 150px;
    transition: transform 0.3s ease;
}

.scrollable-buttons .button:hover {
    transform: scale(1.04);
}

.button a {
    color: white;
}

/* Scrollbar */
.scrollable-buttons::-webkit-scrollbar {
    width: 8px;
}

.scrollable-buttons::-webkit-scrollbar-track {
    background: var(--scroll-track);
    border-radius: 10px;
}

.scrollable-buttons::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb);
    border-radius: 4px;
}

.scrollable-buttons::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-hover);
}

/* =============================
   CONTENT AREA STYLES
============================= */
.container2 {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto 12rem;
    padding: 40px 0;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.container2 i {
    background-color: var(--primary-color);
    color: white;
    font-size: 60px;
    text-align: center;
    padding: 4px;
    height: 63px;
    width: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-left: 63.5%;
    margin-top: -30rem;
    transform: translateY(-7rem);
}

.content {
    flex: 2;
    padding: 20px;
    color: var(--primary-color);
}

.content h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.content p {
  margin-top: 0; /* removes gap between h1 and p */
  font-size: 12px;
}



.bottom-button-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.bottom-button-bar button {
    background-color: var(--light-blue);
    color: var(--text-blue);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bottom-button-bar button:hover {
    background-color: #d4eaf8;
    transform: translateY(-2px);
}

/* =============================
   CONTENT3 BLOCK
============================= */
.content3 {
    width: 50%;
    margin: 10px auto;
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box;
}

.content3 h5 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.content3 p {
    font-size: 12px;
    /* line-height: 1.8rem; */
    text-align: center;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}


/* Make sure your container is relative */
.container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #0063a6;
}

/* Content stays centered */
.container .content3 {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Curtain covers entire viewport */
.container .curtain-image {
    position: fixed;
    top: 400px;
    /* stays as you like */
    right: 0;
    width: 100vw;
    height: 65vh;
    background-size: contain;
    /* show entire image without cropping */
    background-repeat: no-repeat;
    background-position: right center;
    transform: translateX(99%);
    /* start hidden off-screen */
    z-index: 2;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}


.container .content-next {
    position: fixed;
    top: calc(400px + 20vh);
    /* 500px + half of 40vh */
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    background: #0063a6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    cursor: grab;
    user-select: none;
}

.container .content-next:active {
    cursor: grabbing;
}

/* =============================
   MOBILE LAYOUT Design for services page
   ============================= */
@media (max-width: 768px) {


    .content h1 {
        margin: auto;
        font-size: 20px;
        text-align: center;
    }


    .content p {
        margin: 40px auto 0px auto;
        font-size: 12px;
        text-align: justify;

    }

    .bottom-button-bar {
        display: none !important;
    }



    .container2 {
        display: flex;
        flex-direction: column;

    }


    .container2 i {
        display: block;
        position: relative;
        height: 50px;
        width: 60px;
        font-size: 40px;
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        padding: 4px;
        margin: -100px auto 10px auto;
        /* Pull up slightly & center */
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(0) !important;
        z-index: 1;
    }


    /* .scrollable-buttons {
        display: flex;
        flex-direction: row !important;
        
        overflow-x: auto !important;
       
        overflow-y: hidden !important;
        white-space: nowrap !important;
        
        gap: 10px;
        padding: 10px 15px;
        margin-top: 20px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
        background: transparent;
    } */

    .scrollable-buttons {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 10px;
  padding: 10px 40px 10px 10px; /* extra right padding to allow last button scroll */
  margin-top: 20px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  box-sizing: border-box;
}


    .scrollable-buttons .button {
        flex: 0 0 auto;
        display: inline-block;
        padding: 10px 24px;
        
        border-radius: 20px;
      
        font-size: 15px;
        /* Slightly larger font */
        font-weight: 500;
        background-color: #005bac;
        color: #ffffff;
        text-align: center;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        line-height: 1;
        height: auto;
        transition: background-color 0.3s ease;
    }


    .scrollable-buttons .button:hover {
        background-color: #0063a6;
    }

    /* Optional scrollbar styling */
    .scrollable-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .scrollable-buttons::-webkit-scrollbar-thumb {
        background-color: #99c0db;
        border-radius: 2px;
    }

    .scrollable-buttons::-webkit-scrollbar-track {
        background-color: #e0f0fb;
        border-radius: 2px;
    }


    /* this is perfect */
    .content3 {
        width: 90%;
        padding: 10px;
    }


    .content3 h5 {
        font-size: 20px;
    }

    .content3 p {
        font-size: 12px;
        text-align: justify;
    }

    .container {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;
        background: #0063a6;
    }

    /* change image size */
    .image-wrapper img {
        width: 250px;
        /* You can adjust based on your layout */
        height: 250px;
        /* Keeps it square and compact */
        object-fit: cover;
        /* Ensures image fills area nicely without stretching */
        border-radius: 10px;
        /* Optional: rounded corners for better look */
    }

    /* .container .curtain-image {
    top: 50%;
    height: 50vh;
    background-size: cover;
  } */

    /* .container .content-next {
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
  } */

    .container .content-next {
        display: none;
        /* Hide the content-next button on mobile */
    }

    /* subslider prev and next button */
    .image-wrapper .prev,
    .image-wrapper .next {
        top: 40%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #0063a6;
        font-size: 28px;
        cursor: pointer;
        opacity: 1;
        pointer-events: auto;
    }

    .owl-carousel {
        position: relative;
    }

    .owl-carousel .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex !important;
        justify-content: space-between;
        padding: 0 10px;
        /* Adjust horizontal distance from image */
        pointer-events: none;
        z-index: 10;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        background: var(--primary-color);
        border: none;
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: all;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        position: relative;
        font-size: 0;
        /* Hide default text */
        overflow: hidden;
    }

    /*  HIDE any remaining span text */
    .owl-carousel .owl-nav button.owl-prev span,
    .owl-carousel .owl-nav button.owl-next span {
        display: none !important;
    }

    /* Inject custom arrows */
    .owl-carousel .owl-nav button.owl-prev::before,
    .owl-carousel .owl-nav button.owl-next::before {
        content: '';
        font-family: "Arial", sans-serif;
        font-size: 42px;
        color: white;
        line-height: 1;
        display: block;
        pointer-events: none;
    }

    .owl-carousel .owl-nav button.owl-prev::before {
        content: '\2039';
        /* ‹ */
    }

    .owl-carousel .owl-nav button.owl-next::before {
        content: '\203A';
        /* › */
    }

    #services {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .container2.show-mobile {
        display: block !important;
    }

    .description {
        display: block;
        width: 120%;
        text-align: justify;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 1rem;
        /* padding-left: 50%; */
    }

    /* hide curtain image  */
    .container .curtain-image {
        display: none;
    }

    #section{
        margin-top: 80px;
    }

}

#fstsld, #fs, #gs {
    scroll-margin-top: 180px;
    /* adjust this value to fit your header or desired spacing */
}

/* section ends */

@media (max-width: 768px) {
  .scrollable-buttons .button:only-child {
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  /* .scrollable-buttons {
    justify-content: center;
  } */
}


/* footer starts */
