/** Header & Banner **/
#landing-page{
	overflow-x: hidden;
}
.main-banner{
    position: relative;
    top: 70px;
    padding: 60px;
	box-sizing: border-box;
}
.home-top-sec {
    width: 100%;
    padding-bottom: 20px;
}
.hm-top-container{
    position: relative;
    width: 100%;
    height: 80%;
}

.home-bg-video {
    position: absolute;
    top: 39%;
    left: 50%;
    width: 100%;
    height: 80%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.home-top-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
}

/* ========== Hero area ========== */

.hero {
  min-height: calc(var(--hero-height));
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 110px 20px 90px; /* top padding to accommodate fixed header */
  position: relative;
}

/* container centers content */
.hero .container {
  width: var(--container-width);
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.hero-top{
    margin-top: 80px;
}

/* small pill badge above */
.badge {
  display:inline-block;
  padding:8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-highlighted-menu), var(--gradient-secondary));
  color: #fff;
  font-size: .7rem;
  text-transform: uppercase;
  font-weight:700;
  letter-spacing: .3px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(8,35,251,0.12);
}

/* italic tagline */
.tagline {
  font-family: 'DM Serif Text', serif;
  font-size: 48px;
  font-style: italic;
  text-align: center;
  margin-top: 6px;
  color: rgba(2,6,24,0.9);
  line-height: 1.02;
  margin-bottom: 0;
}

