* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-y: auto;
  background: url('./Images/AI2.jpeg') no-repeat center center fixed;
  background-size: cover;
}

/* HERO AREA */
.hero-wrapper {
  position: relative;
  z-index: 1;
  padding: 0;
  /* Remove unnecessary spacing */
}

/* Header layout */
.header {
  background: linear-gradient(to right,
      rgba(248, 219, 92, 0.6),
      /* #fae584 with 60% opacity */
      rgba(253, 155, 36, 0.705)
      /* #fca439 with 60% opacity */
    );
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Logo left, toggle/menu right */
  padding: 10px 20px;
  justify-content: flex-start;
}

/* Logo */
.logo-container img {
  height: 80px;
}

/* Desktop menu */
/* Nav container */
.final-nav {
  background: linear-gradient(to right,
      rgba(253, 155, 36, 0.705),
      /* #fca439 with 60% opacity */
      rgba(248, 219, 92, 0.6)
      /* #fae584 with 60% opacity */
    );
  /*background: linear-gradient(to right, #1dc8cd,  #d5f9ec); */
  border: none;
  position: relative;
  /* create stacking context */
  z-index: 100000;
  /* very high */
}

.final-nav-container {
  position: relative;
  /* add this */
  z-index: 10000;
  /* keep hamburger on top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.final-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 11000;
  /* highest */
  position: relative;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  left: 0;
}

.final-hamburger span {
  height: 5px;
  width: 25px;
  background: white;
  border-radius: 2px;
  margin-bottom: 6px;
  /* space between lines */
}

.final-hamburger span:last-child {
  margin-bottom: 0;
}

/* Nav Links */
.final-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.final-nav-links li {
  position: relative;
}

.final-nav-links a,
.final-dropdown-toggle {
  color: #000000;
  ;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  user-select: none;
}

.final-nav-links a:hover,
.final-dropdown-toggle:hover {
  background: linear-gradient(to right,
      rgba(253, 155, 36, 0.705),
      /* #fca439 with 60% opacity */
      rgba(248, 219, 92, 0.6)
      /* #fae584 with 60% opacity */
    );
  border: none;
}

/* Dropdown */
.final-has-dropdown {
  position: relative;
}

.final-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(to right,
      #fd9b24,
      /* Solid orange */
      #f8db5c
      /* Solid yellow */
    );
  border: none;
  min-width: 200px;
  display: none;
  flex-direction: column;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  z-index: 100001;
  /* higher than nav and intro */
}

.final-dropdown li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.final-dropdown li a:hover {
  background: #555;
}

/* Show dropdown */
.final-has-dropdown.open>.final-dropdown {
  display: flex;
}

/* Base: Desktop view with down arrow */
.final-has-dropdown>.final-dropdown-toggle::after {
  content: " \25BC";
  /* ▼ down arrow */
  font-size: 0.8em;
  margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .final-has-dropdown>.final-dropdown-toggle::after {
    content: " \25B6";
    /* ▶ right arrow */
  }

  .final-hamburger {
    display: flex;
    position: relative;
    justify-content: flex-start;
    /* force left alignment */
    margin-right: auto;
    /* push other items to the right */
  }

  .final-nav-links {
    position: absolute;
    /* Calculate top as hamburger height (3 spans * height + gaps) + padding */
    top: 50px;
    /* Adjust this to exactly the hamburger container height */
    right: 0;
    background: linear-gradient(to right,
        #fd9b24,
        /* Solid orange */
        #f8db5c
        /* Solid yellow */
      );
    border: none;
    flex-direction: column;
    width: 220px;
    max-height: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 6px 6px;
    display: none;
    overflow: visible;
    z-index: 9999;
  }

  .final-nav-links.show {
    display: flex;
  }

  .final-nav-links li {
    width: 100%;
    position: relative;
    /* needed for absolute dropdown positioning */
  }

  .final-dropdown {
    position: absolute;
    /* changed from static */
    top: 0;
    left: 100%;
    /* move to the right of parent */
    min-width: 160px;
    background: linear-gradient(to right,
        #fd9b24,
        /* Solid orange */
        #f8db5c
        /* Solid yellow */
      );
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 4px 4px 0;
    display: none;
    z-index: 9999;
  }

  .final-has-dropdown.open>.final-dropdown {
    display: flex;
    flex-direction: column;
  }

  .final-nav-links a,
  .final-dropdown-toggle {
    padding: 12px 15px;
    border-bottom: 1px solid #444;
  }
}



/*end of links context menu */

.logo img {
  height: 55px;
  width: auto;
  display: block;
  border-radius: 6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  left: 0;
  /* opens to left */
}

nav ul li,
nav ul li a {
  color: rgb(81, 25, 25);
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

nav ul li:hover,
nav ul li a:hover {

  transform: translateY(-2px);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* INTRO SECTION */
.intro {
  text-align: center;
  margin: 20px auto 10px;
  /* Small margin after nav */
  padding: 10px 20px;
  max-width: 900px;
  /*backdrop-filter: blur(4px);*/
  position: relative;
  z-index: 1;
  /* Ensure it's visible on top */
}


.intro h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease;
}

.intro h1 span {
  background: linear-gradient(to right, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro p {
  font-size: 1.2rem;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px 25px;

  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .intro h1 {
    font-size: 2.2rem;
  }

  .intro p {
    font-size: 1rem;
  }
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 20px;
}

.feature-card {
  width: 110px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  filter: brightness(1.15);
}


.feature-card .icon-circle {
  background: linear-gradient(135deg, #eef1ff, #d9e2ff);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(100, 100, 255, 0.3);
}

.feature-card img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}


@media (max-width: 600px) {
  .services-circle .circle {
    width: 120px;
    height: 120px;
    font-size: 14px;
  }
}


/* end of circles services list */



.intro {
  text-align: center;
  padding: 6vh 5vw 8vh;
  position: relative;
  z-index: 2;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

.intro h1 {
  font-size: 3.5vw;
  max-width: 90%;
  margin: 0 auto 0.2em;
  font-weight: bold;
  line-height: 1.2;
}

.intro p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .intro h1 {
    font-size: 6vw;
  }

  .intro p {
    font-size: 1em;
  }
}

/* this is image grid section after three images Annatoation, RND,WFD */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #111;
}

.image-card {
  position: relative;
  width: 300px;
  height: 100px;
  /* Reduced from 200px to 100px */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  ;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  z-index: 2;
}

/* end this is hero section after three images Annatoation, RND,WFD */

/* stats section */

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item {
  flex: 1 1 150px;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  margin: 10px 20px;
}

.stat-item h2 {
  font-size: 2.5em;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  margin: 0;
}

.stat-item p {
  font-size: 1.1em;
  margin: 5px 0 0;
}

/*end of stats section */

/* center section powering ai and innovation section */

.center-message {
  text-align: center;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  padding: 60px 20px;
}

.center-message h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.center-message p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* end powering ai and innovation section */

/* ai split section */

.ai-split-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;

}

.ai-left {
  flex: 1 1 55%;
  max-width: 600px;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.ai-left h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.ai-left p {
  font-size: 1.1em;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.ai-right {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
}

.ai-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.ai-right li {
  background: #222;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 4px solid violet;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
}

.ai-right li:hover {
  background: violet;
  color: black;
}

/* end split section */

/* information section about mission others */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 40px;
  text-align: center;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  /* Very light overlay */
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  /* Soft depth */
  backdrop-filter: blur(12px) saturate(150%);
  /* Glass effect with richer colors */
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Transparent border */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  /* Slightly brighter on hover */
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}


.info-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(123, 83, 9);
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(15, 15, 15);
}

/* Mobile & Tablet Support */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
    padding: 30px 15px;
  }
}

