@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

:root{
    --pr-color: #fff;
    --second-color: #0a0a0a;
    --cubicbz: cubic-bezier(.9, 0, .1, 1);
    --fz-big: 60px;
    --pd: 50px;

    --raisin-black: hsla(231, 10%, 14%, 1);
    --roman-silver: hsla(229, 10%, 57%, 1);
    --eerie-black: rgb(17, 18, 17);
    --black: hsla(0, 0%, 0%, 1);
    --white: rgb(255, 255, 255);

    --fw-800: 800;

    --transition-2: 0.5s ease;

    --section-padding: 100px;

    --fs-2: 4.5rem;  
    --fs-4: 2.4rem;  
    --fw-700: 700;   
    
    --cubic-ease-out: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100vw;
    height: 100%;
    background: #161616;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis {
    height: auto;
}

.nav{
   
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2em 1em 2em 2em;
    font-family: "Montserrat";
}



.logo img{
    height: 20px;
    cursor: pointer;
}

.nav > * {
    position: relative;
}

.header {
    width: 100%;
    height: 30vh;
    padding: 2em;
    display: flex;
    align-items: center;
}

.header .col{
    width: 60%;
}

.header .col:nth-child(2){
    width: 40%;
}

.header h1{
    position: relative;
    font-family: "Montserrat";
    font-size: 100px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: #fff;

}

/* Wrapper*/

.play-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    border: 3px solid #fff;
    background-color: #161616;
    background-size: cover;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 24px; /* Adjust font size as needed */
}

.text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 500;
}

.text {
    position: absolute;
    display: flex;
    opacity: 0;
    color: #fff;
}

.text span {
    opacity: 0;
    transform: translateY(100%);
    display: inline-block;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.text.active span {
    animation: textEnter 1s forwards;
}

.text.exit span {
    animation: textExit 0.5s forwards;
    animation-delay: var(--delay);
}

@keyframes textEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textExit {
    to {
        transform: translateY(-100%);
    }
}

@keyframes bounce-horizontal {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-10px);
    }
    60% {
        transform: translateX(-5px);
    }
}

/********************************************************************************/
.play-btn ion-icon{
    color: #dfff6d;
}

.pattern{
    text-align: center;
    padding: 1em 0;
    letter-spacing: 10px;
    opacity: 0.2;
    color: #d4ff3f;
}

.copy p{
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;

}

.btn-container{
    width: 100%;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -2em;
    position: relative;
    z-index: 0;
}

.btns{
    display: flex;
}

.btn{
    border: 1px solid #ffffff;
    margin-right: 1em;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: 300;
}

.btn span{
    color: #fff;
}

.btn ion-icon{
    color: #fff;
}

.divider{
    width:70%;
}

.hr{
    width: 100%;
    height: 1px;
    background: #d4ff3f;

}

.hero {
    position: relative;
    width: 95%;
    height: 70vh;
    border-radius: 40px;
    margin: 2em auto;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
    align-items: flex-start;

   
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    top: 0;
    margin-top: 0;
    transition: top 0.5s ease-out, margin-top 0.5s ease-out;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0,0,0,0));
  
}

.parallax{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.hero-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    top: -50px; /* Move the circle to overlap the top section */
    background-color: rgb(0, 0, 0); 
    border-radius: 50%;
    border-color: #d4ff3f;
    border-width: 1em;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
   
    
}

#curve {
    fill: transparent;
}

.rotate-text {
    fill: white;
    font-size: 12px;
    transform-origin: 50% 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.ion-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/*.arrow{
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid rgb(45, 45, 45 );
    border-radius: 100%;
    background: #171717;
    top: -1.4em;
    right: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #d4ff3f;
    font-family: "Dahlia";
    cursor: pointer;
    margin-top: 10px;
}*/



/*********************************************
*                                            *
*                                            *
*                                            *
         MENU SECTION / NAVIGATIONAL BAR  
*                                            *
*                                            *   
*                                            *
**********************************************/




.nav-logo img {
    height: 30px; /* Adjust as needed */
    position: absolute;
    width: auto;
    padding: 40px;
    cursor: pointer;
}

.nav-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #161616; /* Background color for visibility */
    position: fixed; /* Stay at the top */
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px; /* Optional padding */
    z-index: 999;
}