/* main huge uppercase */
.main-head {
  font-weight: 900;
  text-transform: uppercase;
  font-size:3.5em;
  letter-spacing: -.5px;
  text-align: center;
  margin: 0 0 10px;
  color: #0a0a0a;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height: 0.95;
  flex-wrap:wrap;
  position: relative;
}
.main-head img{width: 100%;}
/* plus square in the middle */
.plus-square {
    width: 56px;
    margin-left: -10px;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.our-expertise{
    margin-left: -10px;
}
.plus-square img{
    width: 100%;
}

/* description paragraph */
.lead {
  max-width: 70%;
  text-align: center;
  color: var(--color-primary-heading);
  font-size: 18px;
  line-height: 1.5;
  margin: 30px 0 50px;
}

:root{
  --color-primary: #3498db;
  --color-highlighted-menu: #0823FB;
  --slider-height: 520px;      /* change as needed */
  --slider-radius: 18px;
  --autoplay-secs: 5;          /* used by JS, kept here for clarity */
}
/* layout */
.slider-container{
    width: 70%;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
    background-image: url("../images/static/banner/home_presentation_back.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

}
/* replace your slider sizing block with this */
.hero-slider { position: relative; width: 100%; max-width:100%; margin: 5% auto 30px; border-radius: var(--slider-radius); }
.slider-viewport { width: calc(100% - 8px);margin-left: 3px; margin-top: 15px; border-radius: var(--slider-radius); overflow:hidden; position:relative; }
.slides { display:flex; width: 100%; height:100%; margin:0; padding:0; list-style:none; transition: transform 620ms cubic-bezier(.2,.9,.3,1); will-change:transform; }
.slide { width:100%; height:100%; flex-shrink:0; display:block; }

.slide img { width:100%;  aspect-ratio: 1.4831; overflow: hidden; object-fit:cover; display:block; backface-visibility: hidden;
  transform: translateZ(0);}

/* dots */
.slider-dots { position:absolute; left:50%; transform:translateX(-50%); bottom: -24px; display:flex; gap: 6px; z-index:30; }
.slider-dots button { width:8px; height:8px; border-radius:99px; background: rgba(12,35,60,0.12); border:none; padding:0; cursor:pointer; transition: all .28s ease; }
.slider-dots button.active { width:24px; background: linear-gradient(90deg,var(--color-highlighted-menu),var(--color-primary)); box-shadow: 0 8px 24px rgba(8,35,251,0.12); }

/* progress bar optional */
.slider-progress { position:absolute; left:50%; transform:translateX(-50%); bottom:-18px; width:64px; height:6px; background: rgba(10,20,40,0.06); border-radius:99px; overflow:hidden; z-index:10; }
.progress-bar { width:0%; height:100%; background: linear-gradient(90deg,var(--color-highlighted-menu),var(--color-primary)); transition: width linear; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) { .slides { transition: none; } .progress-bar { transition: none; } }

/* responsive */
@media (max-width:980px){ :root{ --slider-height:420px; } }
@media (max-width:560px){ :root{ --slider-height:300px; } .slider-dots{bottom:12px;} }


/* ---------------------------
   Responsive tweaks / breakpoints
   --------------------------- */

/* very large screens (1920+) - increase container width a little */
@media (min-width: 1600px) {
  .main-head{ font-size: clamp(36px, 3.8vw, 96px); }
}

/* desktop */
@media (max-width:1199px) {
  .hero{ padding-top:100px; min-height:640px; }
  .slider-hero .bg-decor{ top:12px; height:460px; filter: blur(20px) }
}

/* tablet */
@media (max-width:900px) {
  .hero{ padding-top:92px; min-height:600px; }
  .badge{ padding:6px 12px; font-size:0.78rem; }
  .slider-hero .bg-decor{ top:8px; height:420px; opacity:0.5 }
}

/* mobile & small (down to ~340px) */
@media (max-width:560px) {
  body{ background-position: center top; }
  .header{ height:64px }
  .hero{ padding-top:88px; padding-bottom:36px; min-height:520px; }
  .tagline{ font-size: clamp(20px, 6.6vw, 34px) }
  .main-head{ font-size: clamp(20px, 8.5vw, 36px); gap:6px }
  .slider-hero{ max-width: 100%; margin-top:18px }
  .slider-card{ height: clamp(180px, 56vw, 380px) }
  .cta{ padding:12px 20px; font-size:0.9rem }
  .slider-viewport { height: calc(100% - 44px) }
  .slider-dots{ gap:8px }
  .slider-hero .bg-decor{ display:none } /* hide heavy decor on small */
}

/* very small narrow devices (around 340px) */
@media (max-width:380px) {
  .header .container { padding: 0 12px; }
  .brand img{ height:32px }
  .btn-demo{ padding:6px 12px; font-size:0.78rem }
  .lead{ font-size:13px }
}

/* reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .slides, .progress-bar { transition: none !important; }
  .btn-demo, .cta { transition: none !important; transform:none !important; }
}



/* CTA pill */
.explore-projects{
    display: grid;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 10px;
}
.cta {
    font-size: .8em;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 20px 24px;
    border-radius: 999px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--color-highlighted-menu), var(--gradient-secondary));
    color: #fff;
    font-weight:600;
    text-decoration:none;
    box-shadow: 0 14px 40px rgba(8,35,251,0.12);
    transition: transform .28s cubic-bezier(.2,.9,.3,1);
}
.explore-projects img{
    width: 24px;
    margin-left: 20px;
}
.cta:hover { transform: translateY(-4px); }

/**About Section**/
.about-sec{
    width:100%;
    margin-bottom: 20px;
}
.about-logo{
    width:32%;
    height:auto;
    float:left;
    margin-top: 30px;
    position: relative;
}
.about-logo img{
   width:20%; 
}
.about-company{
    text-transform:uppercase;
    color: #F89520;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    float:right;
    bottom: 0;
    position: absolute;
    left: 20%;
    margin-left: 20px;
    min-width: 255px;
    margin-right: 20px;
}
.about-wave-design{
    width:calc(46% - 40px);
    float:left;
    position: relative;
    margin-left: 10px;
    z-index: 999;
    margin-top: 4.5%;
    padding-left: 20px;
}
.about-wave-design img{
    width:100%;
    float:left;
    bottom: 0; 
    left: 0;
    height: 118px;  
    object-fit: contain;
    object-position: bottom left;
}
.about-wave-design-mbl{
    display: none;
}
.about-right-img{
    width:22%;
    float:right;
}
.about-right-img img{
    width:100%;
    float:right;
}
.about-agency{
    width:50%;
    height:auto;
}
.about-agency img{
    width:100%;
    margin-top: -60px;
}
.about-agency-text{
    width:444px;
    float:right;
    margin-top: -190px;
    line-height: 22px;
    color:#000;
}

