.tajawal-extralight {
    font-family: "Tajawal", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.tajawal-light {
    font-family: "Tajawal", sans-serif;
    font-weight: 300;
    font-style: normal;
    /* transform: scaleX(1.1); */

}

.readmore-text {
    display: inline-block;
    transform: translateY(2px);
    /* tweak until it looks optically centered */
}

.tajawal-fix {
    line-height: 1;
    position: relative;
    top: 2px;
    /* small tweak */
}

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

.tajawal-medium {
    font-family: "Tajawal", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.tajawal-bold {
    font-family: "Tajawal", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tajawal-extrabold {
    font-family: "Tajawal", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.tajawal-black {
    font-family: "Tajawal", sans-serif;
    font-weight: 900;
    font-style: normal;
}





nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2E3A46;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    /* z-index: 1000 !important; */
    z-index: 10 !important;
}


.logo {
    position: fixed;
    top: 20px;
    /* Aligns with the navbar */
    left: 5%;
    transform: translateX(-50%);
    z-index: 1001;
    /* Keeps logo above the navbar */
}

.logo img {
    /*max-height: 100px;*/
    /* Adjust based on how much should overlap */
    width: auto;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    /* color: #333; */

}

.navbar {
    /* background: linear-gradient(90deg, #2E3A46, #1C252C); */
    /* background: rgba(255, 255, 255, 0.95); */
    box-shadow: 0 2px 4px rgba(188, 187, 187, 0.291);
    /* box-shadow:inset -1px -1px 3px 1px rgba(188, 187, 187, 0.291); */
    transition: top 0.3s;
    height: 105px !important;
}

@media (max-width: 768px) {
    .navbar {
        height: 205px;
    }
}


.navbar-brand img {
    height: 50px;
}

/*.navbar-nav .nav-link {
    font-size: 16px;
    color: #FDFDFD !important;
    transition: color 0.3s ease;
}*/

.navbar-nav .nav-link {
    font-family: 'Tajawal', sans-serif;
    /* font-weight: 200; */
    font-size: 28px;
    /* color: #FDFDFD !important; */
    /* color: #333 !important; */
    position: relative;
    /* Needed for positioning the pseudo-element */
    display: inline-block;
    /* Ensures the pseudo-element scales correctly with text */
    overflow: hidden;
    /* Hides any overflow from the pseudo-element */
    padding-bottom: 0px;
    /* Add some space for the underline */
    transition: color 0.3s ease;
}

/* 👇 Media query for mobile devices */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 20px;
        /* smaller on mobile */
    }
}

/* Optional: Even smaller for very tiny screens */
@media (max-width: 480px) {
    .navbar-nav .nav-link {
        font-size: 18px;
    }
}


/* .navbar-nav .nav-link:hover {
    
} */


.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0px !important;
    padding-right: 0px !important;
    line-height: 1 !important;
}

.navItemPadding {
    padding-left: 3px !important;
    padding-right: 3px !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* Position at the bottom of the link */
    left: 0;
    width: 100%;
    height: .5px;
    /* Thickness of the underline */
    background-color: white;
    /* Color of the underline */
    transform: scaleX(0);
    /* Initially invisible */
    transition: transform 0.3s ease-out;
    /* Smooth transition for the line */
    transform-origin: left;
    /* Line appears from the left */
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
    /* Line becomes fully visible on hover */
    transform-origin: left;
    /* Ensure it grows from left */
}

.navbar-nav .nav-link:not(:hover)::after {
    transform-origin: right;
    /* Line disappears to the right on mouse out */
    transition: transform 0.3s ease-out;
    /* Same transition for consistency */
}

/*start new change*/

/* Initially hide the navbar but show the toggler */
/*.navbarHidden {
    transition: top 0.1s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    top: -105px;
 
}*/

.navbarHidden {
    transition: top 0.1s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    top: -205px;
    /* Mobile: because mobile navbar height is ~64px */
}

