@media(max-width : 600px) {
  .text-anime-style-3 {
    font-size: 9vw !important;
    font-weight: 700 !important;
  }
}

/* MAIN SECTION */
.sd-about {
  width: 100%;
  padding: 80px 20px;
  background: #f6f9ff;
}

/* CONTAINER */
.sd-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1200px;
  /* ✅ Increased container width */
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* ✅ LEFT IMAGE — MADE BIGGER */
.sd-image {
  flex: 1.3;
  /* ✅ Earlier it was 1 → Now image takes more space */
}

.sd-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);

  /* ✅ Make image look bigger visually */
  transform: scale(1.05);
  animation: fadeImage 1.2s ease forwards;
}

/* RIGHT CONTENT */
.sd-content {
  flex: 1;
  /* ✅ Content thoda narrow to give more space to image */
  text-align: center;
}

.sd-content h2 {
  font-size: 6vw;
  line-height: 1.3;
  font-weight: bolder;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.sd-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.sd-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #2e6bff;
  color: white;
  font-size: 16px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 6px 20px rgba(46, 107, 255, 0.35);
  transition: 0.3s ease;
}

.sd-btn:hover {
  transform: translateY(-3px);
}

/* IMAGE ANIMATION */
@keyframes fadeImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ✅ TABLET */
@media (min-width: 768px) {
  .sd-content h2 {
    font-size: 5vw;
  }
}

/* ✅ DESKTOP — IMAGE EVEN BIGGER */
@media (min-width: 950px) {
  .sd-container {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }

  .sd-content {
    text-align: left;
  }

  .sd-image img {
    transform: scale(1.12);
    /* ✅ Desktop me image even bigger */
  }

  .sd-content h2 {
    font-size: 36px;
  }
}