.river-waves {
    position: relative;
    width: 55%;
    height: 100px;
}

/* Base wave settings */
.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: -2px;
    background-repeat: repeat-x;
}

/* FRONT WAVE */
.wave1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="40"><path d="M0 20 Q50 0 100 20 T200 20" stroke="blue" stroke-width="1" fill="none"/></svg>');
    animation: w1 10s linear infinite;
}

/* MIDDLE WAVE */
.wave2 {
    width: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="40"><path d="M0 20 Q50 0 100 20 T200 20" stroke="green" stroke-width="1" fill="none"/></svg>');
    animation: w1 10s linear infinite;
    bottom: 8px;
}

/* RIGHT → LEFT FLOW (reverse direction) */
@keyframes w1 {
    from { background-position-x: 200px; }
    to   { background-position-x: 0; }
}

@keyframes w2 {
    from { background-position-x: 300px; }
    to   { background-position-x: 0; }
}



/** Our Service section **/
.services-section {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.services-section .page-container {
    position: relative;
    z-index: 2;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); 
    z-index: 1;
}

.services-section .title {
    font-family: "SF-Pro-Display", sans-serif;
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    color:#fff;
}
.services-section .subtitle{
    padding: 10px 0;
}

.subtitle {
    width:80%;
    margin:0 auto;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
}

