@font-face {
    font-family: Hanken-grostek;
    src: url(./fonts/Hanken_Grotesk/static/HankenGrotesk-Regular.ttf);
}



* {
    font-family: Hanken-grostek;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

p,h2{
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}




.sec-mar {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}

.sec-side-mar{
    margin-left:  100px !important;
    margin-right:  100px !important;
}
.sec-pad {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.sec-side-pad{
    padding-left:  100px !important;
    padding-right:  100px !important;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.banner-sec {
    height: fit-content;
    background-color: #0E0E0E;
    background-image: url("images/banner/bg-shape.png");
}

.nav {
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    display: flex;
    position: relative;
}

/* Logo Styles - Responsive */
.logo {
    display: flex;
    align-items: center;
    z-index: 1000;
}

.logo img {
    max-width: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .logo img {
        max-width: 130px;
    }
}

/* Desktop (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .logo img {
        max-width: 120px;
    }
}

/* Tablet Landscape (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo img {
        max-width: 110px;
    }
}

/* Desktop Navigation - Visible by default */
.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

/* Mobile Navigation - Hidden by default */
.mobile-nav {
    display: none;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon-mobile {
    padding-right: 0;
}

.nav-items {
    margin-right: 250px;
}

.nav-items ul {
    list-style: none;
    display: flex;
}

.nav-items>ul>li>a {
    margin: 20px;
    color: whitesmoke;
    text-decoration: none;
    font-family: Hanken-grostek;
}


.hamburger-menu {
    border-left: 2px solid whitesmoke;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    min-width: 40px;
    min-height: 40px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 10001;
    position: relative;
    text-decoration: none;
}

.hamburger-menu>span {
    display: block;
    position: relative;
    width: 33px !important;
    height: 2px !important;
    background-color: white;
    margin: 5px 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.search-icon {
    padding-right: 20px;
}

.right {
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: relative;
    z-index: 1000;
}

.buttons {
    align-items: center;
    display: flex;
    position: relative;
    z-index: 1001;
    gap: 10px;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hero-text {
    color: white;
}

.hero-p h1 {
    font-size: 90px;
    font-weight: 600;
    font-family: Hanken-grostek;
}

.hero-p span {
    font-family: Hanken-grostek;
    color: #A8A8A8;
}

.hero-main-term-txt {
    position: relative;
    left: 40%;
}

.txt {
    max-width: 450px;
}

.base-para {

    position: relative;
}

.hero-p span::after {
    position: absolute;
    content: "";
    left: 10px;
    bottom: 12px;
    width: 100%;
    height: 3px;
    background: #A8A8A8;
    max-width: 100%;
    overflow: hidden;
}

.hero-p p {
    line-height: 1;
    margin: 0;
}


.hero-project-showcase svg {
    position: relative;
}

.hero-project-showcase svg text textpath {
    fill: white;
    text-transform: uppercase;
}

.animation {
    animation: spin 10s linear 0s infinite;
}

.hero-project-showcase i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #919090;
}

.hero-project-showcase {
    display: flex;
    position: relative;
}

.hero-project-showcase a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(55, 55, 55, 0.626);
    border-radius: 50%;
}

.explore-btn {
    justify-content: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.explore-btn a {
    text-align: center;
    max-width: 150px;
    text-decoration: none;
    color: rgba(55, 55, 55, 0.626);
    text-transform: uppercase;
}

.services-explore-btn:hover{
  border: 1px solid  #919090;
}
.services-explore-btn:hover .explore-btn a{
  color: #919090;
}
.services-explore-btn:hover .explore-btn a img {
    filter: invert(75%);
}

.explore-btn a img {
    filter: invert(15%);
}

.services-explore-btn {
    transform: translate(100%);
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 100%;
    border: 1px solid rgba(55, 55, 55, 0.626);
    height: 150px;
    width: 150px;
}

.backgrid {
    width: 67%;
    position: absolute;
    margin: auto;
    z-index: -1;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);

}

/* .backgrid{
    width: 60%;
    position: absolute;
    margin: auto;
    z-index: -1;
    height: 100vh;
    left: 50%;
    transform: translateX(-50%);
} */

.grid-line {
    height: 100%;
    width: 1px;
    background-color: #a8a8a86e;
}

.grid-lines {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.about {
    position: relative;
    z-index: 1;
}

.about-sec {
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);

    color: white;
    font-family: Hanken-grostek;

}


.heading-title h3 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.6;
}

.about-imag {
    display: flex;
    justify-content: flex-end;
    transform: translate(0, -25%);
    position: relative;
}



.header-title {
    overflow: hidden;
    width: 500vw;
    font-size: 60px;
    text-transform: uppercase;
}

.col-images {
    position: relative;
}

.star {
    position: absolute;
    right: 0px;
    top: -10px;
}

.cloud {
    position: absolute;
    left: 26px;
    bottom: 9%;
    z-index: -1;
}

.backimgs {
    position: absolute;
    right: 25px;
    top: -40px;
}

.info-text h2 {


    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #141414;
    text-align: left;
}

.info-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #74787C;
}

.contact-info-para p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #74787C;
}


.progress-bar input[type="range"] {
    margin: 20px 0px;
    cursor: pointer;
    -webkit-appearance: none;
    overflow: hidden;
    height: 3px;
    width: 100%;
    accent-color: black;
    border-radius: 10px;
    background: rgba(101, 101, 101, 0.562);
}

.progress-bar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1px;
    height: 20px;
    box-shadow: -400px 0 0 400px #181818;
}

.progress-bar {
    height: fit-content;
    margin: 35px 0px;
    width: 35vw;
    display: flex;
}

.progress-bar p {
    margin: 0;
}

.contact-us {

    text-transform: uppercase;
    text-decoration: none;
    font-family: Hanken-grostek;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    padding: 20px;
    margin: 0;

}

.contect-a {

    text-transform: uppercase;
    text-decoration: none;
    font-family: Hanken-grostek;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    padding: 20px;
    margin: 0;
    flex-direction: column;

}