/*** kotech why ***/
/* MAIN BG */
.cool-sd {
  width: 100%;
  padding: 100px 120px;
  background: linear-gradient(135deg, #0f4ea8, #082f61);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* WORLD MAP GLOW */
.cool-overlay {
  position: absolute;
  inset: 0;
  background: url("https://i.ibb.co/c8J3LJG/world-map-dots.png") center/contain no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
}

/* FLEX WRAPPER */
.cool-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;

  opacity: 0;
  transform: translateY(60px);
  transition: all 1.3s ease;
}

/* LEFT CONTENT */
.cool-text {
  text-align: center;
}

.cool-text h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.cool-text p {
  max-width: 600px;
  margin: auto;
  font-size: 17px;
  opacity: 0.9;
  line-height: 1.7;
}

/* STATS */
.cool-stats {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.cool-stat-card {
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  min-width: 150px;
}

.cool-stat-card h3 {
  font-size: 36px;
  font-weight: 700;
}

.cool-stat-card p {
  font-size: 14px;
  margin-top: 4px;
}

/* RIGHT IMAGE */
.cool-img-box {
  text-align: center;
}

.cool-img-box img {
  width: 75%;
  /* ✅ Earlier 90% → now smaller */
  max-width: 420px;
  /* ✅ Earlier 520px → balanced size */
  transform: rotate(-8deg) scale(1.05);
  /* ✅ Scale reduced */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: floatLaptop 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatLaptop {
  0% {
    transform: rotate(-8deg) translateY(0) scale(1.1);
  }

  50% {
    transform: rotate(-8deg) translateY(-18px) scale(1.12);
  }

  100% {
    transform: rotate(-8deg) translateY(0) scale(1.1);
  }
}

/* ✅ DESKTOP VIEW */
@media(min-width: 950px) {
  .cool-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cool-text {
    flex: 1;
    text-align: left;
  }

  .cool-img-box {
    flex: 1;
    text-align: right;
  }

  .cool-img-box img {
    width: 100%;
    max-width: 600px;
  }
}

/* ✅ MOBILE EXTRA TUNING */
@media(max-width: 600px) {

  .cool-sd {
    padding: 30px 40px;
  }

  .cool-text p {
    font-size: 4.9vw;
  }

  .cool-text h2 {
    /* font-size: 8vh; */
    font-weight: bolder;
  }

  .cool-stat-card h3 {
    font-size: 30px;
  }

  .cool-img-box img {
    width: 200px;
    border-radius: 10px;
  }
}

/**------our software services --**/

.software-services-section {
  padding: 8vw 10vw;
}

.software-services-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ss-about-right {
  /* gap: 20px; */
}

.ss-about-right h1 {
  font-size: 3.7vw;
  font-weight: bolder;
  margin-bottom: 20px;
}

.ss-about-right p {
  margin-bottom: 20px;
}

.ss-about-right img {
  border-radius: 20px;
}

.ss-content {
  display: flex;
}

.ss-about-content1 {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.ss-about-content1:hover {
  background-color: rgb(181, 149, 212);
  color: white;
  cursor: pointer;
}

.ss-about-content2 {
  background-color: rgba(26, 72, 190, 0.86);
  color: white;
  padding: 20px 30px;
  border-radius: 20px;

}

.arrow-btn1 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 72, 190, 0.86);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.ss-about-content2:hover {
  background-color: rgb(181, 149, 212);
  color: black;
  cursor: pointer;
}

.arrow-btn2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease;
}

/* .arrow-btn2 span:hover{
  background-color: rgba(26, 72, 190, 0.86);
  color: white;
} */

.ss-about-left h3 {
  font-weight: bolder;
  margin-bottom: 10px;
}

/**TABLET SCREENS (601px - 900px)**/
@media (min-width: 601px) and (max-width: 900px) {
  .software-services-section {
    padding: 6vw 2vw;
  }

  .software-services-container {
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }

  .ss-content {
    flex-direction: column;
    gap: 15px;
  }

  .ss-about-right h1 {
    font-size: 5vw;
    margin-bottom: 18px;
  }

  .ss-about-right p {
    margin-bottom: 18px;
    font-size: 1.08em;
  }

  .ss-about-right img {
    border-radius: 14px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 12px;
  }

  .ss-about-content1,
  .ss-about-content2 {
    padding: 13px 12px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 1em;
  }

  .arrow-btn1 span,
  .arrow-btn2 span {
    width: 36px;
    height: 36px;
    font-size: 1.13em;
  }

  .ss-about-left h3 {
    font-size: 1.1em;
    margin-bottom: 7px;
  }
}

/* ----------- MOBILE SCREENS (max-width: 600px) ---------- */
@media (max-width: 600px) {
  .software-services-section {
     padding: 10px 20px 10px 20px;
  }

  .software-services-container {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }

  .ss-content {
    flex-direction: column;
    gap: 10px;
  }
  /* .ss-about-right img{
    width: 300px;
    height: auto;
  } */

  .ss-about-right h1 {
    font-size: 7vw;
    margin-bottom: 12px;
    word-break: break-word;
  }

  .ss-about-right p {
    margin-bottom: 12px;
    font-size: 0.96em;
  }

  .ss-about-right img {
    border-radius: 10px;
    width: 100%;
    /* max-width: 80vw;
    height: 400px; */
    margin-bottom: 8px;

  }

  .ss-about-content1,
  .ss-about-content2 {
    padding: 10px 9px;
    border-radius: 10px;
    margin-bottom: 11px;
    font-size: 0.95em;
  }

  .arrow-btn1 span,
  .arrow-btn2 span {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .ss-about-left h3 {
    font-size: 1em;
    margin-bottom: 5px;
  }
}

/*** software development ***/
.sorftware-tech {
  /* background: "https://www.transparenttextures.com/patterns/cubes.png"; */
  padding: 6vw 8vw;
  /* gap: 50px; */
}

.sorftware-tech h1 {
  font-size: 2vw;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 40px;
}

.sf-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;

}

.selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 420px;
}

.option {
  background-color: #082f61;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border: 2px solid #1976d2;
}

.option.active {
  background: #2196f3;
  color: #fff;
}

.option.active h2 {
  font-weight: bolder;
}

.option.active p {
  color: #d7ceb3;
  margin-top: 10px;
}

.option h2 {
  margin: 10px 0 10px 0;
  font-size: 1.1rem;
  font-weight: bolder;
}

.option p {
  margin: 0;
  color: #b0bfc7;
}

.image-box {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  /* background-color: blueviolet; */
}

#mainImage {
  width: 450px;
  height: 400px;
  /* border-radius: 10px;
  box-shadow: 0 0 18px #00336644; */
  transition: all 0.3s;
  object-fit: cover;
}