.menu-open{
    color: #fff;
    position: relative; /* Needed to position the pseudo-element */
    font-size: 20px;
    cursor: pointer;
    display: flex;
   

}

.nav-container{
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: block;
    z-index: 1000; /* Change this to 'block' or another suitable display value */
   
}

 .menu-close{
    
    color: #000;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
 
  
}

.menu-open::after {
    content: "";
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 0;
    width: 0;
    height: 3px;
    background-color: #d4ff3f; /* Change this to your desired color */
    transition: width 0.3s ease-in-out; /* Adjust the transition duration as needed */
    border-radius: 20px;
}

.menu-close::after {
    content: "";
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 0;
    width: 0;
    height: 3px;
    background-color: #000000; /* Change this to your desired color */
    transition: width 0.3s ease-in-out; /* Adjust the transition duration as needed */
}

.menu-open:hover::after {
    width: 100%;
}

.menu-close:hover::after {
    width: 100%;
}

.menu-icon, .close-icon {
    display: inline-block;
    width: 25px; /* Adjust according to your image size */
    height: 25px; /* Adjust according to your image size */
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px; /* Adjust spacing between icon and text */
    
}

.menu-icon {
    background-image: url('Assets/Images/hero/menu-icon-new.svg'); /* Replace with your menu icon image */
}

.close-icon {
    background-image: url('Assets/Images/hero/close_icon.svg'); /* Replace with your close icon image */
}


.socials {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 40px 100px;
}

.socials span{
    text-transform: uppercase;
    margin: 0 20px;
}

.menu__item{
    position: relative;
    padding: 0 6vw;
}

.menu__item-link{
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: opacity 0.4s;
    color: #000;
    text-decoration: none;
}

.menu__item-link::before {
    all: initial;
    position: absolute;
    bottom: 60%;
    left: 0;
    pointer-events: none;
}

.menu__item-link:hover{
    transition-duration: 0.1s;
    opacity: 0;
}

.menu__item-img{
    z-index: 2;
    pointer-events: none;
    position: absolute;
    height: 12vh;
    max-height: 600px;
    opacity: 0;
    left: 8%;
    top: 10%;
    transform: scale(0);
}

.menu__item-link:hover + .menu__item-img{
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s;
}

.menu{
    padding: 10vh 0 25vh;
    --offset: 20vw;
    --move--initial: calc(-25% + var(--offset));
    --move--final: calc(50% + var(--offset));
    font-size: 7vw;
}

.marquee{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: rgba(175, 175, 175, 0.2);
    pointer-events: none;
}

.marquee__inner{
    width: fit-content;
    display: flex;
    position: relative;
    opacity: 0;
    transition: all 0.1s;
    transform: translateX(60px);

}

.menu__item-link:hover ~ .marquee .marquee__inner{
    opacity: 1;
    transform: translateX(0px);
    transition-duration: 0.4s;

}

.menu__item-link, .marquee span{
    white-space: nowrap;
    font-size: 7vw;
    padding: 0.1vw;
    line-height: 1.15;
    
}

.marquee span {
    font-style: italic;
}

.menu__item.projects-menu-item .menu__item-link {
    color: #d3d3d3; /* Lighter grey color */
    cursor: default; /* Change cursor to default */
}

.menu__item.projects-menu-item .updating-text {
    font-size: 1.5vw; /* Adjust size as needed */
    color: #d3d3d3; /* Lighter grey color */
    text-align: center;
    margin-top: 1vh; /* Space between the link and the updating text */
}




/******************************************

                 SCROLL BAR 

******************************************/

/* Custom scrollbar styles for webkit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 2px; /* Width of the scrollbar */
    
}

::-webkit-scrollbar-track {
    background: #161616; /* Black background for the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff; /* Yellow color for the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #161616; /* Adds some padding around the thumb with the black background */
}

/* Custom scrollbar styles for Firefox */
html {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: #ffffff #161616; /* Yellow thumb and black track */
}