/* Layout Grid */
.services-grid-one-third{
    width:33.33%;
    float:left;
}
.service-grid-leftpart1{
    width:calc(100% - 10px);
    height:calc(380px - 10px);
    padding: 15px;
    box-sizing: border-box;
    background-image: url("../images/static/banner/service_web_development_back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius:40px;
}
.webDep-img{
   width:65%;
   margin: 0 auto;
   padding-top: 40px;
}
.webDep-img img{
   width:100%;
}
.serviceHead, .serviceHead-design{
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
    text-transform: uppercase;
}
.serviceHead-text{
    width:80%;
    margin: 10px auto;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
}

.service-grid-leftpart2{
    width:calc(100% - 10px);
    height:300px;
    background-image: url("../images/static/banner/digital_marketion_back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius:40px;
    margin: 10px 10px 0 0;
}
.service-grid-middelpart {
    width:calc(100% - 10px);
    height:680px;
    background-image: url("../images/static/banner/service_design_back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius:40px;
    margin: 0 5px;
}
.designDep-img{
    width:75%;
    margin:0 auto;
    padding-top: 40px;
}
.designDep-img img{
   width:100%;
}
.serviceHead-design{
    font-size: 40px;
}
.designItem{
    padding:40px 0 0 0;
}
.designItem li{
    padding:10px 0;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.service-grid-rightpart1 {
    width: calc(100% - 10px);
    height: 300px;
    background-image: url("../images/static/banner/digital_marketion_back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    margin-left: 10px;
    position: relative; /* Required for absolute child */
    overflow: hidden;
}

.service-card-digital {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 2; /* Keep text above background image */
    box-sizing: border-box;
}

/* Text Section */
.service-card-digital .service-text {
    width: 60%;
    position: relative;
    z-index: 3;
}

.service-card-digital h2 {
    width:300px;
    font-size: 22px;
    margin-bottom: 12px;
    color: #FFF;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
}

.service-card-digital p {
    font-size: 12px;
    line-height: 5px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    z-index: 999;
}

/* Image Section — positioned in bottom-right corner */
.service-card-digital .service-image {
    position: absolute;
    right: 15px;
    bottom: 0;
    width: 45%;
}

.service-card-digital .service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.service-grid-rightpart2{
    width:calc(100% - 10px);
    height:calc(380px - 10px);
    background-image: url("../images/static/banner/app_development_back.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius:40px;
    margin: 10px 0 0 10px;
}
/** Eof Our Service section **/

/** Our latested Project**/
.ourProject-section .title{
    font-size: 70px;
    font-weight: 500;
    color:var(--color-primary-heading);
}
.ourProject-section .subtitle{
    color:#2D2D2D;
    padding: 10px 0;
}
.ourProject-section .page-container{
    padding-bottom:10px;
}
.portfolio-section{
    overflow-x: scroll;
    &::-webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
    }
/* Section Wrapper */
.portfolio-tabs {
    display: flex;
    justify-content: center;   /* CENTER ALL TABS */
    gap: 25px;
    /*margin-bottom: 30px;*/
    padding: 0;
    min-width: 680px;
}

.portfolio-tabs .port-tab {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #010101;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    padding-bottom: 8px;

}

.portfolio-tabs .port-tab:hover {
    color: #000;
}

.portfolio-tabs .port-tab.active {
    color: #4E1CDC;
    font-weight: 600;
}

.portfolio-tabs .port-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 2px;
    background: #4E1CDC;;
    border-radius: 5px;
}
/* Horizontal Scroll Grid */
.portfolio-grid {
    position: relative;
    background: #fff;
    overflow-x: hidden;

}

.marquee-wrapper {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: clamp(30px, 2.5vw, 30px);
  animation: scroll-marquee 35s linear infinite;
  width: max-content;
  padding: 30px 0 60px 0;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* marquee animation */
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* pause on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}
.bank-card:hover {
  transform: scale(1.09);
}


/* Portfolio cards */
.portfolio-card {
    width: 500px; /* card width for horizontal scrolling */
    height: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);*/
    display: inline-block; /* keeps cards in a row */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: scale(1.09);
}
.portfolio-card img {
    width: 100%;
    display: block;
}
/** Eof Our latested Project**/

/** Our Clients Saying**/
.ourClient-section{
    background-color: #FAFAFF;
}
.ourClient-section .title{
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    color:var(--color-primary-heading);
}
.ourClient-section .subtitle{
    color:#2D2D2D;
    padding: 10px 0;
}

/* Wrapper */
.testimonial-wrapper {
    width: 100%;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:0 auto;
}

/* Slider Layout */
.testimonial-slider {
    display: flex;
    gap: 30px;
}

/* All Cards */
.testimonial-card {
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Side Cards */
.side-card {
    width: 180px;
    color: #fff;
}

.purple-bg {
    background: #4E1CDC;
}

.green-bg {
    background: #01EDB9;
}

.side-card .client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.client-name-side{
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}
.location-side{
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
}
.company-tag {
    margin-top: 35px;
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
    color: #e0004d;
    font-weight: bold;
    border-radius: 8px;
}

.testimonial-selimage-area{
    width:28%;
    float:left;
}
.testimonial-selimage-area img{
    width:100%;
}
.testimonial-seltext-area{
    width:71%;
    float:right;
    margin-left: 1%;
}
.stars {
    color: #FFBB18;
    font-size: 18px;
    margin-bottom: 3px;
    margin-top:6px;
    text-align: center;
}
.client-name{
    margin-top:45px;
    color: #474747;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
}

/* Main Card */
.main-card {
    width: 50%;
    background: #ffffff;
    padding:25px;
}

.main-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    margin-left: auto;
    width: 60px;
}
.review-text {
    font-family: "GeorgiaPersonalUse", serif;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.2;
    color: #444;
    padding-left: 10px;
}


/* Location */
.location {
    color: #474747;
    padding-left: 10px;
    font-size: 13px;
}

.main-card .location {
    color: #888;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Pagination Dots */
.testimonial-dots {
    margin-top: 20px;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background: #4E1CDC;
    width: 20px;
    border-radius: 10px;
}
.testimonial-slider-mbl{
    display: none;
}
.testimonial-slider-container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.testimonial-sldr-container-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.testimonial-slider-container .side-card, .testimonial-slider-container .main-card{
    width: 100%;
    box-sizing: border-box;
}

/** industry section**/
.industry-section .title{
    font-size: 50px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color:var(--color-primary-heading);
}
.industry-section .subtitle{
    color:#2D2D2D;
    padding: 10px 0;
    text-align: left;
    width:80%;
    margin: unset;
    margin-bottom: 30px;
}

.industry-grid {
    width:100%;
    float:left;
    gap: 20px;
}

.industry-card {
    width:15.7%;
    float: left;
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    gap: 20px;
    height: 160px;
    margin-right: 20px;
    position: relative;
    color: #010101;
}
.industry-card{
    margin-bottom: 20px;
}
.industry-card-big{
    width:28.5%;
    margin-right: 0px;
}

.industry-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.85;
}

.industry-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    bottom:10px;
    position: absolute;
    padding-right: 20px;
}

/* Hover Effect */
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.grad1{background-image: url(../images/site/industry/education_back.webp); 
    background-size: cover;
    background-position: center;}
.grad2{background-image: url(../images/site/industry/medical_back.webp);
    background-size: cover;
    background-position: center;
}
.grad3{background-image: url(../images/site/industry/food_back.webp);
    background-size: cover;
    background-position: center;
}
.grad4{background-image: url(../images/site/industry/banking_back.webp);
    background-size: cover;
    background-position: center;
}
.grad5{background-image: url(../images/site/industry/travel_back.webp);
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}
.grad6{background-image: url(../images/site/industry/attorney_back.webp);
    background-size: cover;
    background-position: center;
}
.grad7{background-image: url(../images/site/industry/realestate_back.webp);
    background-size: cover;
    background-position: center;
}
.grad8{background-image: url(../images/site/industry/law_back.webp);
    background-size: cover;
    background-position: center;
}
.grad3-mbl{
    display: none;
}

/* Responsive */
@media (max-width: 1420px) {
    .industry-card-big {
        width:27%;
    }
}
@media (max-width: 1340px) {
    .industry-card-big {
        width:25%;
    }
}

@media (max-width: 768px) {
    .industry-card {
        height: auto;
    }
}

/**Contact Area**/
.contactArea-bg{
    background-image:url(../images/static/banner/request_demo_back.webp);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 15px;
    position: relative; 
}
.contact-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
.contactArea-containside{
    width:35%;
    float:left;
    padding:50px 0; 
}

.contact-wrapper-top{
    padding: 0 25px;
}
.contactArea-head, .contactArea-head2{
    font-size:30px;
    font-weight: 100;
    color:#fff;
}
.contactArea-head2{
   font-size:40px;
   font-weight: 700;  
}
.contactArea-subtitle{
   font-size:12px;
   font-weight: 200;
   color:#fff;
   margin-top: 10px;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 450px;
    margin-top: 15px;
    padding: 0 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08); /* transparent glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 25px 20px;
    color: white;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    height: 100px;
}

.stat-box .icon {
    margin-bottom: 15px;
}

.stat-box .icon img {
    width: 38px;
    filter: brightness(0) invert(1);
}

.stat-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.stat-box .star-text {
    color: #B6B5E8;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contactArea-formside{
    width:40%;
    padding:20px 30px;
    background-color:#fff;
    border-radius: 15px 15px 0 0;
    position: relative;
    margin-left:-70px;
}

/* Wrapper */
.request-modal {
    width: 100%;
    background: #fff;
    border-radius: 18px;
}

/* Header */
.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.request-header h2 {
    margin: 0;
    font-size: 18px;
    color: #010101;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.close-btn {
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
}

/* Form Layout */
.request-form {
    margin-top: 10px;
}

.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
}

.form-group.full {
    width: 100%;
    margin-bottom: 18px;
}

/* Labels */
.form-group label {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
    color: #010101;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left:0px !important;
}

.contactArea-formside input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #DEDEDE;
    font-size: 14px;
    background: #f8f8f8;
	box-sizing: border-box;
}
.contactArea-formside input::placeholder,
.contactArea-formside textarea::placeholder,
.contactArea-formside select::placeholder {
    color: #b5b5b5;
    padding-left:10px;
}


.contactArea-formside select {
 	width:100%;
    appearance: none;
    height:38px;
    padding-left:10px;
	border-radius:5px;
}


.contactArea-formside .file-input {
    color:#010101;
    background: #EEEEEE;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid #ddd;
    position: relative;
}

.contactArea-formside .file-input input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
}