@media (min-width: 768px) {
    .navbarHidden {
        top: -105px;
        /* Desktop: full 105px */
    }
}


/* Show navbar when scrolled */
.navbar.show {
    opacity: 1;
    top: 0;
}

/* Ensure toggler button is always visible */
.navbar-toggler {
    position: fixed;
    top: 10px;
    /*right: 15px;*/
    z-index: 1050;
    border: none;
    border-radius: 0;

}

/*end new change*/
.navbar-toggler-OLDDDD {
    display: none;
    /* Initially hidden */
    border: none;
    outline: none;
    height: 50px;
}

.cta {
    background-color: #E63642;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.cta:hover {
    background-color: #b72a32;
}

.section {
    display: flex !important;
    /* flex-direction: column;*/
    align-items: center;
    opacity: 0;
    transform: translateY(50px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    padding: 3rem 2rem;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* .content {
    width: 80%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
} */

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.transform-left {
    transform: translateX(-100px);
    transition: transform 0.5s ease-in-out;

}

.transform-right {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;

}

.transform-right loaded {
    transform: translateX(0);
    opacity: 1;

}

.section img {
    opacity: 0;
}

/* This class will be added dynamically when the image comes into view */
.section img.show {
    opacity: 1;
    transform: scale(1);
}


.imgBig {
    width: 60% !important;

}

.imgSmallSize {
    width: 40% !important;
    /* border-radius: 10px;*/
}

.imgSize1 {
    width: 40% !important;

}

.imgSize2 {
    width: 45% !important;
}

.imgSize3 {
    width: 50% !important;

}

.imgSize4 {
    width: 55% !important;
}

.imgSize5 {
    width: 60% !important;
}

.imgSize5 {
    width: 65% !important;
}

.content:nth-child(2) {
    margin-top: 200px;
    /* Adjust this value as needed */
}

.text {
    width: 50%;
}

/* Footer */
footer {
    text-align: center;
    /* background-color: #2E3A46; */
    /* color: #FDFDFD; */
    color: #333;
    padding: 1.5rem;
    margin-top: 2rem;
}





.hero-section::before {
    content: "";
    /* position: absolute !important; */
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    /* z-index: 2; */
    /* transform: none !important; */
    /* background: rgb(142, 142, 142) !important;DARK */
    /* background: rgb(151, 151, 151) !important; LIGHT*/
    background: rgb(160, 160, 160) !important;
    /* box-shadow: 0 2px 4px rgba(188, 187, 187, 0.291); */
    /*LIGHTER */
    pointer-events: none;


    /* 👇 Add this line */
    /* background-image: url('file:///Users/renjithcj/Developer/frontend/static-sites/Aidango/images/palm-shadow.png');
    background-repeat: no-repeat;
    background-position: left center; 
    background-size: contain;  */



}

.leaf-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 150vh;
    /* adjust as needed */
    height: 150vh;
    opacity: 0.4;
    /* make it subtle */
    z-index: 3;
    /* on top of bg but below content if needed */
    pointer-events: none;
    /* so it doesn't interfere */
    filter: blur(15px);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.blurred-background::before {
    content: '';
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    /* adjust blur strength */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}



.hero-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: url('https://source.unsplash.com/600x800/?technology,ai') no-repeat center/cover;*/
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 50% 100%, 75% 50%, 50% 0);
    z-index: 11 !important;
    /* box-shadow: 0 2px 4px rgba(188, 187, 187, 0.291); */
    pointer-events: none;
}

.hero-content {
    /*max-width: 500px;*/
    /*margin-top: 130px;*/
    text-align: left;
    z-index: 2;
}

.word {
    display: inline-block;
    opacity: 0;
}

.wordBelImg {
    display: inline-block;
    opacity: 1;
}



.textTransform {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
}



.word {
    display: inline-block;
    opacity: 0;
}