body.hidden-scrollbar {
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/************************************************

            Greeting Section

*************************************************/

/* this is for the language greeting section for the page */

.wrapper {
    /* border: 1px solid black; */
    width: 100%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 100px;
    margin-top: 5rem;
    /* overflow: hidden; */
    /* flex-wrap: nowrap; */
    /* align-items: center; */
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0)
    );
}

.inner {
    display: flex;
    width: 100%;
    position: absolute;
    justify-content: space-around;
    white-space: nowrap; /* Ensure items don't wrap */
}
 
@keyframes scrollLeft{
    to{
        left: -200px;
    }
}

.item {
    
    font-size: 2.4rem;
    height: 100px;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    color: rgb(255, 255, 255);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.item1{
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2{
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3{
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4{
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5{
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6{
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7{
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8{
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

/**********************************************

               Smooth Scrool                 
                
***********************************************/

[data-hidden] {
    opacity: 0;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/**********************************************

                Text                 
                
***********************************************/
.container-text {
    max-width: 156.6rem;
    margin-inline: auto;
    padding-inline: 2.4rem;
}

.text-block {
    margin-top: 14rem;
    margin-bottom: 14rem;
}

.text-block__content {
    max-width: 44ch;
}

.text__effect {
    position: relative;
}
.text__overlay {
    display: block;
    position: absolute;
    height: 101%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #161616;
    opacity: 0.7;
    transform-origin: center right;
}

.p-text {
    font-size: 3.4rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
    color: white;
}

/**********************************************

                Text  Two               
                
***********************************************/
.page-container {
    background-color: #fff; /* Set the background color for the entire page */
    padding: 20px; /* Optional: Add padding for spacing */
}
.container-text-s {
    max-width: 156.6rem;
    margin-inline: auto;
    padding-inline: 2.4rem;
}

.text-block-s {
    margin-top: 14rem;
    margin-bottom: 14rem;
    background-color: #fff;
}

.text-block__content-s {
    max-width: 44ch;
}

.text__effect-s {
    position: relative;
}
.text__overlay-s {
    display: block;
    position: absolute;
    height: 101%;
    width: 100%;
    top: 0;
    left: 0;
    opacity:0;
    transform-origin: center right;
}

.p-text-s {
    font-size: 3.4rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
    color: #000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.3s ease-out;
}

.p-text-s.active {
    opacity: 1;
    transform: translateY(0);
  }


/**********************************************

                SERVICE SECTION                  
                
***********************************************/


.service_section{
    height: 100vh;
    width: 100%;
}
.container_service{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 5%;
    margin-top: 50px;
}

.service_wrapper{
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    width: 100%;
}

.service_wrapper .content{
    display: flex;
    gap: 10px;
    width: 100%;
}

.service_wrapper .content div {
    width: 100%;
}

.service_wrapper .content .service_service_title{
    font-size: 1.6em;
    text-transform: uppercase;
    background: linear-gradient(90deg , #e7ff61 0% , #e6fb03 100%);
    -webkit-background-clip:text;
    background-clip: text;
    -webkit-text-fill-color:transparent;
    font-weight: 600;
}

.service_wrapper .content .service_h3{
    font-size: 3.8rem;
    color: #ffffff;
    line-height: 5.5rem;
    width: 100%;
}

.service_wrapper .content .service_p{
    width: 80%;
    color: #ddd;
    margin: 10px 0;
}

.service_container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 70px;

}


.service {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
  
.service.active {
    opacity: 1;
    transform: translateY(0);
}

.service_container .service{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 70px;
}



.service_container .service .service_Title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 42px opx;
    border-bottom: 0.8px solid rgba(131,131,131,1);
    transition:1s;
    position: relative;
}



.service_container .service .service_Title img {
    width: 350px;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50% , -50%) rotate(10deg);
    opacity: 0;
}


.image_show{
    opacity: 1 !important;
    filter: blur(5px);
    animation: showImg 0.6s forwards linear;
}

@keyframes showImg{
    100%{
        filter: blur(0px);
        transform: translate(-50%, -50%) rotate(9deg);
    }
}

.service_container .service .service_Title .service_h2{
   font-size: 50px;
   letter-spacing: 0.6px;
   color:#fff;
   font-weight: 500; 
}

.service_container .service .service_Title i{
    font-size: 2.3rem;
    color:#fff;
}

@keyframes slide {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%)
    }
}


/**********************************************

                ABOUT SECTION                
                
***********************************************/

.connect {
   /* Adjust to your theme */
   color:#000;
   height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.connect-content {
    max-width: 1200px; /* Adjust as needed */
}

.connect-heading{
    color: #000;
}
.connect h1 {
    font-size: 7em; /* Increase font size */
    margin-bottom: 0.5em; /* Add space between h1 and paragraphs */
    text-transform: uppercase;
    -webkit-text-stroke: #626262; /* Outline with dim color */
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease, text-stroke 0.3s ease;
    line-height: 1; /* Ensure single line height */
}

.get-to-know-arrow {
    display: block; /* Display as block to occupy full width */
    font-size: 7em; /* Double the font size for a tag */
    text-decoration: none;
    text-transform: uppercase;
    color:  #000; /* Adjust to your theme */
    position: relative; /* Relative positioning for arrow */
    margin-top: 0.5em; /* Adjust top margin as needed */
}

.get-to-know-arrow ion-icon {
    margin-left: 0.3em; /* Space between text and arrow */
    font-size: 2em; /* Adjust icon size */
    vertical-align: middle; /* Align icon vertically */
    color: #000;
}

.get-to-know-arrow:hover ion-icon {
    animation: bounce-horizontal 1s infinite;
}


.get-to-know-arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--black); /* Underline color */
    transition: width 0.3s ease; /* Smooth transition for underline */
}

.get-to-know-arrow:hover::after {
    width: 100%; /* Full width on hover */
}

.color-filled {
    color: rgb(0, 0, 0); /* Filled white color */
    -webkit-text-stroke: 0; /* Remove outline */
}


/**********************************************

            Full Width Image                 
                
***********************************************/

.fullwidth-image {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    clip-path: polygon(5% 10%, 95% 10%, 95% 90%, 5% 90%);
}

.fullwidth-image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;

    /* transform: translateY(-20%); */
}

.fullwidth-image__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: black;
    opacity: 0;
}

.fullwidth-image__text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: white;
}

.fullImageTitle {
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.fullwidth-image .fullImageTitle {
    font-size: 3.4rem;
    margin-bottom: 1.6rem;
}

.fullwidth-image .para {
    font-size: 2.4rem;
    max-width: 48ch;
}

.full-image {
    /* max-width: 100%; */
    height:fit-content;
    object-fit: cover; 
    overflow:visible;
}

.para {
    font-size: 4.8rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
    color: white;
}


/**********************************************

                FOOTER SECTION                  
                
***********************************************/
  
 
 
footer{
    width: 100%;
    position: relative;
    color: #ffffff;
    padding: 100px 0 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    font-size: 16px;
    line-height: 20px;
    background-color: #000000;
    font-family: "Montserrat";
    
}

.footer-row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-col{
    flex-basis: 25%;
    padding: 10PX;
}

.footer-col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

.footer-logo{
    width: 150px;
    margin-bottom: 30px;
}

.footer-col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px; 
    color: #ffffff;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px; /* Adjust the thickness of the line */
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li{
    list-style: none;
    margin-bottom: 12px;
}

ul li a{
    text-decoration: none;
    color: #fff;
}

form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
/* icon*/

form ion-icon{
    font-size: 20px;
    margin-right: 10px;
}

form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

form button ion-icon{
    font-size: 20px;
    color: #ccc;
}

.social-icons ion-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.footer-hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
}


/**********************************************

            Responsive Styles                 
                
***********************************************/

@media (max-width: 1800px) {  /*##############################################################################################################################################*/
    .text-container {
        font-size: 30px;
    }

    .header h1 {
        font-size: 80px;
        width: 100%;
    }
    .copy {
        width: 100%;
        margin: 0 auto;
    }
    .btn-container {
        margin-top: 20px;
    }

    /*SECTION TEXT*/
    section.text-block .p-text {
        font-size: 2.5rem;
        padding: 16px;
    }

    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 6rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 3.2rem;
    }

    .fullwidth-image__text .para {
        font-size: 2.4rem;
        max-width: 100%;
    }
}

@media (max-width: 1500px) {  /*##############################################################################################################################################*/

    .service_container .service .service_Title img{
        width:250px;
    }

}

@media (max-width:1400px){ /*############################################################################################################################*/
    .service_wrapper .content{
        flex-direction: column;
    }

    .service{
        margin-bottom: 40px;
    }
}

@media (max-width: 1200px) {  /*##############################################################################################################################################*/
    #page3-top h4 {
        font-size: 1.5vw;
    }

    #page3-top h4 span {
        font-size: 1vw;
    }

    #page3-top h2 {
        font-size: 3.5vw;
    }

    #page3-elements {
        height: auto;
        margin-top: 4vw;
    }

    #page3-elements .box {
        height: 33vh;
        width: 32%;
        margin-bottom: 4vw;
    }

    .container-text-S {
        max-width: 120rem;
        padding-inline: 2rem;
    }

    .p-text-S {
        font-size: 3rem;
    }


    /*SECTION TEXT*/
    section.text-block .p-text {
        font-size: 1.6rem;
        padding: 14px;
    }

    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 5.5rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 3rem;
    }

    .fullwidth-image__text .para {
        font-size: 2.3rem;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {  /*##############################################################################################################################################*/
    .logo img {
        height: 15px;
    }

    .menu-open::before,
    .menu-close::before {
        content: '';
        display: none;
    }

    .socials span {
        font-size: 14px;
        margin: 0 10px;
    }

    .menu__item {
        text-align: center;
        padding: 0 4vw;
    }

    .menu__item-link {
        font-size: 5vw;
    }

    .menu__item-img {
        height: 8vh;
    }

    .marquee__inner {
        font-size: 5vw;
    }

    .menu__item-link {
        font-size: 70px; /* Increase font size as needed */
        margin-bottom: 20px; /* Add space between each text */
    }
    
    .menu__item {
        margin-bottom: 60px; /* Add space between each menu item */
    }


    /*Serive Section*/

    .service_container .service .service_Title .service_h2{
        font-size: 40px;
    }

    .service_container .service .service_Title img{
        left: 75%;
    }

    .service_container .service .service_Title .service_h2{
        font-size: 35px;
    }

    /*SECTION TEXT*/
    section.text-block .p-text {
        font-size: 1.5rem;
        padding: 12px;
    }

    /*FULL IMAGE TEXT*/

    .fullImageTitle {
        font-size: 5rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 2.8rem;
    }

    .fullwidth-image__text .para {
        font-size: 2.2rem;
        max-width: 100%;
    }
}

@media (max-width: 992px) {  /*##############################################################################################################################################*/

    .container-text-S {
        max-width: 80rem;
        padding-inline: 1.2rem;
    }

    .p-text-S {
        font-size: 2.6rem;
    }
}

@media (max-width: 900px) {  /*##############################################################################################################################################*/

    :root {

        /**
         * typography
         */
    
         --fs-3: 7rem;
    
    }
    .container-service { max-width: 960px;
        grid-template-columns: 0.9fr 1fr;
    }

    .title-wrapper { gap: 15%; }

    .slider { --slider-items: 3; }

    .section { position: relative; }

    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-left,
    .header-right {
        width: 100%;
        margin-bottom: 1em;
    }

    .header .col {
        width: 60%;
    }

    .header .col:nth-child(2) {
        width: 70%;
    }

    .header h1 {
        width: 100%;
    }

    .btn-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
    }

    .btns {
        margin-bottom: 1em;
    }

    .hero {
        height: 40vh;
        border-radius: 10px;
        margin: 1em auto;
    }

    .arrow {
        width: 100px;
        height: 100px;
        bottom: 1em;
        right: 50%;
        transform: translateX(50%) rotate(-45deg);
        font-size: 20px;
    }

    .circle {
        top: -30px;
        width: 80px;
        height: 80px;
    }

    .rotate-text {
        font-size: 12px;
    }

    .text-container {
        font-size: 30px;
    }

    .title-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .header h1 {
        font-size: 60px;
        margin: 0 10px;
        width: auto;
        text-align: center;
    }

    .pattern {
        width: 100%;
        text-align: center;
    }

    .divider.col {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .hr {
        width: 100%;
    }

    .copy {
        width: 100%;
        margin: 0 auto;
    }

    .copy p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

     .menu__item-link {
        font-size: 50px; /* Increase font size as needed */
        margin-bottom: 20px; /* Add space between each text */
    }
    
    .menu__item {
        margin-bottom: 60px; /* Add space between each menu item */
    }

    .menu__item.projects-menu-item .updating-text {
        font-size: 2.5vw;
    }

    /*SECTION TEXT*/
    section.text-block .p-text {
        font-size: 1.4rem;
        padding: 10px;
    }

    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 4.5rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 2.6rem;
    }

    .fullwidth-image__text .para {
        font-size: 2rem;
        max-width: 100%;
    }

}