.contect-a a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.contect-a a p {
    margin: 0;
}

.lebels {
    display: flex;
    justify-content: space-between;
}

.cnt-btn a {
    text-align: center;
}

.circle {
    padding: 40px;
    border: 1px solid black;
    border-radius: 100%;
    width: fit-content;
    margin-left: 20px;
}
.ser-circle {
    padding: 40px;
    border: 1px solid black;
    border-radius: 100%;
    width: fit-content;
    margin-left: 20px;
}

.circle:hover {
    transition: 0.5s;
    transform: scale(1.2);
    border: 1px solid white;
    background-color: black;

}

.circle:hover img {
    transform: scale(1.5);
    filter: invert(100%);

}

.circle img {
    transform: scale(1.5);
}

.circle-white {
    padding: 40px;
    border: 1px solid white;
    border-radius: 100%;
    width: fit-content;
    margin-left: 20px;
}

.circle-white:hover {
    transition: 0.5s;
    transform: scale(1.2);
    border: 1px solid black;
    background-color: white;

}

.circle-white:hover img {
    transform: scale(1.5);
    filter: invert(0%);
}

.circle-white img {
    filter: invert(100%);
    transform: scale(1.5);
}

.about-card-text p {
    margin: 0;
}

.about-card {
    position: relative;
    padding: 20px;
    width: fit-content;
    border: 1px solid rgb(67, 67, 67);
    border-radius: 6px;
    margin: 20px 0px;
}

.about-about-cards {
    overflow: hidden;
}

.about-card-heading p {
    margin: 0;
}

/* .bg-img{
    position: absolute;
    width: auto;
  
} */

.portfolio-heading>h3{
    color: black;
}

.bg-img img {
    border-radius: 6px;
    position: absolute;
    top: 0;
    width: 0;
    left: 0;
    transform: scale(1.1);
    transition: all 1s;
}

.about-card {
    overflow: hidden;
}

.about-card:hover .bg-img img {
    width: 100%;
    transform: scale(1.1);
}

.about-card:hover {
    background: transparent;
}

.about-card:hover .t-name::before {
    font-size: 22px;
    right: -35px;
    opacity: 1;
}

.t-name {
    font-family: Hanken-grostek;
    font-weight: 800;
    font-size: 25px;
}

.about-card .t-name::before {
    content: "\f061";
    font-family: "fontawesome";
    position: absolute;
    right: 0px;
    font-weight: 300;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    transition: all 0.5s;
}


.t-name::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: white;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.about-card:hover .t-name::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.about-card-heading {
    width: fit-content;
    position: relative;
    text-transform: uppercase;
}

.about-card-body {
    display: flex;
    flex-direction: column;
    position: relative;
}


.about-card-text {
    padding: 20px;
    color: #74787C;
}

.about-card-number::after {
    position: absolute;
    content: "01";
    font-size: 80px;
    right: -10px;
    top: -45px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #282828;
    font-weight: 700;
    transition: 0.3s;
}
.about-card-number2::after {
    position: absolute;
    content: "02";
    font-size: 80px;
    right: -10px;
    top: -45px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #282828;
    font-weight: 700;
    transition: 0.3s;
}
.about-card-number3::after {
    position: absolute;
    content: "03";
    font-size: 80px;
    right: -10px;
    top: -45px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #282828;
    font-weight: 700;
    transition: 0.3s;
}

.service-maintitle {
    text-transform: uppercase;
    border: 1px solid rgba(128, 128, 128, 0.562);
    width: fit-content;
    text-align: center;
    padding: 10px;
    display: flex;
    border-radius: 6px;
    font-family: Hanken-grostek;
}

.service-maintitle p {
    margin: 0;
}

