/* newstyle.css */


/* New Services Section CSS */

  .new-service-section .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .new-service-section .card {
      background: #fff;
      border: 1px solid #538DE4; /* 2px border */
      border-radius: 10px;
      transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 360px;
      padding: 20px;
      text-align: left;
    }

    .new-service-section .card:hover {
      background-color: #eaf1fb;
      transform: scale(1.03);
      border: 2px solid #538DE4; /* 2px border */
      box-shadow: 0 8px 20px rgba(83, 141, 228, 0.25); /* Shadow only on hover */
    }

    .new-service-section .card img {
      width:100%;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .new-service-section .card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
    }

    .new-service-section .card p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .new-service-section .card .btn {
      display: inline-block;
      background-color: #538DE4;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .new-service-section .card .btn:hover {
      background-color: #3a73c5;
    }

    @media (max-width: 768px) {
      .new-service-section .card-container {
        flex-direction: column;
        align-items: center;
      }
    }
 
/* end css */



  /* video play css */
    
/* Main container */
.about-video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.about-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

/* Thumbnail */
.about-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Play Button */
.about-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Responsive iframe container */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Close button */
.modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  border: none;
}
             

 
 /** Industry section **/
 
 .new-industry-section {
  padding: 60px 20px;
  overflow: hidden;
  background: #f4f9ff;
}

.new-industry-section h2 {
font-size: 50px;
line-height: 1.2;
color: #031026;
font-weight: 700;
margin: 5px auto 45px;
text-transform: uppercase;
text-align: center;
}

.industry-row {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.industry-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

.industry-row.reverse .industry-track {
  animation: scroll-right 20s linear infinite;
}

.industry-row:hover .industry-track {
  animation-play-state: paused;
}

.industry-card {
  flex: 0 0 auto;
  width: 250px;
  padding: 20px;
  border: 2px solid #538DE4;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 5px 2px 5px rgb(0 0 0 / 30%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
}

.industry-card img {
  width: 40%;
  object-fit: contain;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.industry-card p {
  font-size: 0.95rem;
  color: #555;
}

.industry-card:hover {
  border: 2px solid #000000;
  background: #eaf1fb;
  box-shadow: 0 10px 25px rgba(83, 141, 228, 0.3);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@media (max-width: 768px) {
  .industry-card {
    width: 180px;
  }

  .new-industry-section h2 {
    font-size: 1.8rem;
  }
}



  /** Call To Action Section **/
  
 .cta-section {
      position: relative;
      background: url('https://icreativessolutions.com/assets/img/human-resoures.jpg') center center / cover no-repeat;
      padding: 100px 30px;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgb(0 0 0 / 75%);
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
    }

    .cta-section h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #ffffff;
    }

    .cta-section p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .cta-btn {
      background-color: #538DE4;
      color: white;
      font-weight: 600;
      padding: 14px 32px;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .cta-btn:hover {
      background-color: #3d6fc2;
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .cta-section h2 {
        font-size: 2rem;
      }

      .cta-section p {
        font-size: 1rem;
      }

      .cta-btn {
        width: 80%;
        max-width: 300px;
      }
    }

  
 /** testimonials **/
 .testimonials-section {
      padding: 50px 20px;
      text-align: center;
    }

    .section-label {
      color: #7a5ef8;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

 

    .testimonial-carousel {
      position: relative;
      max-width: 700px;
      margin: auto;
      border: 2px solid #538DE4;
      border-radius: 15px;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: opacity 0.6s ease;
      display: none;
    }

    .testimonial-card.active {
      display: block;
    }

    .quote-icon {
      font-size: 60px;
      color: #7a5ef8;
    }

    .testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    }

    .author-name {
      font-weight: 600;
      font-size: 17px;
    }

    .author-location,
    .author-role {
      color: #777;
      font-size: 15px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      background: #444;
      color: white;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
    }

    .arrow.left {
      left: -50px;
    }

    .arrow.right {
      right: -50px;
    }

    @media (max-width: 768px) {
      .arrow.left {
        left: 10px;
      }

      .arrow.right {
        right: 10px;
      }

      .section-title {
        font-size: 24px;
      }

      .testimonial-card {
        padding: 20px;
      }
    }



/* new image slider */
 /* Slider Container */
.advanced-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Individual Slide */
.advanced-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 6s ease;
  transform: scale(1.05);
}

.advanced-slide.active {
  opacity: 1;
  z-index: 2;
  animation: zoomIn 8s ease-in-out forwards;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Overlay (optional gradient/darkness layer) */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

/* Slide Text Content */
.advanced-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  padding: 10px;
  max-width: 100%;
  animation: contentFadeIn 2s ease forwards;
  opacity: 0;
}

.advanced-slide.active .advanced-slide-content {
  opacity: 1;
}

/* Headline Style */
.advanced-title-3d {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 0 #222, 4px 4px 0 #000;
  animation: slideUp 1s ease-in-out;
}

/* Subtitle */
.advanced-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #ddd;
  animation: fadeIn 1.5s ease-in-out;
}

/* CTA Button */
.advanced-btn {
  padding: 14px 30px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
  transition: all 0.3s ease-in-out;
  animation: popIn 1.5s ease-in-out;
  display: inline-block;
}

.advanced-btn:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 0 20px #fff;
}