@media (max-width: 768px) { /*##############################################################################################################################################*/
    /******************** HERO *********************/
    .logo img {
        height: 15px;
    }

    .menu-open,
    .menu-close {
        font-size: 0px;
    }

    .menu-icon,
    .close-icon {
        width: 40px;
        height: 40px;
    }

    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-left,
    .header-right {
        width: 100%;
        margin-bottom: 1em;
    }

    
    .title-item h1 {
        font-size: 50px;
        margin: 0 10px;
        width: auto;
        text-align: center;
    }

    .header .col {
        width: 60%;
    }

    .header .col:nth-child(2) {
        width: 100%;
    }

    .header h1 {
        width: 100%;
    }

    .btn-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
    }

    .btns {
        margin-bottom: 1em;
    }

    .play-wrapper {
        width: 100%;
        height: 60px;
    }

    .p-text-s {
        font-size: 2.5rem;
    }

    footer{
        bottom: unset;
    }

    .footer-logo{
        width: 90px;
        margin-bottom: 30px;
    }

    .footer-col{
        flex-basis: 100%;
       
    }
    
    .footer-col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }

    .menu__item.projects-menu-item .updating-text {
        font-size: 3vw;
    }
    
    /***********************************/
    .container-text-S {
        max-width: 80rem;
        padding-inline: 1.2rem;
    }

    .p-text-S {
        font-size: 2.6rem;
        margin-bottom: 2.0rem;
    }

    /*SERVICE SECTION*/
    #greenBackground{
        width: 600px;
    }

    .service_container .service .service_Title img{
        width:210px;
    }
    /*SECTION TEXT*/

    section.text-block .p-text {
        font-size: 1.3rem;
        padding: 9px;
    }

    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 4rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 2.4rem;
    }

    .fullwidth-image__text .para {
        font-size: 1.8rem;
        max-width: 100%;
    }


    /******************** CONNECT **************************/
    
    .connect {
        padding: 1.5em;
    }

    .connect h1 {
        font-size: 4em; /* Adjust font size for tablets */
    }

    .get-to-know-arrow {
        font-size: 4em; /* Adjust font size for tablets */
    }

    .get-to-know-arrow ion-icon {
        font-size: 1.5em; /* Adjust icon size for tablets */
    }
}