.contactArea-formside textarea {
	width: 100%;
    height: 70px;
    resize: none;
}

/* Submit button */
.contactArea-formside .submit-btn {
    width: 40%;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: #0050ff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    float:right;
}

.input-error {
    border-color: #e53e3e !important;
}

.contactArea-formside .form-group input::placeholder,
.contactArea-formside .form-group textarea::placeholder {
    padding: 0; /* placeholder has no padding */
}
.hd-pop-btn-area{
	display: flex;
}

.slider-viewport li{
    cursor:auto;
}
@media (max-width: 900px){
    .contact-wrapper{
        flex-direction: column;
        align-items: center;
    }

    .contactArea-containside,
    .contactArea-formside{
        width: 100%;
    }
   
   
}

/** Eof Contact Area**/

/** Blog section**/
.blog-section {
    width:100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    width: 31.6%;
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 5px;
    color: #000;
}

.blog-card .date {
    font-size: 14px;
    color: #848484;
    margin: 0;
    font-weight: 500;
}
.blog-sec .title{
    font-family: 'DM Serif Text', serif !important;
}

@media screen and (min-width: 1820px) 
{
    .hero-slider{
        margin-top: 60px;
    }
}
@media screen and (min-width: 1480px) 
{
   
}
@media screen and (max-width: 1380px) 
{
    /* Project section */
    .portfolio-card {
        width: 420px;
    }
}