@media (max-width :767px) {
  .sorftware-tech {
    padding: 4vw 8vw;
  }

  .sorftware-tech h1 {
    font-size: 6vw;
    margin-top: 20px;
    font-weight: 500;
  }

  .sf-container {
    display: flex;
    flex-direction: column;
  }

  .selector {
    width: 200px;
  }

  .image-box {
    width: 300px;
  }

  #mainImage {
    width: 250px;
    height: 200px;
  }
}

/*** why choose kotech digital hub ****/
.choose-section {
  background: #0d1724;
  padding: 50px 60px;
}

.section-heading {
  text-align: center;
  color: #fff;
  font-size: 2em;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-content {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.side-image {
  flex: 1.2;
  background: url('https://images.unsplash.com/photo-1556742044-3c52d6e88c62?ixlib=rb-4.1.0&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2070') no-repeat center center;
  background-size: cover;
  min-height: 300px;
  min-width: 340px;
  border-radius: 12px;
  /* Optional dark overlay for matching ref look */
  box-shadow: 0 0 40px #15355940;
  position: relative;
}

/* Card area: */
.cards-row {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
  justify-content: center;
}

.card {
  background: #1d2531;
  color: #fff;
  border-radius: 20px;
  padding: 28px 21px;
  box-shadow: 0 6px 35px #03091422;
  width: 350px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1.8px solid #191e24;
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 1.19em;
  font-weight: 600;
  color: #f1f5fc;
}

.card p {
  margin: 0;
  color: #bbcbe9;
  font-size: 1em;
  line-height: 1.7;
}

/* Card hover lift effect */
.card:hover {
  box-shadow: 0 10px 40px #2666f699;
  transform: translateY(-6px) scale(1.025);
  border-color: #2666f6;
}

/* Responsive for mobile */
@media (max-width:900px) {
  .choose-section {
    padding: 30px 20px;
  }

  .section-content {
    flex-direction: column;
    gap: 18px;
    max-width: 99vw;
    align-items: center;
  }

  .side-image {
    min-width: 70vw;
    min-height: 222px;
    width: 80vw;
    margin-bottom: 15px;
  }

  .cards-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 97vw !important;
    max-width: 210px;
  }

  .section-heading {
    font-size: 1.3em;
    margin-bottom: 25px;
  }
}

/*** technology we used ***/
.tech-section {
  background: #e4f6ff;
  padding: 54px 0 50px 0;
}

.tech-heading {
  text-align: center;
  font-size: 2em;
  color: #1347ff;
  font-weight: 700;
  margin-bottom: 36px;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab {
  background: #fff;
  color: #222;
  font-size: 1.08em;
  border: 2px solid #b0d8f7;
  border-radius: 32px;
  padding: 12px 38px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 10px #b3d7f100;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 600;
}

.tab.active {
  background: #138aff;
  color: #fff;
  border-color: #156fee;
}

.tab:hover:not(.active) {
  background: #f4fafd;
  color: #156fee;
}

.tech-grid {
  display: grid;
  gap: 38px 34px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  justify-content: center;
  align-items: center;
  padding: 0 48px;
}

.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #1347ff11;
  padding: 32px 12px;
  min-width: 120px;
  min-height: 97px;
  transition: box-shadow 0.25s;
  flex-direction: column;
}

.tech-icon img {
  max-height: 56px;
  max-width: 80px;
  object-fit: contain;
}

.tech-icon span {
  margin-top: 10px;
  font-size: 1em;
  color: #1872e6;
  font-weight: 500;
}

.tech-icon:hover {
  box-shadow: 0 6px 36px #138aff44;
}

@media (max-width: 900px) {
  .tech-section {
    padding: 30px 0;
  }
.tech-grid {
  display: grid;
  gap: 38px 34px;
  grid-template-columns: repeat(auto-fit, minmax(90px, 2fr));
  justify-content: center;
  align-items: center;
  padding: 0 48px;
}
  .tech-heading {
    font-size: 1.25em;
    margin-bottom: 23px;
  }

  .tech-tabs {
    gap: 11px;
    margin-bottom: 24px;
  }

  .tech-grid {
    gap: 22px 9px;
    padding: 0 8px;
  }

  .tech-icon {
    min-width: 80px;
    min-height: 55px;
    padding: 18px 8px;
    border-radius: 9px;
  }

  .tech-icon img {
    max-height: 42px;
    max-width: 60px;
  }

  .tech-icon span {
    font-size: 0.93em;
  }
}
/*** contact section ***/
.kotech-service-wrapper {
    position: relative;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    padding: 20px 20px 20px 20px;
}

.kotech-service-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #01274e 67%, #022f5e 100%);
    z-index: 0;
}