@media (max-width: 600px) {  /*##############################################################################################################################################*/
    .logo img {
        height: 15px;
    }

    .menu-open,
    .menu-close {
        font-size: 0px;
    }

    .menu-icon,
    .close-icon {
        width: 40px;
        height: 40px;
    }

    .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 80px;
    }

    .header-left,
    .header-right {
        width: 100%;
        margin-bottom: 1em;
        
        
    }

    .header .col {
        width: 60%;
    }

    .header .col:nth-child(2) {
        width: 100%;
    }

    .title-item h1 {
        font-size: 40px;
        width: 100%;
    }

    .play-wrapper {
        width: 100%;
        height: 60px;
    }

    .text-container {
        font-size: 25px;
    }


    .menu__item-link {
        font-size: 50px; /* Increase font size as needed */
        margin-bottom: 20px; /* Add space between each text */
    }
    
    .menu__item {
        margin-bottom: 60px; /* Add space between each menu item */
    }

    /*SERVICE SECTION*/
    .service_container .service .service_Title .service_h2{
        font-size: 25px;
    }

    .service_container .service .service_Title img{
        width: 134px;
    }

    .service_wrapper .content .service_h3{
        font-size: 3rem;
    }

    .servive_p{
        font-size: 1.5rem;
    }

    /*SECTION TEXT*/
    section.text-block .p-text {
        font-size: 1.5rem;
        padding: 8px;
    }

    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 3.8rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 2.2rem;
    }

    .fullwidth-image__text .para {
        font-size: 1.6rem;
        max-width: 100%;
    }

    /****Project Menu***/

    .menu__item.projects-menu-item .updating-text {
        font-size: 3.5vw;
    }


}