/* Animations */
@keyframes contentFadeIn {
  0% { transform: translate(-50%, -60%); opacity: 0; }
  100% { transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile/Tablet Responsive Adjustments */
@media (max-width: 768px) {
  .advanced-title-3d {
    font-size: 2.2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px #000;
  }

  .advanced-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .advanced-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .advanced-slide-content {
    top: 50%;
    padding: 15px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .advanced-title-3d {
    font-size: 2.1rem;
  }

  .advanced-btn {
    width: 90%;
    padding: 12px;
    font-size: 1rem;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 34, 108, 0.8), rgba(43, 3, 103, 0.6), rgba(9, 28, 82, 0.8));
  z-index: 1; /* LOWER THAN CONTENT */
}

/* new service tab section */

/* image slider */

.image-slider-2 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 720px;
  overflow: hidden;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-slider-2 .slides-container {
  display: flex;
  width: 200%; /* 2 slides */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.image-slider-2 .slide {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-slider-2 .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  transition: background 0.5s ease;
}

.image-slider-2 .slide:hover .overlay {
  background: rgba(0,0,0,0.6);
}

.image-slider-2 .tagline {
 position: relative;
  z-index: 2;
  color: white;
  font-size: 2.5rem;
  text-align: center;
  animation: fadeIn 1s ease;
  max-width: 80%;
  padding: 0 20px;
}

.image-slider-2 .para {
  position: relative;
  z-index: 2;
 font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 25px;
  color: white;
  margin-top: 10%;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Navigation buttons */
.image-slider-2 .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.image-slider-2 .nav:hover {
  background: rgba(0,0,0,0.7);
}

.image-slider-2 .prev { left: 20px; }
.image-slider-2 .next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .image-slider-2 {
    height: 400px;
  }
  .image-slider-2 .tagline {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .image-slider-2 {
    height: 300px;
  }
  .image-slider-2 .tagline {
    font-size: 1.2rem;
  }
}

/* Internal pages slider */
  
  .image-slider-2 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 650px;
  overflow: hidden;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.image-slider-2 .slides {
  position: relative;
  height: 100%;
}

.image-slider-2 .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
}

.image-slider-2 .slide.active {
  opacity: 1;
  z-index: 1;
}

.image-slider-2 .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.image-slider-2 .overlay {
  /*position: absolute;*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*background: linear-gradient(135deg, rgba(8, 34, 108, 0.8), rgba(43, 3, 103, 0.6), rgba(9, 28, 82, 0.8));*/
  /*transition: background 0.5s ease;*/
  /*z-index: 1;*/
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 34, 108, 0.8), rgba(43, 3, 103, 0.6), rgba(9, 28, 82, 0.8));
    z-index: 1;
  
}

.image-slider-2 .slide:hover .overlay {
  background: linear-gradient(135deg, rgb(8 34 108 / 80%), rgb(43 3 103 / 60%), rgb(9 28 82 / 80%));
}

.image-slider-2 .tagline {
  position: absolute;
  z-index: 2;
  color: white;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  text-align: center;
  width: 100%;
  top: 45%;
  transform: translateY(-50%);
  animation: fadeIn 1s ease;
  padding: 0 40px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(-50%); }
}

/* Arrows */
.image-slider-2 .nav {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 10px 20px;
  z-index: 3;
  cursor: pointer;
}

.image-slider-2 .nav:hover {
  background: rgba(0,0,0,0.8);
}

.image-slider-2 .prev { left: 20px; }
.image-slider-2 .next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .image-slider-2 {
    height: 400px;
  }

  .image-slider-2 .tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .image-slider-2 {
    height: 300px;
  }

  .image-slider-2 .tagline {
    font-size: 1.2rem;
  }
}

/* number counter */

/* Number Counter Area */
.number-counter-area {
  padding: 60px 20px;
  background-color: #f1f1f1;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.number-counter-area .container {
  max-width: 1200px;
  margin: 0 auto;
}

.counter-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
}