.kotech-service-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 3vw 42px 4vw;
    display: flex;
    gap: 52px;
    z-index: 2;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.kotech-label {
    font-size: 0.93em;
    text-align: center;
    color: #2c81e9;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    background: #e5f0fc;
    border-radius: 70px;
    padding: 6px 20px;
    margin-bottom: 17px;
    display: inline-block;
}

.kotech-info-side {
    max-width: 480px;
    flex: 1 1 320px;
    background: #fff;
    border-radius: 27px;
    box-shadow: 0 7px 38px #2c81e91a;
    padding: 44px 32px 32px;
    z-index: 2;
}

.kotech-info-side h1 {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 13px;
    color: #27345d;
    /* line-height: 1.22; */
    text-align: center;
}

.kotech-info-side h1 span {
    color: #298fff;
    letter-spacing: 1.5px;
    font-weight: 900;
}

.kotech-intro {
    font-size: 1.15em;
    color: #3e526e;
    line-height: 1.7;
    margin-bottom: 21px;
    padding: 20px 20px 20px 20px;
}

.cta-highlight {
    color: #1971f7;
    font-weight: 700;
    background: #eaffff6b;
    border-radius: 6px;
    padding: 0 2px;
}

.kotech-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.new-features-list li {
    font-size: 1.07em;
    margin-bottom: 9px;
    color: #2881f8;
    font-weight: 600;
    padding-left: 21px;
    position: relative;
}

.new-features-list li:before {
    content: "★";
    color: #ff9527;
    position: absolute;
    left: 0;
    font-size: 1.09em;
}

.kotech-image-block {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.kotech-image-block img {
    width: 91px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 14px #0002;
}

.kotech-contact-side {
    background: #fff;
    flex: 1 1 340px;
    border-radius: 27px;
    box-shadow: 0 7px 38px #2c81e91a;
    padding: 44px 32px 32px;
    min-width: 320px;
    z-index: 2;
}

.kotech-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kotech-contact-form h2 {
    font-size: 1.43em;
    font-weight: 900;
    color: #1971f7;
    margin-bottom: 10px;
}

.form-row {
    width: 100%;
}

.kotech-contact-form input,
.kotech-contact-form select,
.kotech-contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 9px;
    border: 1.4px solid #c0cacb;
    font-size: 1em;
    margin-bottom: 3px;
    transition: border-color 0.18s;
}

.kotech-contact-form input:focus,
.kotech-contact-form select:focus,
.kotech-contact-form textarea:focus {
    border-color: #1971f7;
    outline: none;
}