@media (max-width: 576px) {  /*##############################################################################################################################################*/

    .container-text-S {
        max-width: 100%;
        padding-inline: 1rem;
    }

    .text-block-S {
        margin-top: 7rem;
        margin-bottom: 7rem;
    }

    .p-text-s {
        font-size: 2.0rem;
        margin-bottom: 2.0rem;
    }

    /*SECTION TEXT*/

    section.text-block .p-text {
        font-size: 1.2rem;
        padding: 7px;
    }
    /*FULL IMAGE TEXT*/
    .fullImageTitle {
        font-size: 3.5rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 2rem;
    }

    .fullwidth-image__text .para {
        font-size: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 500px){
    .service_section{
        margin-bottom: 100px;
    }
}

@media (max-width: 400px){  /*##############################################################################################################################################*/
    .logo img {
        height: 12px; /* Adjusted height for smaller screens */
    }

    .menu-open,
    .menu-close {
        font-size: 0px; /* Hide menu open/close text */
    }

    .menu-icon,
    .close-icon {
        width: 30px; /* Smaller icon size */
        height: 30px; /* Smaller icon size */
    }

    .header {
        margin-top: 60px; /* Adjusted margin top */
    }

    .header-left,
    .header-right {
        width: 100%;
        margin-bottom: 0.5em; /* Reduced margin bottom */
    }

    .header .col {
        width: 80%; /* Adjusted width */
    }

    .header .col:nth-child(2) {
        width: 90%; /* Adjusted width */
    }

    .title-item h1 {
        font-size: 30px; /* Reduced font size */
    }

    .play-wrapper {
        height: 50px; /* Reduced height */
    }

    .text-container {
        font-size: 16px; /* Reduced font size */
    }

    .menu__item-link {
        font-size: 40px; /* Adjusted font size */
        margin-bottom: 15px; /* Reduced margin bottom */
    }

    .menu__item {
        margin-bottom: 40px; /* Reduced margin bottom */
    }

    /*SECTION TEXT*/
  

    /*SECTION SERVICE*/
    .service_wrapper .content .service_service_title {
        font-size: 1.3em;
    }

    .service_wrapper .content .service_h3 {
        font-size: 1.2rem;
        line-height: 3.2rem;
    }

    .service_wrapper .content .service_p {
        width: 100%;
    }

    /*SECTION FULLIMAGE TEXT*/
    .fullImageTitle {
        font-size: 3rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 1.8rem;
    }

    .fullwidth-image__text .para {
        font-size: 1.3rem;
        max-width: 100%;
    }

    /********************* CONNECT ********************/

    .connect {
        padding: 1em;
    }

    .connect h1 {
        font-size: 2.5em; /* Adjust font size for mobile phones */
    }

    .get-to-know-arrow {
        font-size: 2.5em; /* Adjust font size for mobile phones */
    }

    .get-to-know-arrow ion-icon {
        font-size: 1em; /* Adjust icon size for mobile phones */
    }
}

@media (max-width: 375px) { /*###############################################################################################################################################*/
    .p-text-s {
        font-size: 2rem;
    }

    /*SECTION TEXT*/

    section.text-block .p-text {
        font-size: 1rem;
        padding: 5px;
    }

    .fullImageTitle {
        font-size: 2.5rem;
    }

    .fullwidth-image__text .fullImageTitle {
        font-size: 1.6rem;
    }

    .fullwidth-image__text .para {
        font-size: 1.2rem;
        max-width: 100%;
    }

}



















