@font-face {
  font-family: 'MyCustomFont';
  src: url('AGRANDIR-REGULAR.OTF') format('truetype');
  /* Agar woff ya otf ho to format mein wo likhna */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background-color: #fff;
  font-family: 'MyCustomFont', sans-serif;
  scroll-behavior:smooth !important;
}

.hero-section {
  background-image: url(assets/images/xbg-vision.jpg);
}

.inner-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  height: 80vh;
  padding: 50px 0 50px 0px;
}

.hero-text {
  flex: 1;
  width: 60%;
}

.hero-text h3 {
  color: #007bff !important;
  font-weight: 100;
  margin-bottom: 10px;
}

.hero-text h1 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 600 ;
  text-transform: capitalize;
  line-height: 62.5px;
}

.hero-text p {
  font-family: "Helvetica", Sans-serif;
  margin-bottom: 20px;
  font-size: 16px;
    font-weight: 400;
  line-height: 24px;
  color: #000000;
  width: 90%;
}

.hero-text button {
  font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #329FF4;
    text-transform: capitalize;
    background-color: #329FF4;
    padding: 18px 30px 18px 30px;
    border-radius: 5px 5px 5px 5px;
    color: white;
}

.hero-form {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0px 0px 9px 8px rgba(0, 0, 0, 0.06);
  max-width: 38% ;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.hero-form h2 {
  font-family: "MyCustomFont", Sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 62.5px;
  color: #000000;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.form-grid .col1 {
  grid-column: 1; /* first column */
  grid-row: 1;
}
.form-grid .col2 {
  grid-column: 2; /* second column */
  grid-row: 1;
}
.form-grid .col3 {
  grid-column: 1 / span 2; /* span across both columns */
  grid-row: 2;
}
.form-grid .col4 {
  grid-column: 1 / span 2; /* span across both columns */
  grid-row: 3;
}

.form-grid input,
.form-grid textarea {
    border: 1px solid #A6A6A6;
    width: 100%;
    font-family: "Helvetica", Sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 16px;
    padding: 13px 16px;
    font-size: 14px;
}

.hero-form button {
  width: 100%;
  padding: 19px;
  background-color: #329FF4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.note {
  margin-top: 25px;
  font-size: 12px;
  color: #555;
  font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 24px;
    color: #000000;
}

.note a {
  color: #007bff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }
  .hero-text,
  .hero-form {
    width: 100%;
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .hero-form {
    margin-top: 30px;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid input,
  .form-grid textarea {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .hero-text h3 {
    font-size: 16px;
  }
  .hero-text p {
    font-size: 14px;
    line-height: 22px;
  }
  .hero-text button,
  .hero-form button {
    font-size: 14px;
    padding: 14px 20px;
  }
  .hero-form h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .note {
    font-size: 14px;
    line-height: 20px;
  }
}
/* hero section media query end here */


/* Hero Section End */

/* CTA Section */

.cta-section {
    background: linear-gradient(90deg, #36a6f3, #3ec3ff); /* blue gradient */
    padding: 40px 20px;
    color: white;
  }

  .cta-content {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .cta-content h2 {
    font-size: 42px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 62px;
    width: 62%;
  }

  .cta-button {
    background-color: #000;
    color: #fff;
    padding: 18px 30px 18px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }

  .cta-button:hover {
    background-color: #222;
  }
/* Cta section media query start here */

/* Tablet Screens */
@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-content h2 {
    width: 100%;
    font-size: 32px;
    line-height: 44px;
  }
  .cta-button {
    font-size: 15px;
    padding: 16px 28px;
  }
}
/* Mobile Screens */
@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .cta-button {
    font-size: 14px;
    padding: 14px 24px;
  }
}
/* Cta section media query end here */

/* CTA Section End */

/* Counter Section */
.counter-box-section {
  padding: 100px 0px 100px 0px;
  width: 1400px;
  margin: auto;
}
.counter-box-section h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 62.5px;
  margin-bottom: 16px;
}
.counter-box-section p {
  max-width: 70%;
  font-family: "Helvetica", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.stats-container {
  background: url(images/8835720a38b49728405598317bfc8d72.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 20px;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

}
.stats-column{
  display: flex;
  justify-content: space-between;
  column-gap: 60px;
}
.stat .number {
  font-family: "Helvetica", Sans-serif;
  font-size: 75px;
  font-weight: 700;
  text-align: center;
}
.stat .label {
  margin-top: 8px;
  justify-content: center;
  color: #FFFFFF;
  font-family: "Helvetica", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  word-spacing: 1px;
}
.stats-container .btn {
  margin-top: 20px;
  font-family: "Helvetica", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  background-color: #000;
  border-radius: 5px 5px 5px 5px;
  padding: 18px 30px 18px 30px;
  border-width: 2px 2px 2px 2px;
  border-style: solid;
  border-color: #FFFFFF;
}
.stats-container .btn:hover {
  background: #fff;
  color: #000;
}

/* 💻 Laptop: Max-width 1250px */
@media (max-width: 1250px) {
  
.hero-text h1 {
    font-size: 45px;
    line-height: 45.5px;
}

.btn{
  font-size: 16px;
}

  .counter-box-section h2 {
    font-size: 42px;
  }

  .counter-box-section p {
    max-width: 90%;
  }

  .stat .number {
    font-size: 60px;
  }

  .stat .label {
    font-size: 18px;
  }
}

/* 📱 Tablet: Max-width 768px */
@media (max-width: 768px) {
  .counter-box-section {
    padding: 100px 0px 100px 0px;
    width: 700px;
    margin: auto;
  }
  .stats-column {
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
  }

  .counter-box-section h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .stat .number {
    font-size: 55px;
  }

  .stat .label {
    font-size: 16px;
  }

  .counter-box-section p {
    max-width: 100%;
    font-size: 15px;
  }

  .stats-container {
    padding: 60px 20px;
  }
}

/* 📲 Mobile: Max-width 350px */
@media (max-width: 450px) {
  
  .counter-box-section {
    padding: 50px 0px 100px 0px;
    width: 350px;
    margin: auto;
  }
  
  .counter-box-section h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .stat .number {
    font-size: 45px;
  }

  .stat .label {
    font-size: 15px;
  }

  .counter-box-section p {
    font-size: 14px;
    line-height: 22px;
  }

  .stats-container .btn {
    font-size: 14px;
    padding: 14px 24px;
  }

  .container.scrollable-section.scroll_sction_new {
    flex-direction: column;
}

.left-content {
  width: 100% !important;
}

.right-content{
  width: 100% !important;
}

.right-row-new {
  max-height: 1000px !important;
}

.scroll_sction_new {
  height: auto !important; 
}

.right-content.right-row-new {
  flex-direction: column;
  max-width: 100% !important;
  justify-content: flex-start;
}

.dev-services {
  padding: 50px 0 50px 0;
}

.outsource {
  padding: 50px 0 50px 0 !important;
}

.ddp-section {
  padding: 50px 0px;
  background-color: #000;
}

.review{
  margin-top: 0 !important;
}

.dev-services{
  padding: 50px 0 50px 0 !important;
}





}


/* Counter Section End  */

/* Our-service */

.container.scrollable-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 9;
}
  .left-content {
    width: 50%;
  }
  .right-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  .section-title {
    color: #2d8eff;
    font-size: 20px;
    font-weight: 500;
  }
  .main-heading {
    font-size: 42px;
    font-weight: bold;
    margin-top: 10px;
  }
  .sub-text {
    font-size: 16px;
    margin: 20px 0 40px;
    max-width: 700px;
    color: #333;
  }
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
  .stat-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .stat-icon {
    width: 50px;
    height: 50px;
    background: #eaf3f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stat-content strong {
    font-size: 16px;
  }
  .stat-content {
    font-size: 14px;
    color: #444;
  }
  .btn {
    background-color: #2196f3;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
  }

  .service-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd7bb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
  }
  .service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .service-desc {
    font-size: 14px;
    color: #555;
  }

  .scroll_sction_new {
  position: relative;
  height: 100vh; /* Taake section poori screen cover kare */
  overflow: hidden;
}

.image-choices-choice-selected span.image-choices-choice-text {
  font-size: 25px !important;
}

.sticky {
  position: sticky;
  top: 0;
}

.services-grid.scroll-up-new {
  width: 100%;
}

.scroll-down-new {
  justify-content: end;
  width: 100%;
}

.right-row-new {
  max-height: 600px; /* Apni requirement ke mutabiq set karo */
  overflow: hidden !important;
}

/* Our-service End */

/* Portfolio Section */

.portfolio-section{
  width: 1400px;
  margin: auto;
  align-items: center;
  padding: 50px 0 50px 0;
}
.portfolio-section h3{
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 22px;
  color: #2891F1;
  margin-bottom: 20px;
} 
.portfolio-section h2{
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 58px;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.portfolio-section p{
  margin: 0 auto;
  width: 60%;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Poppins", Sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
/* Slider */

.portfolio-slider {
  max-width: 100%;
  height: 450px;  
  padding-bottom: 50px;
}

.swiper {
  width: 90%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
/* Slider */

/* 💻 Laptop: Max-width 1250px */
@media (max-width: 1250px) {
  .portfolio-section h2 {
    font-size: 40px;
    line-height: 50px;
    width: 80%;
  }

  .portfolio-section p {
    width: 80%;
    font-size: 15px;
  }

  .portfolio-slider {
    height: 400px;
  }

  .slide-caption {
    font-size: 16px;
  }
}

/* 📱 Tablet: Max-width 768px */
@media (max-width: 768px) {
  .portfolio-section{
    width: 768px;
    margin: auto;
    align-items: center;
    padding: 50px 0 50px 0;
  }

  .portfolio-section h2 {
    font-size: 32px;
    line-height: 42px;
    width: 90%;
  }

  .portfolio-section p {
    width: 90%;
    font-size: 14px;
    line-height: 22px;
  }

  .portfolio-slider {
    height: 350px;
  }

  .slide-caption {
    font-size: 15px;
    padding: 6px 12px;
  }

  .swiper {
    width: 100%;
  }
}

/* 📲 Mobile: Max-width 350px */
@media (max-width: 400px) {

  .portfolio-section{
    width: 350px;
  }

  .portfolio-section h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .portfolio-section p {
    font-size: 13px;
    line-height: 20px;
  }

  .portfolio-slider {
    height: 280px;
  }

  .slide-caption {
    font-size: 13px;
    padding: 5px 10px;
  }
}


/* Portfolio Section End */

/* Development Service */

.dev-services{
  background-color: #f5fafe;
display: flex;
flex-direction: column;
padding: 100px 0 100px 0;
margin-top: 50px;
justify-content: center;
align-items: center;
text-align: center;

}
.dev-services h2{
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 62px;
  width: 70%;

}
.dev-services p{
  width: 60%;
  margin: 20px 0 20px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Helvetica", Sans-serif;
}
.custom-service {
  width: 1400px;
  background-color: #2891F10F;
  margin-top: 50px;

}
.custom-services{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px 30px 10px;
  border-top: 2px solid #0000007A;
}
.custom-services:hover {
  background-color: #2891F1;
  color: white;
  border: none;
  transform: scale(0.99);
  transition: 0.5s !important;
}
.custom-services:hover h2, .custom-services:hover p {
  color: white;
}
.custom-services h2{
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  text-align: start;
  width: 50%;
  font-family: "Helvetica", Sans-serif;
  padding: 10px;
}
.custom-services p{
  font-family: "Helvetica", Sans-serif;
  text-align: start;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
#custom-last{
  border-bottom: 2px solid #0000007A;
}

/* 💻 Laptop - Max 1250px */
@media (max-width: 1250px) {
  .dev-services h2 {
    font-size: 40px;
    line-height: 52px;
    width: 80%;
  }

  .dev-services p {
    width: 80%;
  }

  .custom-services {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-services h2,
  .custom-services p {
    width: 100%;
    text-align: start;
  }
}

/* 📱 Tablet - Max 768px */
@media (max-width: 768px) {
  .custom-service{
    width: 768px;
  }
  
  .dev-services h2 {
    font-size: 32px;
    line-height: 42px;
    width: 90%;
  }

  .dev-services p {
    width: 90%;
    font-size: 15px;
    line-height: 22px;
  }

  .custom-services h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .custom-services p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* 📲 Mobile - Max 350px */
@media (max-width: 450px) {
  .custom-service{
    width: 350px;
  }
  
  .dev-services h2 {
    font-size: 24px;
    line-height: 34px;
    width: 100%;
  }

  .dev-services p {
    width: 100%;
    font-size: 14px;
  }

  .custom-services h2 {
    font-size: 20px;
  }

  .custom-services p {
    font-size: 14px;
  }
}

/* Development Service End*/

/* Outsource service */

.outsource{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-image: url(images/bullet-scaled.webp);
  background-position: center;
  background-size: cover;
  padding: 135px 0px 135px 0px;
}
.outsource h2{
  width: 50%;
  text-align: center;
  font-size: 48px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 58px;
    color: #FFFFFF;
} 
.outsource-btn{
  padding: 20px 20px 20px 20px;
  background-color: #000;
  color: white;
  border: 2px solid white;
  border-radius: 5px;
  text-decoration: none;
}

/* 💻 Laptop - Max 1250px */
@media (max-width: 1250px) {
  .outsource h2 {
    width: 70%;
    font-size: 42px;
    line-height: 54px;
  }
}

/* 📱 Tablet - Max 768px */
@media (max-width: 768px) {
  .outsource h2 {
    width: 90%;
    font-size: 32px;
    line-height: 42px;
  }

  .outsource-btn {
    padding: 16px;
    font-size: 16px;
  }
}

/* 📲 Mobile - Max 350px */
@media (max-width: 350px) {
  .outsource h2 {
    width: 100%;
    font-size: 24px;
    line-height: 34px;
  }

  .outsource-btn {
    padding: 14px;
    font-size: 15px;
  }
}

/* Outsource service End */

/* design and development process */

.ddp-section{
  padding: 100px 0px 100px 0px;
  background-color: #000;
}
.ddp{
  display: flex;
  width: 1400px;
  margin: auto;
  gap: 20px;
  flex-direction: column;
}
.ddp h2{
  font-size: 39px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 52px;
    color: #FFFFFF;
}
.ddp p{
  color: white;
  width: 70%;
}

/* Icon Slider */

.mySwiper {
  width: 100%;
  max-width: 100%;
  padding: 40px 20px;
  margin-top: 30px;
}


.swiper-slide.card {
  background: #111;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 350px; /* Adjust height as needed */
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.card-icon {
  font-size: 20px;
  font-weight: bold;
  color: #00bfff;
  margin-bottom: 10px;
}

.icon-image {
  font-size: 40px;
  margin-bottom: 15px;
}

.mySwiper h3 {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 20px;
}

.mySwiper p{
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  width: 100%;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

/* 💻 Laptop - Max 1250px */
@media (max-width: 1250px) {
  .ddp {
    width: 90%;
  }

  .ddp h2 {
    font-size: 34px;
    line-height: 48px;
  }

  .ddp p {
    width: 90%;
  }
}

/* 📱 Tablet - Max 768px */
@media (max-width: 768px) {
  .ddp h2 {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }

  .ddp p {
    width: 100%;
    text-align: center;
  }

  .swiper-slide.card {
    padding: 20px;
    min-height: 300px;
  }
}

/* 📲 Mobile - Max 350px */
@media (max-width: 400px) {

  .dual-slider-wrapper{
    flex-direction: column;
  }

  .ddp h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .ddp p {
    font-size: 14px;
    line-height: 22px;
  }

  .swiper-slide.card {
    padding: 15px;
    min-height: 280px;
  }

  .icon-image {
    font-size: 32px;
  }

  .mySwiper h3 {
    font-size: 18px;
  }

  .mySwiper p {
    font-size: 14px;
  }
}

/* Icon Slider End */

/* design and development process End */

/* wordpress website development services */

.wwds{
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0px 100px 0px;
}

.wwds h2{
  font-size: 48px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 58px;
}
.wwds p{
  width: 70%;
  line-height: 22px;
  font-family: "Helvetica", Sans-serif;

}

.tabs {
  text-align: center;
  margin: 20px auto;
  width: 50%;
}

.tab-buttons {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
}

.tab-buttons li {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  position: relative;
}

.tab-buttons li.active {
  color: #2196f3;
}

.tab-buttons li.active::after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 80%;
  background: #2196f3;
  margin-top: 5px;
}

.tab-content {
  display: none; /* This will hide all tabs by default */
  margin-top: 30px;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.tab-content.active {
  display: flex; /* Only active tab content will show */
}
.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon img {
  height: 100px;
  margin-bottom: 10px;
}

/* 💻 Laptop: max 1250px */
@media (max-width: 1250px) {
  .wwds {
    width: 90%;
  }

  .wwds h2 {
    font-size: 40px;
    line-height: 52px;
  }

  .wwds p {
    width: 90%;
    font-size: 15px;
  }

  .tabs {
    max-width: 100%;
  }
}

/* 📱 Tablet: max 768px */
@media (max-width: 768px) {
  .wwds h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .wwds p {
    width: 100%;
    font-size: 14px;
  }

  .tab-buttons {
    flex-direction: row;
    align-items: center;
  }

  .tab-buttons li {
    padding: 8px 16px;
  }

  .icon {
    width: 100px;
  }

  .icon img {
    height: 50px;
  }
}

/* 📲 Mobile: max 400px */
@media (max-width: 400px) {
  
  .wwds{
    padding: 50px 0px 0px 0px;
  }
  
  .wwds h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .wwds p {
    font-size: 14px;
    line-height: 20px;
  }

  .tabs{
    width: 100%;
  }

  .tab-content {
    gap: 30px;
  }
  .tab-buttons {
    flex-direction: row !important;
    align-items: center;
    flex-wrap: wrap;
}

  .tab-buttons li {
    font-size: 18px;
  }

  .icon {
    width: 80px;
  }

  .icon img {
    height: 75px;
  }
}

/* wordpress website development services End */

/* custom wordpress development services for every industry */

.service-industry{
  width: 1400px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  padding: 50px 0px 50px 0px ;
}

.dsei{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  align-items: start;
  
}
.dsei h2{
   font-size: 48px;
   font-weight: 400;
   text-transform: capitalize;
   line-height: 58px;
}
.dsei .service-industry-btn{
  font-size: 16px;
    font-weight: 400;
    background-color: #329FF4;
    padding: 18px 30px 18px 30px;
    border-radius: 5px 5px 5px 5px;
    color: white;
    text-decoration: none;
}

.dual-slider-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.vertical-slider-wrapper {
  position: relative;
  height: 300px;
  width: 280px;
  overflow: hidden;
}

.vertical-slider {
  display: flex;
  flex-direction: column;
}

.slide {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slide img {
  width: 30px;
  height: 30px;
}

.shadow.top, .shadow.bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}

.shadow.top {
  top: 0;
  background: linear-gradient(to bottom, white, transparent);
}

.shadow.bottom {
  bottom: 0;
  background: linear-gradient(to top, white, transparent);
}

.scroll-up {
  animation: scrollUp 10s linear infinite;
}
.scroll-down {
  animation: scrollDown 10s linear infinite;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* 💻 Laptop: max 1250px */
@media (max-width: 1250px) {
  .service-industry {
    width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dsei {
    width: 100%;
    align-items: center;
  }

  .dsei h2 {
    font-size: 40px;
    line-height: 52px;
  }
}

/* 📱 Tablet: max 768px */
@media (max-width: 768px) {
  
  .dual-slider-wrapper{
    margin-top: 50px;
  }

  .dsei h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .vertical-slider-wrapper {
    width: 240px;
    height: 280px;
  }

  .slide {
    font-size: 15px;
    padding: 12px;
  }

  .slide img {
    width: 26px;
    height: 26px;
  }
}

/* 📲 Mobile: max 350px */
@media (max-width: 350px) {
  .dsei h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .dsei .service-industry-btn {
    font-size: 14px;
    padding: 14px 24px;
  }

  .vertical-slider-wrapper {
    width: 100%;
    height: 250px;
  }

  .slide {
    font-size: 14px;
    padding: 10px;
  }

  .slide img {
    width: 24px;
    height: 24px;
  }
}

/* custom wordpress development services for every industry End */

/* Review */

.review{
 
  background-color: #000;
  padding: 80px 0px 80px 0px;
  margin-top: 80px;
}
.bdsw{
  width: 1400px;
  margin: 0 auto;
  display: flex;
justify-content: space-between
}
.section-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 20px;
}
.section-2 h3{
  color: #007bff;
  font-size: 22px;
    font-weight: 400;
    line-height: 22px;
}
.section-2 h2{
  color: white;
    font-size: 46px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 64px;
}
.section-2 p{
  color: white;
  line-height: 26px;
}

.review-section {
  background-color: #000;
  padding: 60px 20px;
  color: #fff;
}
.review-section
.dual-slider-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.review-section
.vertical-slider-wrapper {
  position: relative;
  height: 420px;
  width: 300px;
  overflow: hidden;
}
.review-section
.vertical-slider {
  display: flex;
  flex-direction: column;
}
.review-section
.slide.review-card {
  background-color: #111;
  color: #fff;
  margin: 10px 0;
  padding: 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  flex-direction: column;
  align-items: start
}
.review-section
.review-card h4 {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 16px;
}
.review-section
.review-card .stars {
  margin: 0 0 10px;
  color: #fbc02d; /* Yellow star color */
  font-size: 18px;
}
.review-section
.shadow.top, .shadow.bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}
.review-section
.shadow.top {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}
.review-section
.shadow.bottom {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}
.review-section
.scroll-up {
  animation: scrollUp 25s linear infinite;
}
.review-section
.scroll-down {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* 💻 Laptop: max 1250px */
@media (max-width: 1250px) {
  .bdsw {
    width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-2 {
    width: 100%;
    align-items: center;
  }

  .section-2 h2 {
    font-size: 38px;
    line-height: 52px;
  }
}

/* 📱 Tablet: max 768px */
@media (max-width: 768px) {
  .section-2 h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .review-section .vertical-slider-wrapper {
    width: 260px;
    height: 380px;
  }

  .review-section .slide.review-card {
    font-size: 14px;
    padding: 15px;
  }

  .review-section .review-card h4 {
    font-size: 15px;
  }
}

/* 📲 Mobile: max 350px */
@media (max-width: 400px) {
  
  .review{
    padding: 50px 0px 50px 0px;
  }
  .review-section{
    padding: 0px ;
  }
  .section-2 h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-2 h3 {
    font-size: 18px;
  }

  .review-section .vertical-slider-wrapper {
    width: 100%;
    height: 320px;
  }

  .review-section .slide.review-card {
    font-size: 13px;
    padding: 12px;
  }

  .review-section .review-card h4 {
    font-size: 14px;
  }

  .review-section .review-card .stars {
    font-size: 16px;
  }
}

/* Review End */  

/* Last CTA Section */

.wwd-cta-section {
  background: linear-gradient(90deg, #36a6f3, #3ec3ff); /* blue gradient */
  padding: 30px 20px;
  color: white;
}

.wwd-cta-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wwd-cta-content h2 {
  font-size: 42px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 62px;
  width: 70%;
  color: white;
}

.wwd-cta-button {
  background-color: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.wwd-cta-button:hover {
  background-color: #222;
}

/* @media (max-width: 768px) {
  .wwd-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .wwd-cta-content h2 {
    font-size: 26px;
  }
} */

@media (max-width: 1024px) {
  .wwd-cta-content h2 {
    font-size: 36px;
    line-height: 52px;
    width: 100%;
    text-align: center;
  }

  .wwd-cta-button {
    margin: 0 auto;
  }

  .wwd-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wwd-cta-content h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .wwd-cta-button {
    font-size: 15px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .wwd-cta-content h2 {
    font-size: 22px;
    line-height: 34px;
  }

  .wwd-cta-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Last CTA Section End */