.kotech-contact-form button {
    background: linear-gradient(90deg, #1971f7 70%, #26d7e0 100%);
    color: #fff;
    border: none;
    border-radius: 13px;
    font-size: 1.13em;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    box-shadow: 0 3px 12px #1971f71c;
    margin-top: 5px;
    letter-spacing: 0.4px;
    transition: background 0.17s;
}

.kotech-contact-form button:hover {
    background: #ff792e;
}

.contact-brands {
    display: flex;
    gap: 11px;
    margin: 9px 0 2px 0;
    align-items: center;
    flex-wrap: wrap;
}

/* .contact-brands img {
  width: 65px;
  height: auto;
  background: #f9fcff;
  border-radius: 8px;
  padding: 2.5px 2px;
} */
.info-safe {
    color: #2881f8;
    font-weight: 500;
    font-size: 0.96em;
    margin-bottom: 0;
    margin-top: 10px;
    opacity: 0.67;
}

/* @media (max-width: 900px) {
  .kotech-service-container { flex-direction: column; gap: 23px; padding: 23px 8px;}
  .kotech-info-side,.kotech-contact-side { max-width: 99vw; padding: 25px 12px;}
  .kotech-info-side h1 { font-size: 1.45em;}
}
@media (max-width: 600px) {
  .kotech-info-side,.kotech-contact-side { border-radius: 10px;}
  .kotech-image-block img { width: 60px; }
  .kotech-label { font-size: 0.89em; padding: 4px 13px;}
} */
@media (max-width: 600px) {
    .kotech-service-container {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 11px 2px !important;
        align-items: stretch !important;
        min-width: 0 !important;
        box-sizing: border-box;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .kotech-info-side,
    .kotech-contact-side {
        width: 80% !important;
        max-width: 80vw !important;
        min-width: 0 !important;
        margin: 0 0 14px 0 !important;
        border-radius: 7px !important;
        box-shadow: none !important;
        padding: 12px 5px !important;
        box-sizing: border-box !important;
    }

    .kotech-contact-form,
    .kotech-info-side {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* All form elements full width */
    .kotech-contact-form input,
    .kotech-contact-form select,
    .kotech-contact-form textarea,
    .kotech-contact-form button {
        width: 99% !important;
        min-width: 0 !important;
        font-size: 0.98em !important;
    }

    .form-row {
        width: 99% !important;
    }
}
/*** faq section */
.faq-section {
  background: #eef6fd;
  padding: 36px 20px;
}

.faq-heading {
  text-align: center;
  font-size: 2em;
  color: #1347ff;
  font-weight: 700;
  margin-bottom: 44px;
}

.faq-columns {
  display: flex;
  gap: 54px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 20px #1347ff13;
  border: 1.5px solid #dde6f8;
  overflow: hidden;
  transition: box-shadow 0.20s;
}

.faq-question {
  font-size: 1.1em;
  color: #154ee2;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  transition: background 0.19s;
  user-select: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 1.3em;
  color: #14a2ff;
  font-weight: 700;
}

.faq-item.open .faq-question {
  background: #f2f8ff;
}

.faq-item.open .faq-question::after {
  content: "-";
  color: #f74e54;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fbff;
  color: #222;
  padding: 0 22px;
  font-size: 1em;
  line-height: 1.7;
  transition: max-height 0.29s, padding 0.23s;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 12px 22px 22px 22px;
}

@media (max-width: 900px) {
  .faq-columns {
    flex-direction: column;
    gap: 21px;
    max-width: 99vw;
  }

  .faq-col {
    gap: 14px;
  }

  .faq-item {
    font-size: 0.98em;
  }

  .faq-heading {
    font-size: 1.28em;
    margin-bottom: 14px;
  }
}

/*** footer section***/
/****============================
 Indutries-we-serve
 ========================== **/

/* Section Base */
.industries-section1 {
  background-color: #142850;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
}

.industries-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.industries-heading p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 50px;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Card Style */
.industry-item {
  background-color: #1b3b6f;
  border: 2px solid #00a8cc;
  border-radius: 15px;
  padding: 25px 15px;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.industry-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.industry-item:hover {
  background-color: #00a8cc;
  border-color: #fff;
  transform: translateY(-5px);
}

.industry-item:hover h3 {
  color: #142850;
}

.industry-item:hover img {
  filter: brightness(1) invert(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-heading h2 {
    font-size: 1.8rem;
  }

  .industries-heading p {
    font-size: 0.9rem;
  }
}