.service-info {
    padding: 60px 0px;

    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-heading h3 {
    font-family: Hanken-grostek;
    font-size: 40px;
    font-weight: 700;
}
.service-heading p{
    margin: 0;
}

.service-info-text{
    font-family: Hanken-grostek;
    max-width: 450px;
}


.text-section p{
    margin: 0;
}




.service-ar a{
    text-align: center;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

.service-ar a p {
    margin: 0;
}

.service-ar {
    text-transform: uppercase;
    text-decoration: none;
    font-family: Hanken-grostek;
    color: black;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    flex-direction: column;
}

.list-img{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 11px;
    overflow: unset;
    transform: translateX(-50%) scale(1.4);
    height: 100%;
    width: auto;
    margin: auto;
}

.button-area{
    margin: auto 0 auto  auto;
    
}

.services-cards{
    border-top: 1px solid grey;
    padding: 50px 0;
    display: flex;

}

.services-cards a{
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    width: 100%;
}



.services-cards:hover .list-img{
  width: 100%;
  overflow: hidden;
}

.services-cards:hover .disc{
    transform: translateX(15%);
    transition: all 1s;
opacity: 0;
}


 .rts-img-contaciner .list-img {
    position: absolute;
    left: 50%;
    top: 11px;
    overflow: unset;
    -webkit-transform: translateX(-50%) scale(1.4);
    -ms-transform: translateX(-50%) scale(1.4);
    transform: translateX(-50%) scale(1.4);
    height: 100%;
    width: auto;
    margin: auto;

    transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
 .rts-img-contaciner .list-img .list-img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;

    backface-visibility: hidden;
    will-change: transform;
   
    transform: translateX(-50%);
   
    transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .rts-img-contaciner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 70%;
    width: 0;
    margin: auto 0;
    overflow: hidden;
    font-size: 0;
  
    transition: width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

   .services-cards {
    height: 10.75vw;
    display: inline-flex;
    width: 100%;
    position: relative;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    align-items: center;
  }

  .services-cards:hover a .rts-img-contaciner {
    width: 11.22vw !important;
  }
  .services-cards:hover a .list-title {
    transform: translateX(12.5vw);
    transition: all 0.6s;
  }


.case-sec{
    height: fit-content;
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);
    color: white;
}

/* Owl Carousel Portfolio Styles */
.portfolio-carousel {
    position: relative;
}

.portfolio-carousel-item {
    min-height: 600px;
}

/* Fallback: Show first item if carousel doesn't load */
.portfolio-carousel:not(.owl-carousel) .portfolio-carousel-item {
    display: block;
}

.portfolio-carousel:not(.owl-carousel) .portfolio-carousel-item:not(:first-child) {
    display: none;
}

.portfolio-text-side {
    background-color: #0E0E0E;
    padding: 80px 100px;
    min-height: 600px;
}

.portfolio-image-side {
    background-color: #0E0E0E;
    padding: 0;
    min-height: 600px;
}

.portfolio-image-side .right-img {
    height: 100%;
    width: 100%;
}

.portfolio-image-side .overlay-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-image-side .img {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-image-side .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Owl Carousel Navigation */
.portfolio-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.portfolio-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    background-color: rgba(40, 40, 40, 0.7) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.8;
}

.portfolio-carousel .owl-nav button:hover {
    background-color: rgba(40, 40, 40, 0.9) !important;
    opacity: 1;
    transform: scale(1.05);
}

.portfolio-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.portfolio-carousel .owl-nav button.owl-next {
    right: 30px;
}

/* Owl Carousel Dots */
.portfolio-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.portfolio-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

.portfolio-carousel .owl-dots button.active {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.3);
}

.portfolio-carousel .owl-dots button span {
    display: none;
}




.left-side{
    padding: 0px 150px;
}

.slider-text{
    overflow: hidden;
}

.slide-text{
    display: flex;
    width: 500vw;
}

.slide-text p{
    font-size: 150px;
    font-weight: 600;
}

.case-study-title{
    text-transform: uppercase;
    font-family: Hanken-grostek;
    border: 1px solid #282828;
    width: fit-content;
    padding: 15px;
    border-radius: 6px ;
}

.study-heading h3{
    font-size: 50px;
}

.study-para{
    color:#4d4d4d;
}

.study-visit-a{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.study-visit-a a{
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.study-visit-a a p{
    margin: 0;
}

.right-img{

    height: 100%;

}

.overlay-img{
  height: 100%;
    position: relative;
    width: 50vw;
}

.case-study{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img img{
    position: absolute;
width: 100%;
}

.title-tag a{
    text-decoration: none;
    text-transform: uppercase;
    color: #282828;
}


.main-info-heading{
margin: 30px 0px ;
}

.main-info-heading h2{
    font-family: Hanken-grostek;
    font-size: 45px;
    font-weight:bold;
    text-transform: uppercase;
    line-height: 1.5;
    border-bottom: 1px solid #28282868;

}

/* .info-que{

    padding:  20px 0px;
} */

.info-que div p{
    
    font-size: 15px;

}
.info-que div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: black;
    font-weight: 600;
    cursor: pointer;
}

.pls-span{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
}

.pls-span input[type="checkbox"]{
    position: relative;
    transform: translate(-25%);
    z-index: 0;
    opacity: 0;
    width: 40px;
    height: 32px;
    cursor: pointer;
    pointer-events: auto;
}


.pls-span span{
    border-radius: 5px;
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #0E0E0E;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.pls-span span:nth-child(2){
    transform: rotate(90deg);
}

.pls-span input[type="checkbox"]:checked~span:nth-child(2){
    opacity:0;
}

.price-info{
    border-bottom: 1px solid #282828;
}

.ans-info{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0;
}

.ans-info.none{
    max-height: 0;
    padding: 0 0;
}

.ans-info.active{
    max-height: 500px;
    padding: 15px 0;
}


.right-side-card{
    margin: 0px 10px;
    border-radius: 10px;
    background-color: #0E0E0E;
}
.right2-side-card{
    margin: 0px 10px;
    border-radius: 10px;
   background-color:#F1F1F1;
   border: 1px solid grey;
}

.title-tag {
    padding: 10px;
    border: 1px solid #93939360;
    width: fit-content;
    border-radius:10px;
}
.price-tag {
    padding: 10px;
    border: 1px solid #93939360;
    width: fit-content;
    border-radius:10px;
}
.price2-tag {
    padding: 10px;
    border: 1px solid black;
    width: fit-content;
    border-radius:10px;
}
.price-tag a{
    text-decoration: none;
    text-transform: uppercase;
    color: white;

}
.price2-tag a{
    text-decoration: none;
    text-transform: uppercase;
    color: black;

}

.price{
    margin-top: 20px;
    color: white;
}
.price span{
    font-size: 30px;
    font-weight: 700;
}
.price-cards{
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Hanken-grostek;
    padding: 50px;
}
.price2{
    margin-top: 20px;
   color: black;
}
.price2 span{
    font-size: 30px;
    font-weight: 700;
}
.price-cards2{
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Hanken-grostek;
    padding: 50px;
}
.price2-cards{
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Hanken-grostek;
    padding: 50px;
}

.price-info-p{
    margin-top: 20px;
    color: #656565;
}
.price2-info-p{
    margin-top: 20px;
    color: black;
}

.fa-check{
    color: aliceblue;
}

.services{
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    width: fit-content;
    color: white;
}
.services2{
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    width: fit-content;
    color: black;
}

.service-name{
    margin-left: 10px ;
}

.price-services{
    margin: 20px 0px;
}
.price2-services{
    margin: 20px 0px;
}

.right-side-card{
display: flex;
flex-direction: column;
}

.pacakge-btn a{
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.pacakge-btn{
    padding: 20px;
    background-color: #282828;
    width: fit-content;
    border-radius: 10px;
}
.pacakge-btn2 a{
    text-transform: uppercase;
    color: black;
    text-decoration: none;
 
}

.pacakge-btn2{
    border: 1px solid black;
    padding: 20px;
  background-color: #F1F1F1;
    width: fit-content;
    border-radius: 10px;
}

.price-pack{
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.check-icon2 .fa-check{
    color: black;
}

.service-name2{
    margin-left: 10px ;
    color: black;
}

.price-pack2{
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.cnt-btn2{
    display: flex;
    justify-content: center;
    margin-top:50px ;
}

.clients{
    margin:100px  0px ;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.clients-logo{
    width: 100%;
    margin-top:50px;
    justify-content: space-between;
    display: flex;
    
}

.client-title p{
font-weight: 800;
}

/* Old scroll styles removed - now using Bootstrap carousel */

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: rgba(14, 14, 14, 0.98) !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none !important;
    overflow-y: auto;
    margin: 0 !important;
    padding: 0 !important;
}

/* Only show overlay when active class is present */
.mobile-menu-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Hide mobile menu overlay on desktop */
@media (min-width: 769px) {

    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .mobile-menu-overlay.active {
        display: none !important;
    }
}

.mobile-menu-content {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    pointer-events: auto;
    position: relative;
    z-index: 100000;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block !important;
    visibility: visible !important;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    list-style: none !important;
}

.mobile-nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Hanken-grostek', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: block !important;
    padding: 15px 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 100%;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav-link:hover {
    color: #A8A8A8 !important;
    transform: translateX(10px);
}

.mobile-nav-link:active,
.mobile-nav-link:focus {
    color: #ffffff !important;
    outline: none;
}

/* Hamburger Menu Animation */
.hamburger-menu.active .ham-lines:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .ham-lines:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .ham-lines:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger-menu .ham-lines {
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-items {
        margin-right: 100px;
    }
}

/* Fix for 1024px width - tablet landscape */
@media (max-width: 1024px) {
    .service-info {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
        padding: 40px 0;
        flex-wrap: wrap;
    }
    
    .service-heading {
        flex: 1;
        min-width: 300px;
    }
    
    .service-heading h3 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .service-info-text {
        max-width: 100%;
        flex: 1;
        min-width: 300px;
    }
    
    .service-info-text p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .services-cards {
        height: auto !important;
        min-height: 100px;
        padding: 35px 0;
        overflow: visible;
    }
    
    .services-cards a {
        flex-wrap: nowrap;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    
    .rts-img-contaciner {
        width: 100px !important;
        height: 70px !important;
        flex-shrink: 0;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        bottom: auto !important;
    }
    
    .services-cards:hover a .rts-img-contaciner {
        width: 100px !important;
    }
    
    .list-title {
        display:flex;
        justify-content: center;
        flex: 0 0 auto;
        width: auto !important;
        min-width: 200px;
        max-width: 40%;
    }
    
    /* Override Bootstrap column classes inside services-cards */
    .services-cards .list-title.col-lg-6 {
        flex: 0 0 auto;
        width: auto !important;
        max-width: 40%;
    }
    
    .list-title h3 {
        font-size: 24px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .list-info {
        flex: 1;
        min-width: 200px;
        max-width: 35%;
    }
    
    /* Override Bootstrap column classes inside services-cards */
    .services-cards .list-info.col-lg-3 {
        flex: 1;
        width: auto !important;
        max-width: 35%;
    }
    
    .list-info .disc {
        font-size: 13px;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    
    .button-area {
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .services-cards:hover a .list-title {
        transform: translateX(0) !important;
    }
    
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .service-area-one-main-wrapper {
        width: 100%;
        overflow-x: visible;
        overflow-y: visible;
    }
    
    .service-sec {
        overflow-x: hidden;
    }
    
    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 992px) {
    .nav-items {
        margin-right: 30px;
    }
    
    .nav-items ul li a {
        margin: 8px;
        font-size: 14px;
    }
    
    .hero-p h1 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
        position: relative;
        z-index: 1000;
        background-color: rgba(14, 14, 14, 0.95);
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile navigation on mobile */
    .mobile-nav {
        display: flex !important;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
    }
    
    .search-icon {
        padding-right: 15px;
    }
    
    .right {
        margin-left: auto;
    }
    
    .logo img {
        max-width: 100px;
    }
    
    .hero-p h1 {
        font-size: 45px;
    }
    
    .hero-main-term-txt {
        left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .nav {
        padding: 10px 15px;
    }
    
    .logo img {
        max-width: 80px;
    }
    
    .hamburger-menu > span {
        width: 25px !important;
        margin: 4px 10px 4px 10px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
    }
    
    .hero-p h1 {
        font-size: 35px;
    }
    
    .buttons {
        gap: 10px;
    }
    
    .search-icon {
        padding-right: 10px;
    }
    
    .search-icon img {
        width: 18px;
        height: 18px;
    }
    
    .mobile-nav-header {
        gap: 10px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}



/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR ALL DEVICES
   ============================================ */

/* Tablet and below (992px) */
@media (max-width: 992px) {
    /* Section Padding */
    .sec-pad {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    
    .sec-side-pad {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    
    /* Hero Section */
    .hero-main {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-project-showcase {
        margin-top: 40px;
    }
    
    .hero-project-showcase svg {
        width: 150px;
        height: 150px;
    }
    
    /* About Section */
    .about-imag {
        transform: translate(0, -15%);
    }
    
    .side-img {
        margin-top: 30px;
    }
    
    .left-side {
        padding: 0px 50px;
    }
    
    .header-title {
        font-size: 80px;
    }
    
    /* Services Section */
    .services-cards {
        padding: 30px 0;
    }
    
    .service-heading h3 {
        font-size: 32px;
    }
    
    /* Case Studies */
    .slide-text p {
        font-size: 100px;
    }
    
    /* Pricing Section */
    .main-info-heading h2 {
        font-size: 32px;
    }
    
    .price-cards,
    .price2-cards {
        padding: 30px;
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    .hero-p span::after
{bottom: 0 !important;}
 
    /* Section Padding */
    .sec-pad {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .sec-side-pad {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Hero Section */
    .hero-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-p h1 {
        font-size: 45px;
        line-height: 1.2;
    }
    
    .hero-p h1 p {
        margin-bottom: 10px;
    }
    
    .hero-main-term-txt {
        left: 0;
        margin-top: 20px;
        position: relative;
    }
    
    .txt {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-project-showcase {
        margin-top: 30px;
    }
    
    .hero-project-showcase svg {
        width: 120px;
        height: 120px;
    }
    
    .services-explore-btn {
        margin-top: 30px;
        text-align: center;
    }
    
    .span-img {
        display: none;
    }
    
    /* About Section */
    .about-imag {
        transform: translate(0, 0);
        margin-top: 20px;
    }
    
    .about-imag img {
        width: 100%;
        height: auto;
    }
    
    .side-img .col-lg-10 {
        width: 100%;
    }
    
    .header-title {
        font-size: 50px;
        width: 100vw;
    }
    
    .about-header-text {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .left-side {
        padding: 0px 20px;
    }
    
    .col-images {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .col-images img {
        max-width: 100%;
        height: auto;
    }
    
    .about-informations {
        text-align: center;
    }
    
    .info-text h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .info-description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .info-description br {
        display: none;
    }
    
    .progress-bar {
        margin: 20px 0;
    }
    
    /* About Cards */
    .about-about-cards {
        margin-top: 30px;
    }
    
    .about-card {
        margin-bottom: 20px;
    }
    
    /* Services Section */
    .service-maintitle {
        text-align: center;
    }
    
    .service-info {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .service-heading h3 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .service-info-text {
        margin: 20px 0;
    }
    
    .service-info-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .services-cards {
        padding: 20px 0;
        border-top: 1px solid grey;
        height: auto !important;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .services-cards a {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .rts-img-contaciner {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        margin-bottom: 20px;
        order: 1;
        left: 0 !important;
        top: 0 !important;
        bottom: auto !important;
        overflow: visible !important;
    }
    
    .list-img {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: 250px !important;
        object-fit: cover;
        transform: none !important;
        margin: 0 !important;
    }
    
    .list-title {
        width: 100% !important;
        margin-bottom: 15px;
        order: 2;
        transform: none !important;
    }
    
    .list-title h3 {
        font-size: 24px;
    }
    
    .list-info {
        width: 100% !important;
        margin-bottom: 15px;
        order: 3;
    }
    
    .list-info .disc {
        font-size: 14px;
        line-height: 1.6;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .button-area {
        align-self: center;
        order: 4;
        margin-top: 10px;
    }
    
    /* Fix service area wrapper */
    .service-area-one-main-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    /* Disable hover effects on mobile */
    .services-cards:hover .list-img {
        width: 100% !important;
        transform: none !important;
    }
    
    .services-cards:hover .disc {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .services-cards:hover a .rts-img-contaciner {
        width: 100% !important;
    }
    
    .services-cards:hover a .list-title {
        transform: none !important;
    }
    
    /* Case Studies */
    .slider-text {
        margin-bottom: 30px;
        overflow: hidden;
    }
    
    .slide-text {
        width: 300vw;
    }
    
    .slide-text p {
        font-size: 60px;
        margin-right: 30px;
    }
    
    /* Owl Carousel on tablet */
    .portfolio-text-side {
        padding: 50px 40px !important;
    }
    
    .portfolio-image-side {
        min-height: 350px;
    }
    
    .portfolio-carousel .owl-nav button {
        width: 50px;
        height: 50px;
    }
    
    .case-study {
        text-align: center;
        padding: 20px;
    }
    
    .case-study-title {
        font-size: 12px;
    }
    
    .study-heading h3 {
        font-size: 28px;
        line-height: 1.3;
        margin: 15px 0;
    }
    
    .study-para p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .study-para br {
        display: none;
    }
    
    .panel-slide {
        flex-direction: column;
    }
    
    .panel-slide .col-lg-6 {
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .right-img img {
        width: 100%;
        height: auto;
    }
    
    /* Owl Carousel responsive styles */
    .portfolio-carousel-item {
        min-height: auto;
    }
    
    .portfolio-text-side {
        padding: 60px 50px !important;
        min-height: auto;
    }
    
    .portfolio-image-side {
        min-height: 400px;
    }
    
    .portfolio-carousel .owl-nav {
        padding: 0 20px;
    }
    
    .portfolio-carousel .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 18px !important;
    }
    
    .portfolio-carousel .owl-nav button.owl-prev {
        left: 20px;
    }
    
    .portfolio-carousel .owl-nav button.owl-next {
        right: 20px;
    }
    
    .portfolio-carousel .owl-dots {
        bottom: 30px;
    }
    
    .portfolio-carousel .owl-dots button {
        width: 10px;
        height: 10px;
    }
    
    .case-study {
        text-align: center;
        padding: 20px 0;
    }
    
    .study-heading h3 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .study-para p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Pricing Section */
    .main-info {
        margin-bottom: 40px;
    }
    
    .main-info-heading h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .price-info {
        margin-bottom: 20px;
    }
    
    .col-lg-8.d-flex {
        flex-direction: column;
    }
    
    .right-side-card,
    .right2-side-card {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .price-cards,
    .price2-cards {
        padding: 30px 20px;
    }
    
    .price,
    .price2 {
        font-size: 24px;
    }
    
    .price span,
    .price2 span {
        font-size: 36px;
    }
    
    /* Clients Section */
    .clients {
        margin: 60px 0;
        padding: 0 20px;
    }
    
    .client-title p {
        font-size: 14px;
        text-align: center;
    }
    
    .clients-logo {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .clients-logo > div {
        flex: 0 0 calc(50% - 10px);
        text-align: center;
    }
    
    .clients-logo img {
        max-width: 100%;
        height: auto;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    /* Section Padding */
    .sec-pad {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .sec-side-pad {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Hero Section */
    .hero-p h1 {
        font-size: 35px;
    }
    
    .hero-p h1 p {
        font-size: 28px;
    }
    
    .hero-main-term-txt .txt p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .hero-project-showcase svg {
        width: 100px;
        height: 100px;
    }
    
    /* About Section */
    .header-title {
        font-size: 35px;
    }
    
    .left-side {
        padding: 0px 15px;
    }
    
    .info-text h2 {
        font-size: 20px;
    }
    
    .info-description p {
        font-size: 13px;
    }
    
    /* Services Section */
    .service-heading h3 {
        font-size: 24px;
    }
    
    .service-info-text p {
        font-size: 14px;
    }
    
    .list-title h3 {
        font-size: 20px;
    }
    
    .list-info .disc {
        font-size: 14px;
    }
    
    /* Case Studies */
    .slide-text p {
        font-size: 40px;
    }
    
    /* Owl Carousel on small mobile */
    .portfolio-text-side {
        padding: 40px 30px !important;
    }
    
    .portfolio-image-side {
        min-height: 300px;
    }
    
    .portfolio-carousel .owl-nav {
        padding: 0 10px;
    }
    
    .portfolio-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 16px !important;
    }
    
    .portfolio-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .portfolio-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    .portfolio-carousel .owl-dots {
        bottom: 20px;
    }
    
    .portfolio-carousel .owl-dots button {
        width: 8px;
        height: 8px;
    }
    
    .portfolio-carousel-item .row {
        flex-direction: column;
    }
    
    .portfolio-text-side,
    .portfolio-image-side {
        width: 100% !important;
    }
    
    .study-heading h3 {
        font-size: 24px;
    }
    
    /* Pricing Section */
    .main-info-heading h2 {
        font-size: 24px;
    }
    
    .price-cards,
    .price2-cards {
        padding: 20px 15px;
    }
    
    .price span,
    .price2 span {
        font-size: 28px;
    }
    
    /* Clients */
    .clients-logo > div {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    /* Contact Section */
    .contect-texts {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .heading-text p {
        font-size: 14px;
    }
    
    .heading-title h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .heading-title br {
        display: none;
    }
    
    .contact-info-para p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-info-para br {
        display: none;
    }
    
    /* General Image Responsiveness */
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    
    /* Cloud and Background Images */
    .cloud {
        display: none;
    }
    
    /* Grid Lines */
    .backgrid {
        display: none;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .logo img {
        max-width: 70px;
    }
    
    .hero-p h1 {
        font-size: 28px;
    }
    
    .hero-p h1 p {
        font-size: 22px;
    }
    
    .header-title {
        font-size: 28px;
    }
    
    .service-heading h3 {
        font-size: 20px;
    }
    
    .slide-text p {
        font-size: 32px;
    }
    
    .price-cards,
    .price2-cards {
        padding: 15px 10px;
    }
    
    .sec-pad {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .list-title h3 {
        font-size: 18px;
    }
    
    .study-heading h3 {
        font-size: 20px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .logo img {
        max-width: 60px;
    }
    
    .nav {
        padding: 8px 10px;
    }
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .sec-pad {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-p h1 {
        font-size: 32px;
    }
    
    .hero-main-term-txt {
        margin-top: 10px;
    }
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-p h1 {
        font-size: 100px;
    }
}

    /* Additional Mobile Fixes */
@media (max-width: 768px) {
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix row margins */
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix explore button */
    .explore-btn a {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Fix contact buttons */
    .contact-us,
    .cnt-btn a,
    .cnt-btn2 a {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Fix pricing cards layout */
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-lg-10,
    .col-lg-12 {
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    /* Hide decorative elements on mobile */
    .span-img {
        display: none;
    }
    
    /* Fix text alignment */
    .text-center {
        text-align: center !important;
    }
    
    /* Fix d-flex on mobile */
    .d-flex {
        flex-direction: column;
    }
    
    .d-flex.align-items-center {
        align-items: center !important;
    }
    
    /* Fix justify-content-end */
    .justify-content-end {
        justify-content: center !important;
    }
    
    /* Fix base-para */
    .base-para {
        display: inline-block;
    }
    
    /* Fix hero text layout */
    .hero-p h1 .d-flex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Fix service area */
    .service-area-one-main-wrapper {
        width: 100%;
    }
    
    /* Fix case study section */
    .case-sec {
        padding: 40px 0;
    }
    
    /* Fix pricing section */
    #price-sec {
        padding: 40px 0;
    }
    
    .main-info {
        text-align: center;
    }
    
    /* Fix clients section */
    .clients {
        padding: 0 15px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);
    padding: 60px 0 20px;
    /* margin-top: 80px; */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-description {
    color: #A8A8A8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: #ffffff;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-contact li a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #ffffff;
}

.footer-contact li span {
    color: #A8A8A8;
    font-size: 14px;
}

.footer-contact-btn {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-us-btn:hover {
    background: #ffffff;
    color: #0E0E0E;
    border-color: #ffffff;
    transform: translateY(-2px);
    gap: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background-color: #ffffff;
    color: #0E0E0E;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.copyright,
.footer-credits {
    color: #A8A8A8;
    font-size: 14px;
    margin: 0;
}

.footer-credits i {
    color: #ff6b6b;
    margin: 0 5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
        /* margin-top: 40px; */
    }
    
    .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
    
    .text-md-end {
        text-align: center !important;
    }
}

/* ============================================
   MODERN BLOG STYLES
   ============================================ */

/* Blog Section Header */
.blog-maintitle {
    font-family: Hanken-grostek;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A8A8A8;
    margin-bottom: 20px;
}

.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.blog-heading h3 {
    font-family: Hanken-grostek;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.blog-info-text {
    font-family: Hanken-grostek;
    max-width: 450px;
    color: #A8A8A8;
}

.blog-info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Blog Post Cards */
.blog-post-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    padding-left: 20px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
}

.blog-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-image-wrapper:hover .blog-overlay {
    opacity: 1;
}

.blog-image-wrapper:hover .blog-image img {
    transform: scale(1.1);
}

.view-article {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    color: #ffffff;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8A8A8;
}

.blog-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
}

.blog-post-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #A8A8A8;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.blog-author {
    font-size: 14px;
    color: #A8A8A8;
}

.read-more {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover .read-more {
    gap: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.category-list li a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts li a {
    text-decoration: none;
    display: block;
}

.post-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.recent-posts li a:hover .post-title {
    color: #A8A8A8;
}

.post-date {
    color: #A8A8A8;
    font-size: 12px;
    display: block;
}

/* Blog Detail Page */
.blog-detail-sec {
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);
    color: #ffffff;
}

.blog-detail-article {
    max-width: 100%;
}

.blog-detail-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.meta-right {
    display: flex;
    align-items: center;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-family: Hanken-grostek, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Headings */
.blog-detail-content h1,
.blog-detail-content .blog-h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: Hanken-grostek;
}

.blog-detail-content h2,
.blog-detail-content .blog-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Hanken-grostek;
}

.blog-detail-content h3,
.blog-detail-content .blog-h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 18px;
    line-height: 1.4;
    font-family: Hanken-grostek;
}

.blog-detail-content h4,
.blog-detail-content .blog-h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: Hanken-grostek;
}

.blog-detail-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-detail-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: #A8A8A8;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
.blog-detail-content p {
    margin-bottom: 20px;
    color: #A8A8A8;
    font-size: 18px;
    line-height: 1.8;
}

/* Lists */
.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #A8A8A8;
}

.blog-detail-content ul {
    list-style-type: disc;
}

.blog-detail-content ol {
    list-style-type: decimal;
}

.blog-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 18px;
}

.blog-detail-content ul ul,
.blog-detail-content ol ol,
.blog-detail-content ul ol,
.blog-detail-content ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-detail-content ul ul {
    list-style-type: circle;
}

.blog-detail-content ul ul ul {
    list-style-type: square;
}

/* Blockquotes */
.blog-detail-content blockquote {
    border-left: 4px solid #ffffff;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-style: italic;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
}

.blog-detail-content blockquote p {
    margin-bottom: 0;
    color: #ffffff;
}

.blog-detail-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #A8A8A8;
    font-style: normal;
}

/* Links */
.blog-detail-content a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-content a:hover {
    color: #A8A8A8;
    text-decoration: none;
}

/* Images */
.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
}

.blog-detail-content figure {
    margin: 30px 0;
    text-align: center;
}

.blog-detail-content figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #A8A8A8;
    font-style: italic;
}

/* Code */
.blog-detail-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #ffffff;
}

.blog-detail-content pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
    line-height: 1.6;
}

.blog-detail-content pre code {
    background: transparent;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
}

/* Tables */
.blog-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-content th,
.blog-detail-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail-content th {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.blog-detail-content td {
    color: #A8A8A8;
}

.blog-detail-content tr:last-child td {
    border-bottom: none;
}

/* Horizontal Rule */
.blog-detail-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* Strong and Emphasis */
.blog-detail-content strong,
.blog-detail-content b {
    color: #ffffff;
    font-weight: 700;
}

.blog-detail-content em,
.blog-detail-content i {
    font-style: italic;
}

/* First paragraph styling */
.blog-detail-content > p:first-of-type {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 25px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
    font-size: 14px;
    color: #A8A8A8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover,
.share-btn.copied {
    background: #ffffff;
    color: #0E0E0E;
    transform: translateY(-3px);
}

.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.related-posts-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.related-posts-list {
    margin-top: 20px;
}

.related-post-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-item a {
    text-decoration: none;
    display: block;
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.related-post-item:hover .related-post-content h5 {
    color: #A8A8A8;
}

.related-post-date {
    color: #A8A8A8;
    font-size: 12px;
}

.back-to-blog {
    margin-top: 30px;
}

.back-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 15px;
    color: #A8A8A8;
}

/* ============================================
   MODERN PORTFOLIO STYLES
   ============================================ */

/* Portfolio Section Header */
.portfolio-maintitle {
    font-family: Hanken-grostek;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A8A8A8;
    margin-bottom: 20px;
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.portfolio-heading h3 {
    font-family: Hanken-grostek;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.portfolio-info-text {
    font-family: Hanken-grostek;
    max-width: 450px;
    color: #A8A8A8;
}

.portfolio-info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ffffff;
    color: #0E0E0E;
    border-color: #ffffff;
}

/* Portfolio Cards */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.portfolio-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    color: #ffffff;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8A8A8;
    margin-bottom: 15px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.portfolio-card:hover .view-project {
    gap: 12px;
}

.empty-state {
    padding: 60px 20px;
    color: #A8A8A8;
    font-size: 16px;
}

/* Responsive Blog & Portfolio */
@media (max-width: 1024px) {
    .blog-header,
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .blog-info,
    .portfolio-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog-heading h3,
    .portfolio-heading h3 {
        font-size: 32px;
    }
    
    .blog-info-text,
    .portfolio-info-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-header,
    .portfolio-header {
        padding: 40px 0;
    }
    
    .blog-heading h3,
    .portfolio-heading h3 {
        font-size: 28px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-post-card h2 {
        font-size: 24px;
    }
    
    .blog-sidebar,
    .blog-detail-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .portfolio-image-wrapper {
        height: 280px;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .blog-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   PORTFOLIO AJAX LOADING INDICATOR
   ============================================ */

.portfolio-loading {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.loading-spinner {
    text-align: center;
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-spinner p {
    color: #A8A8A8;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Portfolio Grid Fade Animation */
.portfolio-grid {
    transition: opacity 0.3s ease;
}

/* Empty State Styling */
.empty-state {
    padding: 60px 20px;
    color: #A8A8A8;
    font-size: 16px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PORTFOLIO DETAIL PAGE STYLES
   ============================================ */

.portfolio-detail-sec {
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);
    color: #ffffff;
}

.portfolio-detail-article {
    max-width: 100%;
}

.portfolio-detail-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-detail-image:hover img {
    transform: scale(1.02);
}

.portfolio-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8A8A8;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.portfolio-date {
    font-size: 14px;
    color: #A8A8A8;
}

.visit-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.visit-site-btn:hover {
    background: #ffffff;
    color: #0E0E0E;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.portfolio-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-family: Hanken-grostek, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Portfolio Content Styling - Similar to Blog */
.portfolio-detail-content h1,
.portfolio-detail-content .blog-h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: Hanken-grostek;
}

.portfolio-detail-content h2,
.portfolio-detail-content .blog-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Hanken-grostek;
}

.portfolio-detail-content h3,
.portfolio-detail-content .blog-h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 18px;
    line-height: 1.4;
    font-family: Hanken-grostek;
}

.portfolio-detail-content h4,
.portfolio-detail-content .blog-h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: Hanken-grostek;
}

.portfolio-detail-content p {
    margin-bottom: 20px;
    color: #A8A8A8;
    font-size: 18px;
    line-height: 1.8;
}

.portfolio-detail-content ul,
.portfolio-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #A8A8A8;
}

.portfolio-detail-content ul {
    list-style-type: disc;
}

.portfolio-detail-content ol {
    list-style-type: decimal;
}

.portfolio-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 18px;
}

.portfolio-detail-content blockquote {
    border-left: 4px solid #ffffff;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-style: italic;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
}

.portfolio-detail-content a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.portfolio-detail-content a:hover {
    color: #A8A8A8;
}

.portfolio-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
}

.portfolio-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

/* Portfolio Detail Sidebar */
.portfolio-detail-sidebar {
    position: sticky;
    top: 100px;
}

.project-details-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.details-list {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 15px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A8A8A8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
    flex-shrink: 0;
}

.detail-label i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.detail-value {
    color: #ffffff;
    font-size: 15px;
    text-align: right;
    flex: 1;
}

.detail-value a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.detail-value a:hover {
    gap: 12px;
    color: #A8A8A8;
}

.back-to-portfolio {
    margin-top: 30px;
}

/* Related Projects Section */
.related-projects-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: Hanken-grostek;
}

.related-projects-grid {
    margin-top: 30px;
}

/* Responsive Portfolio Detail */
@media (max-width: 1024px) {
    .portfolio-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portfolio-detail-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-value {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .portfolio-detail-content h1,
    .portfolio-detail-content .blog-h1 {
        font-size: 32px;
    }
    
    .portfolio-detail-content h2,
    .portfolio-detail-content .blog-h2 {
        font-size: 28px;
    }
    
    .portfolio-detail-content h3,
    .portfolio-detail-content .blog-h3 {
        font-size: 24px;
    }
    
    .portfolio-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ============================================
   MODERN CONTACT PAGE STYLES
   ============================================ */

.contact-sec {
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.6s ease, color 0.6s ease;
}

.contact-maintitle {
    font-family: Hanken-grostek;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A8A8A8;
    margin-bottom: 20px;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-heading h3 {
    font-family: Hanken-grostek;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    transition: color 0.6s ease;
}

.contact-info-text {
    font-family: Hanken-grostek;
    max-width: 450px;
    color: #74787C;
}

.contact-info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    font-family: Hanken-grostek;
    transition: color 0.6s ease;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0E0E0E;
    box-shadow: 0 0 0 3px rgba(14, 14, 14, 0.1);
}

.form-control::placeholder {
    color: #A8A8A8;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #0E0E0E;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Hanken-grostek;
    transition: color 0.6s ease;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 14, 14, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    color: #0E0E0E;
    font-size: 18px;
    transition: color 0.6s ease, background 0.6s ease;
}

.contact-icon i {
    transition: color 0.6s ease;
}

.contact-details h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.6s ease;
}

.contact-details p,
.contact-details a {
    color: #74787C;
    text-decoration: none;
    font-size: 15px;
    margin: 0;
    transition: color 0.6s ease;
}

.contact-details a:hover {
    color: #0E0E0E;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .contact-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .contact-heading h3 {
        font-size: 32px;
    }
    
    .contact-info-text {
        max-width: 100%;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 40px 0;
    }
    
    .contact-heading h3 {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-info-card,
    .map-container {
        padding: 20px;
    }
}

/* ============================================
   PRELOADER STYLES
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0E0E0E;
    background-image: url(./images/banner/shape-nois.png);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.preloader-logo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preloader-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    animation: preloaderZoom 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes preloaderZoom {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-logo {
        width: 150px;
        height: 150px;
    }
    
    .preloader-img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        width: 120px;
        height: 120px;
    }
    
    .preloader-img {
        max-width: 120px;
    }
    
    @keyframes preloaderZoom {
        0% {
            transform: scale(0.7);
            opacity: 0.7;
        }
        50% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(0.7);
            opacity: 0.7;
        }
    }
}

@media (max-width: 360px) {
    .preloader-logo {
        width: 100px;
        height: 100px;
    }
    
    .preloader-img {
        max-width: 100px;
    }
}

/* ============================================
   ERROR PAGES STYLES
   ============================================ */

/* Error page wrapper and nav styling */
.error-page-wrapper {
    background-color: #0E0E0E;
}

.error-page-wrapper .nav {
    background-color: #0E0E0E;
}

.error-page-sec {
    padding: 100px 0;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-content {
    padding: 60px 20px;
}

.error-number h1 {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Hanken-grostek', sans-serif;
    letter-spacing: -5px;
}

.error-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 20px;
    font-family: 'Hanken-grostek', sans-serif;
}

.error-message p {
    font-size: 18px;
    color: #999999;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background-color: #0E0E0E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #282828;
}

.error-btn:hover {
    background-color: #ffffff;
    color: #0E0E0E;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.error-btn .circle {
    width: 30px;
    height: 30px;
    background-color: #282828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.error-btn:hover .circle {
    background-color: #0E0E0E;
}

.error-btn .circle img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    display: block;
    object-fit: contain;
}

/* .error-btn:hover .circle img {
    filter: brightness(0) invert(0);
} */

.error-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.error-btn-secondary:hover {
    background-color: #ffffff;
    color: #0E0E0E;
    transform: translateY(-2px);
}

/* Responsive Error Pages */
@media (max-width: 768px) {
    .error-number h1 {
        font-size: 120px;
        letter-spacing: -3px;
    }
    
    .error-title h2 {
        font-size: 32px;
    }
    
    .error-message p {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn,
    .error-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-number h1 {
        font-size: 80px;
        letter-spacing: -2px;
    }
    
    .error-title h2 {
        font-size: 24px;
    }
    
    .error-message p {
        font-size: 14px;
    }
    
    .error-content {
        padding: 40px 15px;
    }
}