@media screen and (max-width: 1280px) {
	.popup-box {
    	width: 80%;
	}
}
@media screen and (max-width: 1200px) {
    /* Request Demo */
    .contactArea-containside {
        width: 45%;
    }
    
}
@media screen and (max-width: 1100px) {
    /* Main banner */
    .lead {
        max-width: 80%;
    }
    .slider-container {
        width: 80%;
    }
	.hero-slider {
        position: relative;
        margin: 4.5% auto 30px;
    }
    .slider-viewport {
        width: calc(100% - 5px);
        margin-left: 2px;
    }

    /* About compani */
   .about-wave-design {
        width: calc(42% - 40px);
        margin-left: 50px;
   }
   /* Service section */
   .serviceHead, .serviceHead-design {
    font-size: 24px;
   }

   /* Latest Project */
    .ourProject-section .title {
        font-size: 50px;
    }
     /* Project section */
     .marquee-content{
        gap: clamp(20px, 2.5vw, 20px);
     }
    .portfolio-card {
        width: 300px;
    }
    /* Our Client Section */
    .ourClient-section .title{
        font-size: 50px;
    }
    /* Industry Section */
    .industry-card-big {
        width: 24%;
    }
}
@media screen and (max-width: 1024px) {
    .page-container {
        position: relative;
    }
     /* About compani */
    .about-wave-design-wb{
        display: none;
    }
    .about-wave-design-mbl{
        display: block;
    }
    .about-right-img{
        width: 30%;
        position: absolute;
        right: 0;
        top: 38%;
    }
    .about-logo{
        width: 80%;
        margin-bottom: 40px;
    }
    .about-agency {
        width: 60%;
        margin-top: 80px;
    }
    .about-agency-text{
        width: 100%;
        margin-top: 0;
    }
    .about-wave-design {
        width: 60%;
        margin-left: 0;
        z-index: 999;
        margin-top: 0;
        padding-left: 0;
    }
    .river-waves {
        margin-top: 40px;
        height: 70px;
    }
   /* Idustry experience */
    .industry-card{
        width: calc(33.3333% - 10px);
        box-sizing: border-box;
        height: 185px;
    }
    .industry-card h4{
        position: relative;
        padding-right: 0;
        margin-bottom: 0;
        bottom: 0;
    }
    .industry-card-big {
        width: calc(50% - 7.5px);
        float: left;
        box-sizing: border-box;
    }
    .grad5{
        margin-right: 0px !important;
    }
    .grad1, .grad2, .grad4, .grad6, .grad7{
        margin-right: 15px;
    }
    .grad3{
        margin-right: 0;
    }
    .industry-card{
        margin-bottom: 15PX;
    }
    /* Request Demo */
    .contactArea-containside {
        width: 47%;
    }
}
@media screen and (max-width: 1000px) {
	
	
	
}