.tagline {
    position: static;
    margin-top: 500px;
    margin-right: 150px;
    text-align: right;
    width: 400px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    transform: scaleX(1.1);
    position: static;
    /* margin-top: 200px;*/
    /*margin-top: 200px;*/
    margin-left: 60px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-size: 17px !important;
    line-height: 1 !important;
    /*margin: 50px 0 !important;*/
    margin-top: 55px !important;
    margin-bottom: 35px !important;
    margin-right: 0px !important;
    padding-bottom: 10px;
    /*font-weight: 200 !important;*/

}

@media (min-width: 768px) {

    .hero-subtitle {


        font-size: 28px !important;
        line-height: 1.2 !important;
        /*margin: 50px 0 !important;*/
        margin-top: 55px !important;
        margin-bottom: 35px !important;
        margin-right: 35px !important;
        /*font-weight: 200 !important;*/
    }
}

.heroSubTitleBtns {
    font-size: 25px !important;
    font-weight: 300 !important;
    margin-bottom: 20px !important;
}

.heroSubTitleBtnNext {
    font-size: 31px !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    margin-left: 35px !important;
    padding-right: 0px !important;
    border-color: black !important;
    /*margin-right: -25px !important;*/

}

.heroTitleFont {
    line-height: 1.8 !important;
    font-size: 52px !important;
    font-weight: normal !important;
    margin-bottom: 20px !important;
}


.hero-btn {
    display: inline-block;
    /*padding: 12px 24px !important;*/
    font-size: 1rem;
    color: white;
    background-color: #ff4f5a;
    border: #ff4f5a;
    background-color: #ff4f5a;
    border-radius: 0px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.hero-btn:hover {
    background-color: #d83642;
}

#heroContent {
    z-index: 2;
}

.hero-overlay-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(8, 8, 7, 0.80);*/
    /* background: rgba(0, 0, 0, 0.8); */
    /* background: #808080; */
    background: rgb(109, 109, 109);

    z-index: 2;
}



/* Futuristic, bold Orbitron for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: 'Arimo', sans-serif;*/
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.textWhite {

    color: #333 !important;

}

.blackBackground {
    background-color: black !important;
}

.items-right {
    align-items: end;
    padding-right: 20%;
    padding-left: 10%;

}


/*.navbar-toggler-icon {
    margin-top: 7px;
    margin-right: 35px;
    width: 80px;
   
    height: 100px;
   
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 50'><path stroke='rgba(230, 54, 66, 1)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='5' d='M4 10h22M4 20h22M4 30h22'/></svg>") !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}*/
.navbar-toggler-icon {
    margin-top: 7px;
    margin-right: 35px;
    width: 80px;
    height: 100px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 50'><path stroke='rgb(255, 255, 255)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='5' d='M4 10h22M4 20h22M4 30h22'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

@media (max-width: 768px) {
    .navbar-toggler-icon {
        margin-top: 4px;
        margin-right: 12px;
        width: 40px;
        height: 50px;
    }
}

.logoStyle {
    margin-top: 0px;
    height: 125px;
    margin-left: 35px;
}

.opacityZero {
    opacity: 0;
}

.heroHeight1 {
    height: 1250px !important;

}

.heroHeight2 {
    height: 800px !important;
}

.heroHeight3 {
    height: 660px !important;
}

:root {
    --container-width: clamp(320px, 90vw, 1920px, 2560px);
    --start-position: calc((100vw - var(--container-width)) / 2 + 1rem);
}



.hidden {
    display: none;

}

.visible {
    opacity: 1 !important;
}

.visible2 {
    display: block;
}

/* General styling for words */
.animateWordStyle {
    position: relative;
    display: flex;
    /* Prevents letter stacking */
    gap: 2px;
    /* Adds spacing between letters */
    white-space: nowrap;
    /* Prevents line break */
    text-shadow: none;
    filter: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: baseline;
}


/* General styling for words */
.animatioLoaded {
    transform: translateX(var(--start-position));

}

/* Letter Reveal Animation */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Word 1 - Letters appear sequentially */
.animateWord1 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(2.5s + 0.03s * var(--i));
    /* No extra delay */
}