.counter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.counter-col {
  background: #ffffff;
  border-radius: 20px;
  width: 240px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.counter-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.counter-col i {
  font-size: 2.2rem;
  color: #538DE4;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 2.5rem;
  color: #0e4290;
  font-weight: 700;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .counter-col {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .counter-col {
    width: 100%;
  }
}

/* form and content area */

.form-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.form-content-section {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.form-box, .content-box {
  flex: 1;
  min-width: 320px;
  box-sizing: border-box;
  padding: 30px;
}

.form-box {
background: #89cbff;
}

.form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
  font-size: 32px;
}

input, select, textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  font-weight: 500;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #1c2b63;
  box-shadow: 0 0 5px rgba(28, 43, 99, 0.2);
   font-weight: 500;
}

.checkbox-wrap {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #333;
}

.upload-wrap label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #1c2b63;
}

button {
  padding: 12px 25px;
  background: #1c2b63;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}

button:hover {
  background: #0f1a49;
}

.content-box {
  background: #0b1c49;
  color: #fff;
}

.content-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.content-box a {
  color: #ffcc6d;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-content-section {
    flex-direction: column;
  }
  .form-box, .content-box {
    padding: 20px;
  }
}

/* new section for contact page */

.why-icreatives-section {
  padding: 60px 20px;
  background-color: #f4f6fb;
  font-family: 'Segoe UI', sans-serif;
}

.why-icreatives-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #031026;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #444;
  font-size: 17px;
  line-height: 1.6;
  text-transform: math-auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #dcdfe4;
  padding: 20px 25px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-box h4 {
  color: #0268ba;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 24px;
  color: #0b1c49;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #d0d3db;
  background-color: #fff;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background-color: #1c2b63;
  color: #fff;
  font-size: 16px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #0f1a49;
}

.faq-answer {
  padding: 15px 20px;
  background-color: #f9f9f9;
  display: none;
  color: #333;
  font-size: 15px;
}

.faq-answer a {
  color: #0077cc;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 26px;
  }

  .faq-question,
  .faq-answer {
    font-size: 14px;
  }
}



/* sevice section for services page */
/* === iCreatives HR Services Section === */

.ics-services {
  padding: 70px 20px;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.ics-services .container {
  max-width: 1140px;
  margin: auto;
}

.section-title {
     font-size: 50px;
    line-height: 1.2;
    color: #031026;
    font-weight: 700;
    margin: 5px auto 5px;
    /*text-transform: uppercase;*/
    text-transform: math-auto;
}

.section-title span {
  color: #ffcc6d;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border-top: 4px solid #1c2b63;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1c2b63;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-card ul li {
  list-style: disc;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

/* Button Style Match */
.know-more-btn {
  display: inline-block;
  background-color: #1c2b63;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.know-more-btn:hover {
  background-color: #0b1c49;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .service-card {
    padding: 20px;
  }
}


/* testimonials2 */

.testimonials-2 {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: inherit;
}

.testimonials-2 .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-2 .subheading {
  text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #3F51B5;
    font-size: 17px;
    line-height: 1.6;
    text-transform: math-auto;
}

.testimonials-2 .main-heading {
  font-size: 50px;
    line-height: 1.2;
    color: #031026;
    font-weight: 700;
    margin: 5px auto 45px;
    text-transform: uppercase;
    text-align: center;
}


.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: slideLoop 10s linear infinite;
  transition: all 0.3s ease;
}

.testimonial-box {
  min-width: 300px;
  max-width: 100%;
  flex: 0 0 33%;
  background: #fff;
  padding: 20px;
  border: 2px solid #538DE4;
  box-shadow: 5px 2px 5px rgb(0 0 0 / 30%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.testimonial-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-box p {
  color: #4c4e50;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.testimonial-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.testimonial-box span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.testimonial-box .stars {
  color: #ffc107;
  font-size: 18px;
}

@keyframes slideLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .testimonial-box {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .testimonial-box {
    flex: 0 0 100%;
  }
}


/* page header hero */
/* end header css */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.min-vh-100 {
    min-height: 70vh !important;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://icreativessolutions.com/assets/img/contact-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(8 34 108 / 80%), rgb(43 3 103 / 60%), rgb(9 28 82 / 80%));
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn2
{
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Hero Buttons */
.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-hero-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.lead1 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #313233;
    font-weight: 400;
}

.intro
{
    background-color: #ffffff;
}
.serv
{
     background: var(--gradient-primary);
    transform: scale(1.1);
    margin: 70px 0px;
}

/* about mission */

.abbg
{
    background-image: url('https://icreativessolutions.com/assets/img/aboutbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* drop your resume section */