@media screen and (max-width: 980px) {
    .slider-container {
        width: 100%;
    }
    .slider-viewport {
        width: calc(100% - 4px);
        margin-left: 2px;
        border-radius: 16px;
    }
    /* Service section */
   .serviceHead, .serviceHead-design {
        font-size: 24px;
   }
   .services-section .services-grid-one-third{
        width: 50%;
   }
    .services-section .services-grid-one-third-lst {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .service-grid-leftpart2, .service-grid-rightpart1{
        margin: 20px 10px 0 0;
    }
    .service-grid-rightpart2{
        margin: 0;
    }
    /* Client section */
    .testimonial-slider-wb{
        display: none;
    	padding: 25px;
    }
    .testimonial-slider-mbl{
        display: block;
        margin-top: 15px;
    }
    .testimonial-des {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .testimonial-card{
        width: 100%;
        box-sizing: border-box;
    }
	.location-side{
        display: block;
        width: 100%;
    }
    
     /* Request Demo */
	.contactArea-bg {
        background-image: none;
     }
     .contactArea-containside{
        background-image: url(../images/static/banner/request_demo_back.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
     }
     .contactArea-formside {
        width: 100%;
        border-radius: 0;
        margin-left: 0;
        bottom: 0;
        padding: 20px 0;
    }
    .contactArea-containside {
        width: 100%;
    }
    .contactArea-formside{
        box-sizing: border-box;
    }
	.contact-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
    }
    .contactArea-formside .submit-btn {
        width: 170px;
    }
    .form-group select{
        width: 100%;
    }
	
}

@media screen and (max-width: 880px) {
	
}

@media screen and (max-width: 780px) {
    .slider-viewport {
        border-radius: 14px;
        width: 100%;
        margin-left: 0;
    }
    /* Project Section */
    .portfolio-tabs{
        gap: 20px;
    }

}

@media screen and (max-width: 768px) {
    /* Main banner */
    .lead {
        max-width: 100%;
    }
	
	/* Services Section */
    .services-section .title, .ourClient-section .title{
        font-size: 40px;
    }
    /* Latest Project */
    .ourProject-section .title {
        font-size: 42px;
    }
    .ourProject-section .subtitle, .ourClient-section .subtitle{
        width: 100%;
    }
    
/* Blog */
   
    .blog-section {
        gap: 20px;
    }
    .blog-card {
        width: 100% !important;
    }
    /* Industry Section */
    .industry-section .page-container h1{
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
	
}

@media screen and (max-width: 720px) {
	
}

@media screen and (max-width: 660px) {
    /* Idustry experience */
    
    .industry-card h4{
        font-size: 17px;
    }
}

@media screen and (max-width: 640px) {
    .page-container {
        width: 100% !important;
        margin: 0 auto;
        /*padding: 60px 20px;*/
        box-sizing: border-box;
    }
    /* Main banner */
    .main-banner{
        padding: 60px 16px;
    }
    .main-banner .container{
        padding: 20px 0;
    }
    .lead{
        padding: 0;
    }
    .slider-dots {
        bottom: -17px;
    }
/* About compani */
    .about-company{
        font-size: 16px;
    }
    .about-right-img{
        width: 30%;
        position: absolute;
        right: 5px;
        top: 34%;
    }
    /* Services Section */
    .services-section .title{
        font-size: 36px;
    }
    .services-section .subtitle{
        width: 100%;
        margin-bottom: 20px;
    }
    .services-section .services-grid-one-third{
        width: 100%;
        box-sizing: border-box;
        margin-top: 15px;
   }
   .services-section .services-grid-one-third-lst {
        grid-template-columns: 1fr;
        gap: 15px;
    }
   .service-grid-middelpart, .service-grid-rightpart2{
    height: auto;
    padding-bottom: 20px;
   }
    .service-grid-leftpart1{
        height: 100%;
    }
    .service-grid-leftpart2{
        margin-bottom: 15px;
    }
	.service-grid-middelpart{
        width: 100%;
        margin: 0;
    }
    .service-grid-leftpart2{
        margin: 15px 0 0 0;
    }
    .service-grid-leftpart1, .service-grid-leftpart2{
        width: 100%;
        box-sizing: border-box;
    }
    .service-grid-rightpart1, .service-grid-rightpart2{
        width: 100%;
        margin: 0;
    }
     /* Project section */
     .marquee-content{
        gap: clamp(15px, 2.5vw, 15px);
     }
    .ourProject-section .title, .ourClient-section .title {
        font-size: 36px;
    }
    .portfolio-card {
        width: 280px;
    }
     /* Client section */
     .testimonial-sldr-container-top {
        gap: 20px;
    }
    .testimonial-slider-container {
        gap: 20px;
    }
     .testimonial-slider-container .side-card{
        padding: 15px;
     }
     .client-name-side{
        font-size: 16px;
        margin-bottom: 5px;
     }
     .company-tag{
        margin-top: 25px;
        font-size: 14px;
     }
    .testimonial-slider-container .main-card {
        padding: 15px;
    }
    /* Idustry experience */
    .industry-card{
        width: calc(50% - 7.5px);
        box-sizing: border-box;
        height: 180px;
    }
    .industry-card h4{
        position: relative;
        padding-right: 0;
        margin-bottom: 0;
        bottom: 0;
    }
    .grad3-mbl{
        display: block;
    }
    .grad3-web{
        display: none;
    }
    .industry-card-big {
        width: 100%;
        float: left;
        box-sizing: border-box;
    }
    .grad5{
        margin-right: 0px;
    }
    .grad1, .grad4, .grad3, .grad6, .grad7{
        margin-right: 15px;
    }
    .grad6, .grad2{
        margin-right: 0;
    }
    .industry-card{
        margin-bottom: 15PX;
    }
	.popup-box {
        width: 95%;
    }
	.header-request-popup-frm .form-row {
    	grid-template-columns: 1fr;
	}
	
}
@media screen and (max-width: 540px) {
    .slider-container{
        padding: 3px;
    }
    .slider-viewport {
        border-radius: 6px;
    }
}
@media screen and (max-width: 480px) {
    /* About compani */
    .about-right-img{
        top: 32%;
    }
     /* Project section */
    .ourProject-section .title, .ourClient-section .title {
        font-size: 30px;
    }
    .ourProject-section .subtitle {
        margin-bottom: 30px;
    }
    /* Request Demo */
    .form-row{
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 420px) {
	
}
@media screen and (max-width: 380px) {
	
	
}

@media screen and (max-width: 340px) {
	
}

@media screen and (max-width: 300px) {
	
	
}