/* Word 2 - Starts after Word 1 */
.animateWord2 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(1.6s + 0.03s * var(--i));
    /* 1s gap after Word 1 */
}

/* Word 3 - Starts after Word 2 */
.animateWord3 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(.7s + .03s * var(--i));
    /* 2s gap after Word 2 */
}


/* Slide Back Animation */
@keyframes slideBack {
    0% {
        transform: translateX(var(0));
    }

    100% {
        transform: translateX(var(--start-position));
    }
}


/* animate-word1 starts near end of container */
.animate-word1 {
    /*transform: translateX(calc(44vw + var(--start-position)));*/
    transform: translateX(calc((100vw - 90vw) / 2 + 43vw));
    will-change: transform;
    animation: slideBack 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 3.8s;
}

/* animate-word2 starts closer to the start */
.animate-word2 {
    /*transform: translateX(calc(16vw + var(--start-position) ));*/
    transform: translateX(calc((100vw - 90vw) / 2 + 17vw));
    will-change: transform;
    animation: slideBack 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 3.8s;
}

/* animate-word3 stays inside the container */
.animate-word3 {
    transform: translateX(var(--start-position));
}


@keyframes swipe {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.swipe-in {
    animation: swipe 0.8s ease-out forwards;
}







.beam {
    stroke: #e11d48;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px #ff0044);
    stroke-dasharray: 1350;
    stroke-dashoffset: 1350;
    animation: growPath 5s linear forwards;
}

@keyframes growPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeOutDot {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*image {
    animation: fadeOutDot 1s ease-out forwards;
    animation-delay: 5s;
}*/




.hot-path {
    stroke: #e11d48;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px #ff0044);
}


@keyframes fadeOutDot {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*circle {
    fill: #ff1a1a;
    stroke: #ff6666;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px #ff0000);
    animation: fadeOutDot 2s ease-out forwards;
    animation-delay: 4.5s;
}*/







@keyframes heatTrail {
    0% {
        stroke: #300000;
    }

    100% {
        stroke: #e11d48;
        filter: drop-shadow(0 0 8px #ff0044);
    }
}





@keyframes heatTrail {
    0% {
        stroke: #300000;
    }

    100% {
        stroke: #e11d48;
        filter: drop-shadow(0 0 8px #ff0044);
    }
}

@keyframes fadeOutLine {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



.beam.animate-heat {
    animation: heatTrail 4.5s forwards, fadeOutLine 5s forwards;
    animation-delay: 0s, 4.5s;
    /* heat starts immediately, fade starts after */
}


.slide2Background {
    width: 100%;
    height: 100%;
    background-image: url('images/bk13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 2;
    /* Behind your content */


}



.invisible {
    opacity: 0;
}

.visibleWrong {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 1;
}










@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}





.menuItemFont {
    font-family: 'Tajawal', sans-serif;
    font-weight: 200;
    font-size: 28px !important;
}






.hero-titleSVG {
    font-size: 42px;
    /*4.5rem*/
    font-family: 'Tajawal', sans-serif;
    font-weight: 300;
    font-style: normal;
    transform: scaleX(1.2);
    fill: white !important;
    color: white !important;
    line-height: 1.2;
    /* Correct way */

}

.hero-titleSVG-sml {
    font-size: 22px;
    /*4.5rem*/
    font-family: 'Tajawal', sans-serif;
    font-weight: 300;
    font-style: normal;
    transform: scaleX(1.2);
    fill: white !important;
    color: white !important;
    line-height: 1.2;
    /* Correct way */

}



.word1 .line,
.word2 .line,
.word3 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    background-color: #e30404;
    transform-origin: 0% 100%;
    bottom: 0;
    transition: none !important;
}

svg circle.pin {
    opacity: 1 !important;
    /* Make sure opacity is 1 */
    transition: none !important;
    /* Disable transition if not needed */
    z-index: 4 !important;
}


#world-map {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}


#svg-tooltip {
    transition: opacity 0.2s;
    white-space: nowrap;
}





.svg2 {
    width: 100vw;
    height: 100vh;
    display: block;
}

.step-labelStatic {
    opacity: 1;
    color: #333 !important;
    font-size: 50px;

}

/* Letter Reveal Animation */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Word 1 - Letters appear sequentially */
.step-label.visible tspan {
    display: inline-block;
    opacity: 1;
    animation: letterReveal .01s ease-in forwards;
    animation-delay: calc(.0s + 0.03s * var(--i));

    /* No extra delay */
}

.step-label {
    opacity: 1;
    transform: translateX(0px);

    color: white !important;
    /*font-size: 50px;*/
}

.step-label2.visible {
    opacity: 1;
    transform: translateX(0);
}



svg.fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#animationOverlay {

    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    /* optional if you want a dark bg */
}

svg {
    width: 100%;
    height: 100%;
}




.pin-group {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    transform-origin: bottom center;
}

.pin-group:hover {
    transform: scale(1.4);
}


.pin-icon {
    cursor: pointer;
}


.btn-custom-opacity {
    background-color: rgba(214, 215, 209, 0.75);
    padding-top: 10px;
    padding-bottom: 2.5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;

}

.btn-custom-opacity:hover {
    background-color: rgba(214, 215, 209, 0.48);
    /* Keep the same background color on hover */
    color: black;
    /* Ensure the text color stays black */
    opacity: 0.9;
    /* Optional: Add a slight opacity change for a subtle hover effect */
}

.rightArrowIcon {
    height: 40px;
    margin-left: 5px;
    padding-bottom: 5px;
}







@keyframes slideInLeft-mobile {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInRight-mobile {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-250px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(290px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/*-250 and 290*/

.slide-in-hidden {
    opacity: 0;
    transform: translateX(-10px);

}

@media (min-width: 768px) {
    .slide-in-hidden {
        opacity: 0;
        transform: translateX(-250px);

    }
}

.slide-in-right-hidden {
    opacity: 0;
    transform: translateX(10px);
}

@media (min-width: 768px) {
    .slide-in-right-hidden {
        opacity: 0;
        transform: translateX(290px);
    }
}




.slide-in-show {
    animation: slideInLeft-mobile 1s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-show {
        animation: slideInLeft 1s ease-out forwards;
    }
}



.slide-in-show-fast {
    animation: slideInLeft-mobile .5s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-show-fast {
        animation: slideInLeft 1s ease-out forwards;
    }
}





.slide-in-right-show {
    animation: slideInRight-mobile 1s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-right-show {
        animation: slideInRight 1s ease-out forwards;
    }
}



.slide-in-show-slow {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right-show-slow {
    animation: slideInRight 1s ease-out forwards;
}

.swiper {
    margin: 0 !important;

}

.swiper-wrapper {
    max-width: 100vw;
}

.swiper-slide {
    width: 100% !important;
    max-width: 100vw;
}



.sliderItemMobPadding {
    margin-top: 600px;
    padding-right: 50px;
}

.sliderNextBtnPadding {
    margin-top: 500px;
    padding-right: 0px;
}

@media (min-width: 768px) {
    .sliderNextBtnPadding {
        margin-top: 600px;
        padding-right: 70px;
    }
}


.contentSectionFont {
    /*font-family: 'Tajawal', sans-serif;
    font-weight: 200;*/
    font-size: 21px !important;
}

@media (min-width: 768px) {
    .contentSectionFont {
        /* font-family: 'Tajawal', sans-serif;
        font-weight: 200;*/
        font-size: 24px !important;
    }
}

@media (min-width: 2560px) {
    .contentSectionFont {
        /* font-family: 'Tajawal', sans-serif;
        font-weight: 200;*/
        font-size: 28px !important;
    }
}


.leftSectionTextSize {
    /*font-family: 'Tajawal', sans-serif;
    font-weight: 200;*/
    font-size: 20px !important;
}

@media (min-width: 768px) {
    .leftSectionTextSize {
        /* font-family: 'Tajawal', sans-serif;
        font-weight: 200;*/
        font-size: 40px !important;
    }
}

@media (min-width: 2560px) {
    .leftSectionTextSize {
        /* font-family: 'Tajawal', sans-serif;
        font-weight: 200;*/
        font-size: 45px !important;
    }
}

.ytVideoSec {
    width: clamp(480px, 80vw, 1500px);
    height: clamp(200px, 35vw, 650px);
    z-index: 10;
}

/* .ytVideoSec {
    width: 1500px;
    height: 650px;
    z-index: 10;
}

@media (max-width: 480px) {
    .ytVideoSec {
        width: 480px;
        height: 200px;
        z-index: 10;
    }
}

@media (min-width: 768px) {
    .ytVideoSec {
        width: 1500px;
        height: 650px;
        z-index: 10;
    }
}

@media (min-width: 2560px) {
    .ytVideoSec {
        width: 1700px;
        height: 850px;
        z-index: 10;
    }
} */
.contactMapSec {
    width: clamp(300px, 40vw, 1200px);
    aspect-ratio: 2 / 1;
}


/* .contactMapSec {
    width: 900px;
    height: 450px;
}

@media (max-width: 480px) {
    .contactMapSec {
        width: 300px;
        height: 150px;
    }
}

@media (min-width: 768px) {
    .contactMapSec {
        width: 900px;
        height: 450px;
    }
}

@media (min-width: 2560px) {
    .contactMapSec {
        width: 1200px;
        height: 550px;
    }
} */


.tajawal-light-nonscaled {
    font-family: "Tajawal", sans-serif;
    font-weight: 300;
    font-style: normal;


}

@media (min-width: 768px) {
    .tajawal-light-nonscaled {
        font-family: "Tajawal", sans-serif;
        font-weight: 300;
        font-style: normal;
        transform: scaleX(1.1)
    }
}


@media (min-width: 768px) {
    .getStartedBtn {
        height: 34px;
    }
}

.paddingContact {
    padding-left: 2px;
    padding-right: 2px;
}

@media (min-width: 768px) {
    .paddingContact {
        padding-left: 30px;
        padding-right: 20px;
    }
}



.servicesContentBackground {
    /* background: rgba(32, 32, 32, 0.487); */

    padding: 10px;
    margin: 10px;
    background: none !important;
    backdrop-filter: blur(7px) !important;
}

@media (min-width: 768px) {

    .servicesContentBackground {
        /* background: rgba(32, 32, 32, 0.487); */
        padding: 15px !important;
        margin: 15px !important;
        background: none !important;
        backdrop-filter: blur(7px) !important;
    }
}



.productsTitles {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    /*transform: scaleX(1.1);*/

}

@media (min-width: 768px) {

    .productsTitles {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.2;
        transform: scaleX(1.1);

    }
}

.textTrabsform {

    transform: scaleX(1.1);

}

@media (min-width: 768px) {

    .textTrabsform {

        transform: scaleX(1.1);

    }
}


/* --- CSS for Shrinking and Floating Content within Hero Section --- */

/* Apply transitions and transform-origin to the parent div directly */
#heroTitleSVG {
    transition: transform 0.1s linear;
    /* Faster, linear transition for smoother continuous effect */
    transform-origin: center center;
    /* For left alignment */
    /* Ensure it's a block or inline-block for transform to work consistently */
    display: block;
}

#rightColumnTopImage,
#rightColumnBottomContent,
#aboutLeftColumnImage {
    /* Apply to both right column halves */
    transition: transform 0.1s linear;
    /* Faster, linear transition */
    transform-origin: center center;
    /* Ensure scaling is from the center */
}


/* This is your background div */
.parallax-background-section {
    width: 100%;
    height: 100vh;
    /* Make it full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    /* z-index: 10; */
    /* color: white; */
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Set the background image directly in CSS for initial load */
    /* background-image: url('images/bg-01.jpeg'); */
    /* Replace with your actual image URL */
    background-size: cover;
    background-position: center center;
    /* Initial position */
    background-repeat: no-repeat;
    /* No background-attachment: fixed; here */
    position: relative;
    /* Needed for absolute positioning of content if desired, or for z-index */
    overflow: hidden;
    /* Hide overflow if background moves */
}

/* This div will hold the content that moves over the background */
.parallax-background-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Ensure content is above background */
}



@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 1.8s ease-out .5s forwards;
}


.delayed-content {
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1s forwards;
}



/* CSS for Slide Up Animation */
.slide-up-initial {
    opacity: 0;
    transform: translateY(500px);
    /* Start 20px below its final position */
    transition: none;
    /* No transition initially, so it doesn't animate from 0,0 */
}

.slide-up-active {
    opacity: 1;
    transform: translateY(0);
    /* End at its final position */
    transition: opacity 4s ease-out transform 4s ease-out;
    /* Smooth transition */
}




/*New CSS for scrolling middle section*/
/* The main container that enables scrolling */
.scroll-container {
    /* Height will be set by JS based on scrollDistancePerPage */
    position: relative;
    /* Needed for sticky children */
    /* background-color: #000; */
}

/* The sticky wrapper that holds the visible content */
.sticky-wrapper {
    position: sticky;
    top: 0;
    /* Sticks to the top of the viewport */
    height: 100vh;
    /* Occupies full viewport height */
    overflow: hidden;
    /* Crucial to hide content outside the viewport */
    display: flex;
    /* Make it a flex container */
    align-items: center;
    /* Vertically center its child (content-pages-container) */
    justify-content: center;
    /* Horizontally center its child */
}

/* Container for all individual content pages/slides */
.content-pages-container {
    position: relative;
    /* Changed from absolute to relative to participate in flex centering */
    width: 100%;
    height: 100%;
    /* Takes full height of sticky-wrapper */
    display: flex;
    flex-direction: column;
    /* Pages stack vertically */
    justify-content: center;
    /* Vertically center the stack of pages */
    align-items: center;
    /* Horizontally center the stack of pages */
    /* No transform here anymore, it's applied to inner-pages-scroller */
    transition: none;
    /* Ensure no transition on this container itself */
}

/* NEW: Inner wrapper that will be transformed to scroll the pages */
.inner-pages-scroller {
    width: 100%;
    height: 100%;
    /* Takes full height of content-pages-container */
    display: flex;
    flex-direction: column;
    /* This is the element that will be transformed by JS */
    transform: translateY(0);
    transition: transform 0.1s linear;
    /* Smooth movement when changing pages */
}


/* Individual page/slide for content */
.page {
    width: 100%;
    min-height: 100vh;
    /* Use min-height to ensure it takes full viewport height */
    display: flex;
    flex-direction: row;
    /* Left and right columns */
    align-items: center;
    /* Vertically centers text columns within the page */
    justify-content: center;
    /* Horizontally centers text columns within the page */
    padding: 0 5%;
    /* Horizontal padding for content */
    box-sizing: border-box;
    /* Include padding in width */
    position: relative;
    /* Needed for z-index or potential future absolute children */
}

/* Common styling for text columns */
.text-column {
    width: 50%;
    /* Each column takes half width */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    /* Make text column a flex container */
    flex-direction: column;
    justify-content: center;
    /* Vertically center content within column */
    height: 100%;
    /* Take full height of page */
    overflow: hidden;
    /* Crucial to hide text as it scrolls in/out of its own boundary */
}

/* NEW: Inner wrapper for text content that will be animated */
.text-content-wrapper {
    width: 100%;
    will-change: transform, opacity;
    /* Optimize for animation */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* Smoother transitions (increased from 0.6s to 1s) */
    /* Initial state for inactive pages (hidden and off-screen) */
    opacity: 0;
    transform: translateY(100px);
    /* Start off-screen bottom, relative to its own container */
}


.left-text {
    text-align: left;
    padding-right: 40px;
    /* Space between columns */
}

.right-text {
    text-align: right;
    padding-left: 40px;
    /* Space between columns */
}

/* No longer using .active class for continuous animation */
/* .text-column.active {
            opacity: 1;
            transform: translateY(0);
        } */

.text-column h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    /* White text */
}

.text-column p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    /* Lighter white text */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .page {
        flex-direction: column;
        /* Stack columns on mobile */
        padding: 0 5%;
    }

    .text-column {
        width: 100%;
        /* Full width on mobile */
        height: auto;
        /* Auto height on mobile */
        padding: 10px 0;
        /* Adjust padding */
        text-align: center;
        /* Center text on mobile */
    }

    .text-column h2 {
        font-size: 2rem;
    }

    .text-column p {
        font-size: 1rem;
    }
}


/* #heroTitleSVG,
#rightColumnTopImage,
#heroBG,
#rightColumnBottomContent,
#aboutLeftColumnImage,
#aboutRrightColumnSection {
    will-change: transform;
} */
/* #heroTitleSVG,
#heroBG,
#rightColumnTopImage,
#rightColumnBottomContent,
#aboutLeftColumnImage,
#aboutRrightColumnSection {
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.2s ease-out; 
} */


/* #heroTitleSVG,
#heroBG,
#rightColumnTopImage,
#rightColumnBottomContent,
#aboutLeftColumnImage,
#aboutRrightColumnSection {
    backface-visibility: hidden;
} */

/* #heroBG {
    transform: translateY(0px);
    will-change: transform;
    backface-visibility: hidden;
}
*/
/* #heroTitleSVG,
#rightColumnTopImage,
#rightColumnBottomContent,
#aboutLeftColumnImage,
#aboutRrightColumnSection {
    transform: scale(1) translateY(0px);
    transition: transform 0.2s ease-out;  
    will-change: transform;
    backface-visibility: hidden;
} 
#heroTitleSVG,
#copyRightContent,
#rightImage,
#heroBGImage,
#rightBottomContent,
#aboutSecLH,
#aboutSecRH {
    will-change: transform;
} */






.text-content-wrapper {
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.fullPanel {
    height: 100vh;
    /* overflow: hidden;
    position: relative; */
}


.panel-container {
    /* position: relative;
  height: 100vh;
  overflow: hidden; */
}

.panel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.panel.active {
    opacity: 1;
    pointer-events: auto;
    /* z-index: 2; */
}

.left,
.right {
    /* width: 45%; */
    opacity: 0;
}


/* html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
    } */

/* #smooth-wrapper {
      height: 100%;
      overflow: hidden;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
    } */

/* #smooth-content {
      will-change: transform;
    } */

/* section {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      font-family: sans-serif;
    } */

.navbar-close-icon {
    margin-top: 7px;
}

@media (max-width: 768px) {
    .navbar-close-icon {
        display: block;
        margin-top: 7px;
        margin-right: 1px;
        width: 80px;
        height: 35px;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg>");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
}

#projectsSection {

    width: 1300px;


}

@media (max-width: 1920px) {
    #projectsSection {

        width: 1300px;


    }
}

@media (max-width: 2048px) {
    #projectsSection {

        width: 1600px;


    }

}

@media (max-width: 2560px) {
    #projectsSection {

        width: 1900px;


    }
}