/* end information section about mission others */

/* team success section */

.team-success-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
}

.team-text {
  flex: 1 1 400px;
  max-width: 600px;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.team-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.team-text p {
  font-size: 1.1em;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.team-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.team-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* end team success section */

/* Service interactive section */

.services-interactive {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
}

.service-list {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.service-item {
  background: #222;
  border-left: 6px solid #ffd700;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  color: wheat;
}

.service-item:hover,
.service-item.active {
  background: #ffd700;
  color: #000;
  transform: scale(1.02);
}

.service-details {
  flex: 1 1 500px;

  padding: 30px;
  border-radius: 12px;

  transition: all 0.3s ease;

  /* Added for vertical & horizontal centering */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 300px;
}

.service-details h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.service-details p {
  font-size: 1.05em;
  margin-bottom: 15px;
  max-width: 600px;
  font-size: 1.05rem;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.service-details ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  max-width: 450px;
  margin: 0 auto;
  color: black
}

.service-details ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #65060e;
}

/* Optional: highlight selected item more clearly */
.service-item.active {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border-left-color: #000;
}

/* Remove legacy/duplicate classes */
.services-container,
.services-list,
.services-content {
  display: none !important;
}

/* end of service container */

/* contact us section Removed from page

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  gap: 40px;
  align-items: center;
}

.contact-left {
  flex: 1 1 400px;
  text-align: center;
  padding: 20px;
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 18px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-right {
  flex: 1 1 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #222;
}

.contact-right form button {
  background-color: violet;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right form button:hover {
  background-color: #4b2e2e;
}

#responseMessage {
  text-align: center;
  margin-top: 10px;
  color: lightgreen;
  font-weight: bold;
} 
 buttom newly added contact section */

.ai-call-to-action {
  text-align: center;
  padding: 60px 20px;
  color: #7e0808;
}

.cta-button {
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  padding: 14px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #333;
  transform: scale(1.05);
}

.cta-button .arrow {
  margin-left: 10px;
  font-size: 1.2em;
}

/* end of contact us section */

/* email contact location section */

.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 15px;
  /* Reduced from 50px 20px */
  text-align: center;
}

.contact-column {
  flex: 1 1 200px;
  max-width: 260px;
  padding: 30px;
  /* Reduced from 20px */
  border-radius: 10px;
  background: rgba(117, 215, 232, 0.05);
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px #4e4e4e;
}

.contact-column img {
  width: 28px;
  /* Reduced from 40px */
  margin-bottom: 8px;
}

.contact-column h3 {
  font-size: 15px;
  /* Slightly smaller */
  margin-bottom: 6px;
  color: #6a1b9a;
  /* deep plum */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.contact-column p {
  font-size: 11px;
  line-height: 1.4;
  color: #4a4a4a;
  /* soft dark gray */
  line-height: 1.7;
  margin-bottom: 15px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* end of email contact location section */
/* register page styles */

.form-header {
  text-align: center;

  animation: fadeIn 1.2s ease-in-out;
}

.form-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
  margin: 5px;
}

.form-header h2:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.form-header p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-column {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: black;
  /* Change if needed */
}

input,
select,
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Ensures left alignment */
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
  /* Full width of form-group */
  box-sizing: border-box;
  resize: vertical;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Info Box Buttons */
.contact-box {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  /*color: white;*/
  font-weight: 500;
}

.email-box {
  background-color: #1abc9c;
}

.phone-box {
  background-color: #3498db;
}

.website-box {
  background-color: #9b59b6;
}

.network-box {
  background-color: #e67e22;
}

.support-box {
  background-color: #e74c3c;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 768px) {
  .contact-col {
    flex: 1 1 100%;
  }
}


/* Label Colors */
.label.email {
  color: #0078d7;
  /* Blue */
}

.label.phone {
  color: #28a745;
  /* Green */
}

.label.website {
  color: #d63384;
  /* Pink */
}

.label.network {
  color: #17a2b8;
  /* Teal */
}

.label.support {
  color: #ffc107;
  /* Amber */
}

.contact-box a:hover {
  text-decoration: underline;
}

.submit-button {
  padding: 12px 24px;
  font-size: 1em;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #45a049;
}

.rocket {
  margin-left: 6px;
}

.response-message {
  margin-top: 10px;
  color: green;
  font-size: 0.95em;
}

/* end of Registration page styles */
/* contact section third column */

.contact-info-column {
  padding: 25px;
  background: linear-gradient(to bottom right, #f9f9f9, #e9f2fb);
  border-radius: 16px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

.contact-heading {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #0078d4, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.contact-heading:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-left: 6px solid transparent;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 26px;
  margin-top: 5px;
  color: #0078d4;
  flex-shrink: 0;
}

.contact-card-content h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #222;
}

.contact-card-content p {
  margin: 2px 0;
  font-size: 12px;
  color: #555;
}

.contact-card a {
  color: #0078d4;
  text-decoration: underline;
}

/* Colored borders */
.email-bg {
  border-left-color: #0078d4;
}

.phone-bg {
  border-left-color: #28a745;
}

.website-bg {
  border-left-color: #17a2b8;
}

.network-bg {
  border-left-color: #ff9800;
}

.availability-bg {
  border-left-color: #6f42c1;
}

/* end of third coloumn */
/* footer section */

.footer {
  background-color: #1a1a1a;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 280px;
}

.footer-column h3,
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column li {
  margin: 6px 0;
  font-size: 15px;
}

.footer-column a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li i {
  margin-right: 8px;
  color: #ffa500;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: #333;
  margin: 30px auto 15px;
  width: 100%;
  max-width: 1200px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* end of footer section */
@media (max-width: 768px) {

  /* General Layout Adjustments */
  .form-columns,
  .two-column-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .form-column,
  .contact-info-column,
  .two-column-banner .column {
    width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }

  /* Button full width on mobile */
  button[type="submit"] {
    width: 100%;
    font-size: 1rem;
  }

  /* Contact cards stack nicely */
  .contact-card {
    width: 100%;
  }

  /* Reduce padding for smaller screens */
  .register-wrapper,
  .two-column-banner {
    padding: 15px;
  }

  /* Adjust headings */
  .two-column-banner h2,
  .form-header h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  /* FAQ boxes */
  .faq-box {
    margin: 10px 0;
    padding: 15px;
    font-size: 0.95rem;
  }

  /* Final CTA section */
  .final-cta {
    padding: 20px 10px;
    font-size: 1rem;
    text-align: center;
  }
}

/* About Page styles */

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.about-image-column {
  flex: 1 1 45%;
  text-align: center;
}

.about-image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text-column {
  flex: 1 1 50%;
}

.about-section {
  background: transparent;
  box-shadow: none;
  border-radius: 15px;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

.about-section h2 {
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #1e90ff, #00c9ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  letter-spacing: 1px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  max-width: 850px;
  margin: 0 auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text-column,
  .about-image-column {
    flex: 1 1 100%;
  }
}

.mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.mission-text-column {
  flex: 1 1 50%;
}

.mission-section {
  text-align: left;
  animation: fadeIn 1.2s ease-in-out;
}

.mission-section h2 {
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.mission-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 15px;
}

.mission-image-column {
  flex: 1 1 45%;
  text-align: center;
}

.mission-image-column img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 5px;
  display: block;
  margin-left: 0;
  transition: transform 0.3s ease;

  /* Fading edges using mask */
  -webkit-mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.5) 80%,
      rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.5) 80%,
      rgba(0, 0, 0, 0) 100%);

  /* Ensure mask works across all browsers */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mission-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .mission-text-column,
  .mission-image-column {
    flex: 1 1 100%;
  }

  .mission-section {
    text-align: center;
  }
}

.what-sets-apart-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

.what-sets-apart-section h2 {
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.what-sets-apart-section p {
  font-size: 18px;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  margin: 0 auto;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Font Awesome CDN required for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Unique multi-color backgrounds */
.about-feature-card:nth-child(1) {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.about-feature-card:nth-child(2) {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.about-feature-card:nth-child(3) {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.about-feature-card:nth-child(4) {
  background: linear-gradient(135deg, #ee0979, #ff6a00);
}

/* --- MOBILE FIRST: stack, no swipe --- */
.about-features-section {
  display: block !important;
  /* stop flex row */
  overflow-x: hidden !important;
  /* kill horizontal scroll */
  white-space: normal !important;
  /* prevent nowrap-induced overflow */
  padding: 20px 10px;
}

.about-feature-card {
  display: block !important;
  /* one per line */
  flex: none !important;
  /* override flex: 0 0 25% */
  width: auto;
  /* fit text */
  max-width: 100%;
  /* never overflow viewport */
  height: auto;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
}

/* Safety: wrap long words/URLs so they don't force overflow */
.about-feature-card h3,
.about-feature-card p {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* Optional: also prevent page-level horizontal panning on mobile */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    touch-action: pan-y;
    /* ignore horizontal swipe gestures */
  }
}

/* --- DESKTOP: bring back rows of cards if you want --- */
@media (min-width: 769px) {
  .about-features-section {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: visible;
  }

  .about-feature-card {
    flex: 0 0 25% !important;
    /* 4 per row */
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .about-features-section {
    display: block !important;
    /* kill flex */
    overflow-x: hidden !important;
    /* prevent scroll */
    white-space: normal !important;
    /* avoid nowrap */
    width: 100% !important;
  }

  .about-feature-card {
    flex: none !important;
    /* cancel flex sizing */
    width: 100% !important;
    /* full width on mobile */
    max-width: 100% !important;
    display: block !important;
    /* stack vertically */
    margin: 10px 0 !important;
    box-sizing: border-box !important;
  }
}


/* approcah section*/
.about-approach-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1600px;
  margin: 60px auto;
  padding: 20px 10px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.about-approach-column {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.about-approach-column:last-child {
  border-right: none;
}

.about-icon {
  font-size: 24px;
  color: #4a4a4a;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.about-icon:hover {
  transform: scale(1.3) rotate(5deg);
}

.about-approach-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.about-approach-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.about-stats-number {
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(to right, #00b4db, #0083b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.about-stats-label {
  font-size: 14px;
  color: #555;
}

/* methadology image */

.about-approach-image {
  margin-top: 30px;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;

  /* Fade edges using mask */
  -webkit-mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0.2) 90%,
      rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0.2) 90%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

@media (max-width: 768px) {
  .about-approach-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-approach-section {
    grid-template-columns: 1fr;
  }
}

.about-network-partnership {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 20px;
  flex-wrap: wrap;
  /* ✅ allow wrapping on small screens */
}

.about-network-column,
.about-partnership-column {
  flex: 1 1 48%;
  /* two columns side by side on desktop */
  box-sizing: border-box;
  background: #f2f8ff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Partnership column (if you want different style) */
.about-partnership-column {
  background: transparent;
  box-shadow: none;
}

/* Inner content */
.about-icon {
  font-size: 48px;
  margin-bottom: 10px;
  color: #007acc;
}

.about-network-column h3,
.about-partnership-column h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1e3a5f;
}

.about-network-column p,
.about-partnership-column p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.about-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-highlight-box {
  background-color: #e0efff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #003e74;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ✅ Mobile: stack columns */
@media (max-width: 768px) {

  .about-network-column,
  .about-partnership-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


.about-partnership-column h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #193b68;
}

.about-partnership-column p {
  font-size: 16px;
  color: #080a02;
  margin-bottom: 20px;
}

.about-partnership-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-partnership-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #892020;
  font-weight: 500;
}

.about-cta {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out forwards;
  border-radius: 12px;
  max-width: 1200px;
  margin: 50px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-cta h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

.about-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007acc;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-cta-button:hover {
  background-color: #005fa3;
}

.about-cta-button .arrow {
  margin-left: 10px;
  font-size: 18px;
  vertical-align: middle;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-features-section {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px;
  gap: 5px;
  max-width: 100%;
  scroll-snap-type: x mandatory;
}

.about-feature-card {
  flex: 0 0 25%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 0;
  text-align: center;
  color: #fff;
  min-height: 130px;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

/* Card backgrounds */
.about-feature-card:nth-child(1) {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.about-feature-card:nth-child(2) {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.about-feature-card:nth-child(3) {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.about-feature-card:nth-child(4) {
  background: linear-gradient(135deg, #ee0979, #ff6a00);
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Hide scrollbar */
.about-features-section::-webkit-scrollbar {
  display: none;
}

.about-features-section {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Mobile: large scrollable cards */
@media (max-width: 768px) {
  .about-feature-card {
    flex: 0 0 80%;
  }
}

/* Desktop: 4-column grid */
@media (min-width: 1025px) {
  .about-features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .about-feature-card {
    flex: none;
  }
}

/* Approach section grid */
.about-approach-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1600px;
  margin: 60px auto;
  padding: 20px 10px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
  .about-approach-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*end of About page styles */

/* services page styles */


.services-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1600px;
  margin: auto;
  padding: 40px 20px;
}

/* Left Column */
.services-left-column {
  flex: 0 0 35%;
  /*background-color: #f0f4ff;*/
  padding: 30px;
  border-radius: 10px;
}

.services-left-column h2 {
  font-size: 32px;
  font-weight: 800;
  color: #005bbb;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-left-column h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #005bbb, #00c6ff);
  border-radius: 2px;
}

.services-left-column h2 {
  animation: fadeSlideIn 1s ease-in-out;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-left-column p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 90%;
  background: #f0f8ff;
  padding: 15px 20px;
  border-left: 5px solid #005bbb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 91, 187, 0.1);
  font-weight: 500;
}

.services-left-column img {
  max-width: 100%;
  height: auto;
  margin-top: 50px;
}

/* Right Column */
.services-feature-cards {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Feature Card */
.services-card {
  padding: 10px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  background: #222;
  /* fallback */
}

.services-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 0px;
}

.services-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

.services-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.services-card ul {
  padding-left: 20px;
  font-size: 14px;
}

.services-card ul li {
  list-style: none;
  margin-bottom: 6px;
}

.services-card ul li::before {
  content: "✔ ";
  color: #fff;
  margin-right: 4px;
}

/* Background color variations */
.services-bg-blue {
  background-color: #005bbb;
}

.services-bg-green {
  background-color: #219653;
}

.services-bg-orange {
  background-color: #f2994a;
}

.services-bg-purple {
  background-color: #9b51e0;
}

.services-bg-red {
  background-color: #eb5757;
}

.services-bg-teal {
  background-color: #2d9cdb;
}

/* === SERVICE MODAL STYLES (AVK Services) === */

.service-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: rgba(255, 255, 255, 0.05);
  /* Frosted glass effect */
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  color: #fff;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
  text-align: left;
}

/* Headings and Text */
.modal-content h2 {
  margin-top: 0;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* List styling */
.modal-content ul {
  padding-left: 20px;
  margin: 0;
}

.modal-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Close Button */
.close-btn,
.close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* Prevent body scroll when modal open */
.modal-open {
  overflow: hidden;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    padding: 20px 15px;
    font-size: 0.95rem;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .modal-content ul {
    padding-left: 15px;
  }
}

/*end of Services modal styles*/

/* services degital section */
.services-digital-section {
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.services-digital-section h2 {
  font-size: 36px;
  color: #1a73e8;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.services-digital-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1a73e8;
  margin: 12px auto 0;
  border-radius: 2px;
}

.services-digital-section p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 10px 15px;
  background: transparent;
  /* Removed background */
  border-left: 5px solid #1a73e8;
  border-right: 5px solid #1a73e8;
  border-radius: 8px;
  font-weight: 500;
}

/* web development animated ect., section styles */
.services-grid-section {
  padding: 60px 20px;
  text-align: center;
}

.services-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.services-grid-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 220px;
}

.services-grid-card {
  padding: 25px 15px;
  border-radius: 16px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.services-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.services-grid-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.services-grid-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Multi-color Backgrounds */
.card-blue {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
}

.card-purple {
  background: linear-gradient(135deg, #8e24aa, #ab47bc);
}

.card-green {
  background: linear-gradient(135deg, #43a047, #66bb6a);
}

.card-orange {
  background: linear-gradient(135deg, #fb8c00, #ffa726);
}

.card-teal {
  background: linear-gradient(135deg, #00897b, #26a69a);
}

.card-yellow {
  background: linear-gradient(135deg, #fbc02d, #ffeb3b);
  color: #333;
}

.card-red {
  background: linear-gradient(135deg, #e53935, #ef5350);
}

.card-gray {
  background: linear-gradient(135deg, #546e7a, #78909c);
}

@media (max-width: 600px) {
  .services-grid-column {
    flex: 1 1 100%;
  }
}

/* consutation planning execution section */

.service-process-section {
  padding: 60px 20px;

}

.service-process-wrapper {
  display: flex;
  flex-direction: row;
  /* ensure side-by-side */
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: nowrap;
  /* do not wrap */
}

/* Left Column (Cards) */
.process-left-column {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 0;
}

/* Right Column (Heading, Paragraph, Image) */
.process-right-column {
  flex: 1 1 40%;
  min-width: 300px;
  padding-top: 10px;
  text-align: center;
}

.process-right-column h2 {
  font-size: 28px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.process-right-column p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 20px;
}

.process-right-column img {
  width: 100%;
  border-radius: 12px;
  display: block;
  mask-image: radial-gradient(ellipse closest-side, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(ellipse closest-side, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
}

/* Glass-style cards with timeline dot */
.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  border-left: 4px solid #1a73e8;
  padding: 8px 12px 8px 18px;
  /* reduced all sides */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  min-height: 120px;
  /* optional: sets consistent height */
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  border-left: 4px solid #1a73e8;
  padding: 4px 10px 4px 16px;
  /* tighter padding */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  min-height: 55px;
  /* was ~110px, now 50% */
  font-size: 14px;
}

.process-step h3 {
  font-size: 16px;
  margin: 0 0 4px;
  color: #00b4db;
}

.process-step p {
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
  color: #65060e;
}


.service-engagement-section {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  padding: 20px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-engagement-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1a73e8, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-engagement-text {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1;
  font-weight: 500;
  position: relative;

}

.service-engagement-text::before {
  content: "💡";
  font-size: 24px;
  position: absolute;
  left: -30px;
  top: 10px;
}

.service-engagement-models-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.service-engagement-models-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.service-engagement-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-engagement-card img {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
}

.service-engagement-card h3 {
  font-size: 22px;
  color: #0a0e3f;
  margin-bottom: 10px;
}

.service-engagement-card p {
  font-size: 15px;
  color: #6f1c1c;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-engagement-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-engagement-card ul li {
  font-size: 14px;
  color: #22636b;
  margin-bottom: 6px;
  text-align: left;
  padding-left: 16px;
  position: relative;
}

.service-engagement-card ul li::before {
  content: " ✔️ ";
  position: absolute;
  left: 0;
}

/* --- Responsive Mobile Styles --- */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    padding: 20px 10px;
  }

  .services-left-column,
  .services-feature-cards {
    flex: 1 1 100%;
    width: 100%;
    padding: 20px 10px;
  }

  .services-feature-cards {
    grid-template-columns: 1fr;
  }

  .services-left-column h2 {
    font-size: 24px;
  }

  .services-left-column p {
    font-size: 16px;
    padding: 12px 15px;
  }

  .services-card {
    text-align: center;
  }

  .services-digital-section h2 {
    font-size: 28px;
  }

  .services-digital-section p {
    font-size: 16px;
    padding: 10px;
  }

  .services-grid-column {
    flex: 1 1 100%;
  }

  .services-grid-wrapper {
    flex-direction: column;
  }

  .service-process-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .process-left-column,
  .process-right-column {
    flex: 1 1 100%;
    width: 100%;
  }

  .process-right-column img {
    margin-top: 20px;
  }

  .service-engagement-section {
    padding: 30px 10px;
  }

  .service-engagement-heading {
    font-size: 28px;
  }

  .service-engagement-text {
    font-size: 16px;
    padding: 0 10px;
  }

  .service-engagement-models-container {
    grid-template-columns: 1fr;
  }

  .service-engagement-card {
    padding: 20px;
  }

  .service-engagement-card img {
    width: 90px;
    height: 70px;
  }

  .service-engagement-card h3 {
    font-size: 20px;
  }

  .service-engagement-card p,
  .service-engagement-card ul li {
    font-size: 14px;
  }

  .service-engagement-text::before {
    left: -20px;
    top: 5px;
  }
}

/* Data collection page styles */
/* === General Styling === */

/* Main Section Heading */
.DT-heading-main {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.3;
  text-decoration: underline;
}

/* Intro Paragraph */
.DT-paragraph-intro {
  font-size: 18px;
  text-align: center;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

/* Detail Paragraph */
.DT-paragraph-detail {
  font-size: 16px;
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

.DT-section {
  padding: 20px 10px;
  margin: 0 auto;
  max-width: 1300px;
}

.DT-heading {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.DT-paragraph {
  text-align: center;
  font-size: 1.1em;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* === Card Container Shared === */
.DT-card-container,
.DT-card-row,
.DT-grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* === Responsive Cards === */
.DT-card-container>div,
.DT-card-row>div,
.DT-grid-3>div {
  flex: 1 1 calc(33.333% - 20px);
  /* 3 cards per row on desktop */
  min-width: 250px;
}

/* Tablet */
@media (max-width: 1024px) {

  .DT-card-container>div,
  .DT-card-row>div,
  .DT-grid-3>div {
    flex: 1 1 calc(50% - 20px);
    /* 2 per row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .DT-heading {
    font-size: 1.8em;
  }

  .DT-paragraph {
    font-size: 1em;
    padding: 0 10px;
  }

  .DT-card-container>div,
  .DT-card-row>div,
  .DT-grid-3>div {
    flex: 1 1 100%;
    /* 1 per row */
  }
}

/* Base styles (desktop first) */
.DT-card,
.DT-demo-card,
.quality-card,
.usecase-card {
  width: 200px;
  height: 400px;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: #fff;
  transition: transform 0.2s ease;
  background-size: 150% 150%;
  animation: gradientShift 5s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effect for desktop */
.DT-card:hover,
.DT-demo-card:hover,
.quality-card:hover,
.usecase-card:hover {
  transform: translateY(-6px);
}

/* Images inside cards */
.DT-card img {
  width: 25%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Headings */
.DT-card h3,
.DT-demo-card h4,
.quality-card h4,
.usecase-card h4 {
  color: #1e40af;
  margin-bottom: 5px;
  font-size: 1.2em;
}

/* Paragraphs */
.DT-card p,
.DT-demo-card p,
.quality-card p,
.usecase-card p {
  color: #f2d680;
  font-size: 0.95em;
}

/* Lists inside cards */
.DT-card ul {
  padding-left: 18px;
  color: #f9f9f5;
  text-align: left;
}

/* ✅ Mobile Support */
@media (max-width: 768px) {

  .DT-card,
  .DT-demo-card,
  .quality-card,
  .usecase-card {
    width: 100%;
    height: auto;
    max-width: 320px;
  }

  .DT-card img {
    width: 50%;
    margin: 0 auto 15px auto;
  }

  .DT-card-container,
  .DT-card-row,
  .DT-grid-3 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}


/* === Grid Section (5 & 13) === */
/* === Grid and Card Layout === */
.DT-grid,
.DT-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.DT-cell {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(33% - 20px);
  min-width: 250px;
}

.DT-grid-3 .usecase-card {
  flex: 1 1 calc(33.3% - 20px);
}

.DT-section-7 {
  padding: 20px 10px;
  background: linear-gradient(120deg, #fce4ec 0%, #e3f2fd 100%);
}

.DT-card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.DT-colored-card {
  padding: 20px 10px;
  border-radius: 16px;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  text-align: center;
}

.DT-colored-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.DT-colored-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.DT-colored-card p {
  font-size: 16px;
  color: #444;
}

/* === Mobile & Tablet Responsive Adjustments === */
@media (max-width: 992px) {
  .DT-cell {
    flex: 1 1 calc(50% - 20px);
  }

  .DT-grid-3 .usecase-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .DT-cell {
    flex: 1 1 100%;
  }

  .DT-grid-3 .usecase-card {
    flex: 1 1 100%;
  }

  .DT-card-grid-4 {
    grid-template-columns: 1fr;
  }
}

/*section 9 */
.DT-section-9 {
  padding: 50px 20px;
  background: #f9f9ff;
  text-align: center;
}

.DT-privacy-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 75%;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: left;
}

.DT-part {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.DT-part h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}

.DT-part p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.DT-check {
  color: green;
  font-weight: bold;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .DT-privacy-wrapper {
    flex-direction: column;
    max-width: 90%;
  }

  .DT-part {
    margin-bottom: 20px;
  }
}

/* ===== MOBILE SUPPORT ===== */
@media (max-width: 768px) {

  /* Headings and Paragraphs */
  .DT-heading-main {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .DT-paragraph-intro {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .DT-paragraph-detail {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
  }

  /* Cards: stack full-width */
  @media (max-width: 768px) {

    /* Cards full width on mobile */
    .DT-card,
    .DT-demo-card,
    .quality-card,
    .usecase-card {
      width: 100%;
      height: auto;
      min-height: 250px;
    }

    .DT-card img {
      width: 40%;
    }

    /* Flex-based layouts: stack vertically */
    .DT-card-container,
    .DT-card-row,
    .DT-grid,
    .DT-grid-3 {
      flex-direction: column;
      align-items: center;
    }

    /* Collection grid: stack vertically */
    .DT-collection-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
    }

    /* 4-card grids: single column */
    .DT-card-grid-4 {
      grid-template-columns: 1fr;
    }

    /* Privacy section: stack parts */
    .DT-privacy-wrapper {
      flex-direction: column;
      gap: 20px;
      max-width: 100%;
      padding: 0 10px;
    }

    .DT-part {
      flex: 1 1 auto;
      width: 100%;
    }
  }


  /* === Gradient Colors by Class Override === */
  .DT-card:nth-child(4n+1),
  .usecase-card:nth-child(4n+1),
  .quality-card:nth-child(4n+1) {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
  }

  .DT-card:nth-child(4n+2),
  .usecase-card:nth-child(4n+2),
  .quality-card:nth-child(4n+2) {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
  }

  .DT-card:nth-child(4n+3),
  .usecase-card:nth-child(4n+3),
  .quality-card:nth-child(4n+3) {
    background: linear-gradient(135deg, #43cea2, #185a9d);
  }

  .DT-card:nth-child(4n+4),
  .usecase-card:nth-child(4n+4),
  .quality-card:nth-child(4n+4) {
    background: linear-gradient(135deg, #f7971e, #ffd200);
  }

  /* === Typography Inside Cards === */
  .DT-card h3,
  .DT-demo-card h4,
  .quality-card h4,
  .usecase-card h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
  }

  .DT-card p,
  .DT-demo-card p,
  .quality-card p,
  .usecase-card p {
    font-size: 14px;
    color: #faf7f7;
  }

  /* === Optional Gradient Animation === */
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  /* === Responsive Layout Fixes === */
  @media (max-width: 1024px) {

    .DT-card,
    .DT-demo-card,
    .quality-card,
    .usecase-card {
      width: 45%;
    }
  }

  @media (max-width: 640px) {

    .DT-card,
    .DT-demo-card,
    .quality-card,
    .usecase-card {
      width: 100%;
    }
  }

  /*section 7 */

  .DT-card-grid-7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: auto;
  }

  .DT-card-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 900px;
    margin: auto;
  }

  .DT-card-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: auto;
  }

  .DT-colored-card {
    padding: 10px;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    text-align: center;
    height: 120px;
  }

  .DT-colored-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .DT-colored-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .DT-colored-card p {
    font-size: 14px;
    color: #444;
    margin: 0;
  }

  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .DT-section-7 {
      padding: 30px 10px;
    }

    .DT-colored-card h4 {
      font-size: 16px;
    }

    .DT-colored-card p {
      font-size: 13px;
    }

    .DT-card-grid-4 {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media screen and (max-width: 480px) {
    .DT-card-grid-4 {
      grid-template-columns: 1fr;
    }
  }

  /* section  9 Annotation page*/
  .section-specs-clean {
    padding: 60px 20px;
    text-align: center;
  }

  .specs-container {
    width: 50%;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .specs-container {
      width: 90%;
    }
  }

  .specs-title {
    font-size: 2rem;
    color: #003049;
    margin-bottom: 30px;
    border-bottom: 3px solid #003049;
    display: inline-block;
    padding-bottom: 10px;
  }

  .specs-rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .specs-row1 {
    display: flex;
    justify-content: space-between;
    background: #341e1e;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .specs-label1 {
    font-weight: bold;
    color: #cabebe;
    flex: 1;
    text-align: center;
  }

  .specs-value1 {
    font-weight: bold;
    flex: 1;
    color: #c9c3c3;
    text-align: center;
  }


  .specs-row {
    display: flex;
    justify-content: space-between;
    background: #b9b2b2;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .specs-label {
    font-weight: bold;
    color: #222;
    flex: 1;
    text-align: left;
  }

  .specs-value {
    flex: 1;
    color: #ca2525;
    text-align: center;
  }

  @media (max-width: 600px) {
    .specs-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .specs-value {
      text-align: left;
      margin-top: 5px;
    }
  }

  .DT-section-13 {
    padding: 60px 20px;
    background-color: #f7faff;
    text-align: center;
  }

  .DT-card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
  }

  .DT-card {
    min-height: 340px;
    /* Adjust as needed */
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
  }

  .DT-card_RD {
    min-height: 220px;
    /* Adjust as needed */
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
  }

  .DT-card-5 {
    min-height: 150px;
    /* Adjust as needed */
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
  }

  .DT-cardav-5 {
    min-height: 20px;
    /* Adjust as needed */
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
  }

  .DT-card:hover {
    transform: translateY(-5px);
  }

  .DT-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c2c2c;
  }

  .DT-card p {
    font-size: 14px;
    color: #6b3805;
  }

  /* Fix for mobile view */
  @media (max-width: 768px) {
    .DT-card-grid-4 {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .DT-card {
      padding: 12px;
    }
  }

  @media (max-width: 768px) {

    .DT-card-grid-5,
    .DT-card-grid-7 {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {

    .DT-card-grid-5,
    .DT-card-grid-7 {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .DT-card {
      min-height: unset;
      padding: 12px;
    }
  }

  @media (max-width: 480px) {

    .DT-card h3,
    .DT-card h4,
    .DT-colored-card h4 {
      font-size: 14px;
    }

    .DT-card p,
    .DT-colored-card p {
      font-size: 12px;
    }

    .DT-card,
    .DT-colored-card {
      padding: 8px;
    }
  }
}

.cards-3-line-section {
  padding: 20px 10px;
  margin: 0 auto;
  max-width: 1300px;
}

.cards-3-line-heading {
  text-align: center;
  font-size: 2.2em;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.cards-3-line-paragraph {
  text-align: center;
  font-size: 1.1em;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Card container for 3 per row */
.cards-3-line-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Card styling */
.cards-3-line-card {
  padding: 20px;
  border-radius: 12px;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  /* auto height based on content */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cards-3-line-card h4 {
  margin-bottom: 10px;
  font-size: 1.25em;
}

.cards-3-line-card p {
  margin-bottom: 10px;
}

.cards-3-line-card ul {
  padding-left: 20px;
  margin: 0;
}

.cards-3-line-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cards-3-line-heading {
    font-size: 1.8em;
  }

  .cards-3-line-card {
    padding: 16px;
  }
}

.DT-section-cards-4-line .DT-cards-4-line-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 10px;
  /* smaller vertical and horizontal gaps */
  padding-left: 20px;
  /* overall left padding so first card is away */
}

/* Add extra left margin only to the first card in each row */
.DT-section-cards-4-line .DT-card:nth-child(4n+1) {
  margin-left: 20px;
}

/* Make card height dynamic */
.DT-section-cards-4-line .DT-card {
  background: #1f1f1f;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  height: auto;
  /* dynamic height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Adjust image size and spacing */
.DT-section-cards-4-line .DT-card img {
  width: 40%;
  margin-bottom: 10px;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .DT-section-cards-4-line .DT-cards-4-line-container {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 15px;
  }

  /* First card of each 2-card row */
  .DT-section-cards-4-line .DT-card:nth-child(2n+1) {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .DT-section-cards-4-line .DT-cards-4-line-container {
    grid-template-columns: 1fr;
    padding-left: 10px;
  }

  /* Only one card per row, no extra left margin */
  .DT-section-cards-4-line .DT-card {
    margin-left: 0 !important;
  }
}

.DT-cards-4-line-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* center cards horizontally */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.DT-card {
  flex: 1 1 calc(25% - 20px);
  max-width: 280px;
  min-width: 250px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: #333;
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto !important;
  /* <-- ADDED */
  min-height: auto !important;
  /* <-- ADDED */
}

.DT-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

section ul li,
section p {
  color: black !important;
}

@media (max-width: 900px) {
  .DT-card {
    flex: 1 1 calc(50% - 20px);
    max-width: none;
  }
}

@media (max-width: 550px) {
  .DT-card {
    flex: 1 1 100%;
  }
}

/* end of DT cards 4*/

.keybenefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
  flex-wrap: nowrap;
}

.keybenefits-card-pair {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.keybenefits-info h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #222;
}

.keybenefits-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
}

.keybenefits-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.keybenefits-card ul {
  list-style: disc inside;
  padding-left: 10px;
  margin: 0;
  color: #444;
  font-size: 0.95rem;
}

.keybenefits-card ul li {
  margin-bottom: 6px;
}

/* Remove background from cards */
.keybenefits-card-pair,
.keybenefits-card,
.keybenefits-info {
  background: transparent;
  box-shadow: none;
}

/* Responsive: stack vertically on tablets/mobile */
@media (max-width: 900px) {
  .keybenefits-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .keybenefits-card-pair {
    flex: 1 1 100%;
  }
}

/*table two columns section*/

.table-section-specs-clean {
  padding: 20px 10px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.table-specs-container {
  width: 100%;
}

.table-specs-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Each row is a flex container with two columns */
.table-specs-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 8px;
  color: #333;
}

/* Label column */
.table-specs-label {
  flex: 1 1 40%;
  font-weight: 600;
}

/* Value column */
.table-specs-value {
  flex: 1 1 55%;
  text-align: right;
  font-weight: 400;
  word-break: break-word;
}

/* Header row styling */
.table-specs-header {
  font-size: 1.1rem;
  font-weight: 700;
  background: #333;
  color: #fff;
  text-transform: uppercase;
}

/* Alternating background colors */
.table-specs-row-alt1 {
  background: #f0f8ff;
  /* AliceBlue */
}

.table-specs-row-alt2 {
  background: #e6f2ff;
  /* Light Blue */
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .table-specs-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .table-specs-label,
  .table-specs-value {
    flex: 1 1 100%;
    text-align: left;
    margin-bottom: 6px;
  }

  .table-specs-value {
    font-weight: 600;
  }
}

.DT-two-column-grid {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
  padding: 20px;
}

.DT-row-pair {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.DT-column-left,
.DT-column-right {
  flex: 1;
}

.DT-column-left h3 {
  margin-top: 0;
  color: #333;
}

.DT-column-left p {
  color: #222;
  line-height: 1.5;
}

.DT-column-right h4 {
  margin-top: 0;
  color: #444;
  font-weight: 600;
  margin-bottom: 12px;
}

.DT-column-right ul {
  list-style-type: none;
  padding-left: 0;
  color: #111;
}

.DT-column-right ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Custom bullet icon */
.DT-column-right ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6c63ff;
  /* accent color */
  font-weight: bold;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .DT-row-pair {
    flex-direction: column;
    gap: 15px;
  }
}

/* Container grid for cards */
.DT-card-grid.services-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Individual card styling */
.DT-process-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  /* allows wrapping on small screens */
  margin-top: 20px;
}

.DT-process-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 18%;
  /* approx 5 cards per row with gaps */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
  /* keep cards from shrinking too much */
}

.DT-process-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 12px;
}

.DT-process-card h4 {
  margin: 12px 0 8px;
  font-weight: 600;
  color: #333;
}

.DT-process-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
  .DT-process-card {
    flex: 1 1 45%;
    /* 2 per row */
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .DT-process-card {
    flex: 1 1 100%;
    /* full width on small screens */
  }
}

/* Container grid for process cards with 5 or 6 items */
.DT-process-grid-unique {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 30px 10px;
  background: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* Individual card style */
.DT-process-card-unique {
  background: white;
  border-radius: 20px;
  padding: 25px 20px 30px;
  flex: 1 1 18%;
  min-width: 120px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

.DT-process-card-unique:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.DT-process-card-unique h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.DT-process-card-unique p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  user-select: none;
}

.DT-process-card-unique img {
  max-width: 30%;
  height: auto;
  border-radius: 8px;
  user-select: none;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}

/* Mobile support */
@media (max-width: 480px) {
  .DT-process-card-unique img {
    width: 100%;
    /* Full width on small screens */
    height: auto;
    margin-bottom: 0.75rem;
  }
}


/* Responsive styles */
@media (max-width: 1024px) {
  .DT-process-card-unique {
    flex: 1 1 45%;
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .DT-process-card-unique {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Reusable styles for 4-card layouts, for reference */
.DT-cards-4-line-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px 10px;
}

.DT-card {
  border-radius: 20px;
  padding: 25px 20px 30px;
  flex: 1 1 23%;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  color: black;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.DT-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.DT-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #222;
}

.DT-card p,
.DT-card ul li {
  color: black;
  font-size: 0.95rem;
  line-height: 1.4;
}

.DT-card ul {
  text-align: left;
  padding-left: 20px;
  list-style-position: outside;
  margin: 12px 0 0 0;
}

/* Responsive for 4-card layouts */
@media (max-width: 1024px) {
  .DT-card {
    flex: 1 1 45%;
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .DT-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Digital page styles */

.tech-stack-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tech-label {
  width: 180px;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.tech-items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-chip {
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bg1 {
  background: #e1f5fe;
}

.bg2 {
  background: #fce4ec;
}

.bg3 {
  background: #e8f5e9;
}

.bg4 {
  background: #fff3e0;
}

.bg5 {
  background: #ede7f6;
}

.bg6 {
  background: #f3e5f5;
}

.focus-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.focus-row {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #222;
}

.focus-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.focus-subtitle {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-chip {
  background: #f1f1f1;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bg-startup {
  background: #e1f5fe;
}

.bg-enterprise {
  background: #fce4ec;
}

.bg-ai {
  background: #e8f5e9;
}

.process-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.process-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #222;
  transition: transform 0.3s ease;
  /* Centering styles */
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Horizontal center */
  justify-content: center;
  /* Vertical center if fixed height */
  text-align: center;
  /* Center text content */
}


.process-card:hover {
  transform: translateY(-3px);
}

.process-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step {
  font-size: 24px;
  font-weight: 700;
  color: #888;
  margin-bottom: 4px;
}

.process-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.deliverables-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.deliverables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.deliverables-list li {
  background: #f1f1f1;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .process-step {
    font-size: 20px;
  }

  .process-title {
    font-size: 16px;
  }

  .process-description {
    font-size: 13px;
  }

  .deliverables-list li {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Container for heading and intro paragraph */
.audiovid-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.audiovid-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002f2f;
  margin-bottom: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.audiovid-section p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid container for cards */
.audiovid-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Each individual card */
.audiovid-card {
  background: var(--card-color, #00796b);
  border-radius: 14px;
  padding: 28px 24px 36px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audiovid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.15);
}

.audiovid-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.audiovid-card p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #e0f2f1cc;
  /* lighter shade */
}

.audiovid-card button {
  background-color: rgba(255 255 255 / 0.9);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--card-color, #00796b);
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.audiovid-card button:hover {
  background-color: white;
  color: #004d40;
}

/* Responsive for tablets */
@media (max-width: 900px) {
  .audiovid-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .audiovid-card-grid {
    grid-template-columns: 1fr;
  }

  .audiovid-section h2 {
    font-size: 2rem;
  }

  .audiovid-section p {
    font-size: 1rem;
  }

  .audiovid-card {
    padding: 22px 18px 28px;
  }
}

.audiovid-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 16px;
}

.audiovid-card {
  background: var(--card-color, #222);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  color: #fff;
  padding: 24px 18px;
  transition: transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}

.audiovid-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.audiovid-card p,
.music-list {
  margin-bottom: 13px;
  font-size: 1rem;
}

button {
  margin-top: auto;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.18s;
}

button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.music-list {
  padding-left: 22px;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #fff;
}

.music-list li {
  margin-bottom: 8px;
  list-style-type: "🎵 ";
  /* music note bullet */
}

@media (max-width: 1024px) {
  .audiovid-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 8px;
  }

  .audiovid-card {
    min-height: 210px;
    padding: 18px 11px;
  }
}

@media (max-width: 600px) {
  .audiovid-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .audiovid-card {
    min-height: 170px;
    padding: 15px 8px;
  }

  .audiovid-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .music-list,
  .audiovid-card p {
    font-size: 0.95rem;
    margin-bottom: 9px;
  }

  button {
    font-size: 0.96rem;
    padding: 7px 11px;
  }
}


.usecase-section {
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
  color: #fff;
  padding: 10px 5px;
  /* reduced padding */
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: 20px auto;
  /* less margin */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.usecase-container {
  max-width: 500px;
  /* slightly narrower */
  margin: auto;
}

.usecase-title {
  font-size: 2rem;
  /* smaller font */
  font-weight: 700;
  margin-bottom: 12px;
  /* less space below */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* less spacing */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.usecase-description {
  font-size: 1rem;
  /* smaller paragraph */
  line-height: 1.4;
  font-weight: 500;
  max-width: 600px;
  margin: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Cards grid: reduce row height by tightening padding */
/* Cards styling */
.DT-section-13 .DT-card-grid-3>.DT-card-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  /* 2 cards per row */
  gap: 20px !important;
}

.DT-section-13 .DT-card-grid-3>.DT-card-grid-3>div {
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #222;
  min-height: auto;
}

/* Responsive: 1 card per row on smaller screens */
@media (max-width: 700px) {
  .DT-section-13 .DT-card-grid-3>.DT-card-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Responsive tweaks for usecase section */
@media (max-width: 600px) {
  .usecase-section {
    padding: 25px 10px;
  }

  .usecase-title {
    font-size: 1.6rem;
  }

  .usecase-description {
    font-size: 0.9rem;
  }
}

/* Another responsive adjustment block (merged and fixed) */
@media (max-width: 600px) {
  .usecase-section {
    padding: 35px 15px;
  }

  .usecase-title {
    font-size: 2rem;
  }

  .usecase-description {
    font-size: 1rem;
  }
}

.audiovid-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  background: linear-gradient(135deg, #c765f4, #6d0073);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.audiovid-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.audiovid-section p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: #d0f0f7;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .audiovid-section {
    padding: 25px 15px;
  }

  .audiovid-section h3 {
    font-size: 2rem;
  }

  .audiovid-section p {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .audiovid-section {
    padding: 20px 10px;
  }

  .audiovid-section h3 {
    font-size: 1.6rem;
  }

  .audiovid-section p {
    font-size: 0.9rem;
  }
}