@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* Codeageing theme */
:root {
  --brand-dark: #344C36;
  --brand-amber: #FAAD1B;
  --bg: #ffffff;
  --muted: #6b6b6b;
}

* {
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
   font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;

}

.Nav-header {
  position: sticky;
  top: 0;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 14px 22px;
  height: auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(52, 76, 54, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(18, 29, 22, 0.08);
  gap: 24px;
  z-index: 10000;
}

.logo-container img {
  height: 62px;
}

.Nav-menu {
  width: auto;
  flex: 1;
  padding: 0;
  align-items: center;
  border-bottom: none;
}

.Nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.Nav-menu li {
  list-style-type: none;
}

.Nav-menu a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.Nav-menu ul > li > a:not(.CTA-Nav):not(.Nav-icon) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.Nav-menu ul > li > a:not(.CTA-Nav):not(.Nav-icon):hover {
  color: #213223;
  background: rgba(52, 76, 54, 0.06);
  border-color: rgba(52, 76, 54, 0.1);
}

.Nav-icon i {
  color: #20a85b;
  font-size: 34px;
}

.CTA-Nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #faad1b, #ffd36a);
  color: #223325;
  box-shadow: 0 14px 28px rgba(250, 173, 27, 0.2);
}

.CTA-Nav:hover {
  color: #ffffff;
  background: #344C36;
  transform: translateY(-1px);
}

.nav-btn {
  font-size: 1.8rem;
  border: 1px solid var(--brand-amber);
  border-radius: 14px;
  background-color: var(--brand-dark);
  color: var(--brand-amber);
  padding: 8px 11px;
  box-shadow: 0 10px 20px rgba(18, 29, 22, 0.12);
}

.nav-submenu-toggle {
  display: none;
  border: 1px solid rgba(52, 76, 54, 0.14);
  background: rgba(52, 76, 54, 0.04);
  color: var(--brand-dark);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-submenu-toggle:hover {
  background: rgba(52, 76, 54, 0.08);
  border-color: rgba(52, 76, 54, 0.24);
}

/* nab menu toggler for mobile resposive */
@media (min-width:995px) {

  /* min means css apply outside this width */
  .nav-btn {
    visibility: hidden;
    display: none;

  }

}

/* .....................................****************************......................................
navbar menu responsive  ..................................... */


/* services dropdown design  */
.dropdown-container {
  position: absolute;
  display: flex;
  
  top: 200%;
  left: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdf8 100%);
  width: 1100px;
  border: 1px solid #e2e8e2;
  border-radius: 16px;
  padding: 22px;
  gap: 22px;
  box-shadow: 0 18px 42px rgba(32, 56, 35, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  overflow: hidden;

}

/* Show dropdown when hovering the Services link or when hovering the dropdown itself */
.nav-service {
  position: relative;
}

.nav-project {
  position: relative;
}

.nav-service:hover .dropdown-container,
.nav-project:hover .dropdown-container,
.nav-project:focus-within .dropdown-container,
.nav-service:focus-within .dropdown-container,
.dropdown-container:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.drop-down-services-img img {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  object-fit: cover;
}

.drop-down-services-content span {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--muted);
}

.drop-down-services-content h5 {
  font-size: 0.88rem;
  line-height: 1.2;
  color: #233525;
}

.dropdown-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1 1 auto;

}

.dropdown-services a {
  text-decoration: none;
  color: var(--brand-dark);
  display: block;
}

.drop-down-services1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #e5ebe5;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 10px;
  gap: 10px;
  width: 100%;
  min-height: 70px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #111;

}

.drop-down-services1:hover {
  border: 1px solid #9ab89d;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 54, 33, 0.1);
}

.drop-down-services-content {
  width: 100%;
  min-width: 0;

}

.drop-down-CAT {
  width: 280px;
  min-width: 280px;
  border: 1px solid #e3ece3;
  padding: 12px;
  text-align: center;
  margin: 0%;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbf6 0%, #eef5ea 100%);
}

.drop-down-CAT img {
  width: 100%;
  height: 152px;
  border-radius: 10px;
  object-fit: cover;
}

.drop-down-cta-btn {
  font-size: 0.95rem;
  padding: 12px 8px 8px;
  color: var(--brand-dark);
}

.drop-down-cta-btn a {
  display: inline-block;
  padding: 10px 14px;
}

.drop-down-cta-btn p {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-dropdown {
  width: 980px;
  left: 50%;
}

.project-dropdown-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-dropdown-card {
  align-items: flex-start;
  min-height: 88px;
}

.project-dropdown-card .drop-down-services-img img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
 
}

.project-dropdown-card .drop-down-services-content h5 {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.project-dropdown-card .drop-down-services-content span {
  font-size: 0.78rem;
}

.project-dropdown-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: left;
  background: linear-gradient(180deg, #f4f8ef 0%, #e8f0df 100%);
}

.project-dropdown-cta h4 {
  color: #233525;
  font-size: 1.2rem;
  line-height: 1.35;
}

.project-dropdown-cta p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.project-dropdown-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(52, 76, 54, 0.1);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}



.Hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
  justify-content: space-evenly;


}

.Hero-Text-container {
  color: var(--brand-dark);
  width: 500px;

  h1 {
    font-size: 45px;
    display: inline-block;
    margin: 0px;
  }
}

.Hero-image-container img {
  height: 400px;


}

.CAT-Container {
  gap: 60px;
  display: flex;
  margin-top: 20px;
}


.CAT-outline {
  color: var(--brand-dark);
  outline: 1px solid #344C36;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;

}

.CAT-outline:hover {
  background-color: #344C36;
  color: #ffffff;
}

/* section 2 */
.future-ai-section {
  position: relative;
  padding: 110px 20px;
  color: #e8f0ec;
  background: radial-gradient(900px 360px at 10% -10%, rgba(80, 255, 204, 0.12), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(250, 173, 27, 0.16), transparent 55%),
    linear-gradient(180deg, #0c1311 0%, #101a17 55%, #0c1311 100%);
  overflow: hidden;
  font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
}

.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.8), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.ai-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.ai-glow-left {
  left: -140px;
  top: 40px;
  background: rgba(80, 255, 204, 0.35);
}

.ai-glow-right {
  right: -120px;
  bottom: 60px;
  background: rgba(250, 173, 27, 0.4);
}

.future-ai-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.Future-Ai-Text-con {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7fffd4;
  border: 1px solid rgba(127, 255, 212, 0.4);
  background: rgba(127, 255, 212, 0.1);
  margin-bottom: 18px;
}

.Future-Ai-Text-con h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #f7f9f8;
}

.Future-Ai-Text-con p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(233, 240, 236, 0.78);
}

.future-ai-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.future-ai-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(127, 255, 212, 0.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.future-ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(127, 255, 212, 0.55), rgba(250, 173, 27, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.future-ai-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 173, 27, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.future-ai-card:hover::before {
  opacity: 1;
}

.future-icon {
  height: 64px;
  width: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(127, 255, 212, 0.25), rgba(250, 173, 27, 0.18));
  border: 1px solid rgba(127, 255, 212, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.future-icon img {
  width: 70%;
  height: 70%;
  filter: brightness(1.2) saturate(1.2);
}

.future-ai-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fae29a;
}

.future-ai-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.future-ai-cta {
  text-align: center;
  margin-top: 70px;
}

.future-ai-cta p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.future-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #FAAD1B, #ffd36a);
  color: #1a2b22;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px rgba(250, 173, 27, 0.25);
}

.future-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(250, 173, 27, 0.35);
}

/* services section style  */

.services-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 60%, #ffffff 100%);
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #344C36;
  margin-bottom: 15px;
}

.section-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  background: #ffffff;
  padding: 28px 26px 30px;
  border-radius: 20px;
  border: 1px solid rgba(52, 76, 54, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 8px 24px rgba(18, 29, 22, 0.08);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(250, 173, 27, 0.6), rgba(52, 76, 54, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 173, 27, 0.7);
  box-shadow: 0 18px 45px rgba(18, 29, 22, 0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(250, 173, 27, 0.22), rgba(52, 76, 54, 0.12));
  color: var(--brand-dark);
  font-size: 1.9rem;
  margin-bottom: 16px;
  border: 1px solid rgba(250, 173, 27, 0.35);
}

.service-card h3 {
  color: #344C36;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FAAD1B;
  font-weight: bolder;
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}

.services-cta p {
  font-size: 1.1rem;
  color: #344C36;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FAAD1B;
  color: #344C36;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #344C36;
  color: #ffffff;
}

/* about and vision section  */
.about-vision {
  padding: 100px 20px;
  background: linear-gradient(135deg, #344C36, #1f2f26);
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.about-text h2 {
  color: #FAAD1B;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.about-highlight {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(250, 173, 27, 0.3);
}

.about-highlight h3 {
  color: #FAAD1B;
  margin-bottom: 15px;
}

.about-highlight ul {
  list-style: none;
  padding: 0;
}

.about-highlight ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.about-highlight ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FAAD1B;
}


/* project section style  */
.projects-section {
  padding: 90px 20px;
  background-color: #ffffff;

}

.projects-container {
  max-width: 1200px;
  margin: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Project Card */
.project-card {
  position: relative;
  background-color: var(--brand-dark);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: var(--bg);
  height: 100%;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 6;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  background: #0f1a16;
}

/* Overlay */
.project-overlay {
  position: absolute;
  /* top: 120px; */
  /* left: 100px; */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  background: #FAAD1B;
  color: #1f2f26;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.project-card:hover .project-link {
  transform: translateY(0);
}

/* Content */
.project-content {
  padding: 15px;
}

.project-content h2 {
  font-size: 1.2rem;
  color: var(--brand-amber);
  margin-bottom: 10px;
}

.project-content p {
  color: var(--bg);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.project-content ul {
  padding-left: 18px;
}

.project-content li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* Animation (fade + slide) */
.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.animate:nth-child(1) {
  animation-delay: 0.2s;
}

.animate:nth-child(2) {
  animation-delay: 0.4s;
}

.animate:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* testemonials section style  */
.testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1f2f26, #344C36);
  color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #FAAD1B;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
  color: #d8d8d8;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(250, 173, 27, 0.25);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-img {
  width: 55px;
  height: 55px;
  background: #FAAD1B;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}

.client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.client-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.client-info span {
  font-size: 0.85rem;
  color: #cccccc;
}

.testimonial-card p {
  color: #e6e6e6;
  line-height: 1.7;
  font-size: 0.95rem;
}


/* 
why choose us  */
.why-section {
  padding: 90px 20px 110px;
  background: radial-gradient(1200px 400px at 15% 0%, rgba(250, 173, 27, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f9f6 70%, #ffffff 100%);
  color: var(--brand-dark);
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.why-card {
  position: relative;
  padding: 28px 26px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(52, 76, 54, 0.15);
  box-shadow: 0 10px 30px rgba(18, 29, 22, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 173, 27, 0.7);
  box-shadow: 0 18px 45px rgba(18, 29, 22, 0.16);

}

.why-card h3 {
  color: #FAAD1B;
  margin-bottom: 10px;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(250, 173, 27, 0.6), rgba(52, 76, 54, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card p {
  color: #2f3e33;
  line-height: 1.6;
}



/* contact section */
.contact-modern {
  padding: 100px 20px;
  background: linear-gradient(135deg, #344C36, #2b3f2f);
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.contact-info h2 {
  color: #FAAD1B;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.contact-info p {
  color: #e5e5e5;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(250, 173, 27, 0.18);
  color: #FAAD1B;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.72rem;
  border: 1px solid rgba(250, 173, 27, 0.35);
  margin-bottom: 16px;
}

.contact-lead {
  max-width: 640px;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.contact-stats div {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(250, 173, 27, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 28px rgba(8, 15, 11, 0.12);
}

.contact-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-points span {
  display: inline-block;
  color: var(--brand-amber);
  margin-bottom: 10px;
  font-size: 0.95rem;
  padding: 10px 10px 10px 10px;
  border-radius: 20px;

  border: 1px solid rgba(250, 173, 27, 0.35);
}

.contact-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-meta div {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(250, 173, 27, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.contact-meta strong {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--bg);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.contact-meta i {
  color: #FAAD1B;
  font-size: 1.5rem;
  margin-right: 10px;
}

.contact-meta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Form Card */
.contact-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(250, 173, 27, 0.3);
}

.contact-card .field {
  margin-bottom: 14px;
}

.phone-field {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: center;
}

.contact-card select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  appearance: none;
  height: 50px;
  letter-spacing: 0.2px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-card select:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-card select:focus {
  border-color: rgba(250, 173, 27, 0.8);
  box-shadow: 0 0 0 3px rgba(250, 173, 27, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card select option {
  color: #1f2f26;
  background: #ffffff;
}

.contact-card label {
  display: block;
  color: var(--bg);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.phone-field input {
  margin-bottom: 0;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(250, 173, 27, 0.8);
  box-shadow: 0 0 0 3px rgba(250, 173, 27, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card input:invalid:focus,
.contact-card textarea:invalid:focus {
  border-color: rgba(255, 90, 90, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.18);
}

.contact-card textarea {
  min-height: 120px;
  resize: none;
}





.contact-card button {
  width: 100%;
  padding: 14px;
  background-color: #FAAD1B;
  color: #344C36;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-card button:hover {
  background-color: #ffffff;
}

.contact-card button:active {
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    flex-wrap: wrap;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }
}



/* footer section style  */

/* Footer Base */
.footer {
  background-color: #1f2f26;
  color: #ffffff;
  padding: 80px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Headings */
.footer-col h3,
.footer-col h4 {
  color: #FAAD1B;
  margin-bottom: 15px;
}

/* Text */
.footer-col p,
.footer-col li {
  color: #d6d6d6;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Links */
.footer-col a {
  color: #d6d6d6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #FAAD1B;
}

/* Newsletter */
.newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.newsletter button {
  width: 100%;
  padding: 12px;
  background-color: #FAAD1B;
  color: #344C36;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FAAD1B;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #FAAD1B;
  color: #344C36;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #b5b5b5;
}

/* Scroll To Top */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #FAAD1B;
  color: #344C36;
  border: none;
  border-radius: 50%;
  display: none;
  cursor: pointer;
  font-size: 18px;
}

/* Footer Animation */
.animate-footer {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-footer.show {
  opacity: 1;
  transform: translateY(0);
}

/* process section */
.process-section {
  padding: 100px 20px;
  background: radial-gradient(900px 300px at 10% 0%, rgba(250, 173, 27, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7faf7 70%, #ffffff 100%);
  color: var(--brand-dark);
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(52, 76, 54, 0.15);
  box-shadow: 0 12px 30px rgba(18, 29, 22, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 173, 27, 0.7);
  box-shadow: 0 20px 45px rgba(18, 29, 22, 0.16);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(250, 173, 27, 0.18);
  color: #344C36;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(250, 173, 27, 0.45);
}

.process-card h3 {
  color: #344C36;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.process-card p {
  color: #4b5b50;
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stat-card {
  background: #344C36;
  color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(250, 173, 27, 0.35);
}

.stat-card h4 {
  color: #FAAD1B;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.stat-card p {
  color: #e6e6e6;
  font-size: 0.95rem;
}

/* responsive design */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 995px) {
  .Nav-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 10px 16px 16px;
    gap: 10px;
  }

  .logo-container {
    justify-self: start;
  }

  .nav-btn {
    justify-self: end;
  }

  .Nav-menu {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    border-bottom: none;
    padding: 0;
  }

  .Nav-menu ul {
    position: absolute;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--bg);
    padding: 20px;
    display: none;
    text-align: center;
  }

  .Nav-menu.is-open ul {
    display: flex;
  }

  .dropdown-container {
    flex-direction: column;
    position: absolute;

    display: none;

    box-shadow: none;
    border-radius: 12px;
    width: min(92vw, 700px);
    left: 0;
    transform: none;
    padding: 14px;
    gap: 14px;
    margin-top: 10px;
  }

  .nav-service:hover .dropdown-container {
    transform: none;
  }

  .dropdown-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-dropdown {
    width: min(92vw, 700px);
    left: 0;
  }

  .project-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .drop-down-services1 {
    width: 100%;
  }

  .drop-down-CAT {
    width: 100%;
    min-width: 0;
  }

  .Hero-section {
    padding: 40px 20px 10px;
    gap: 30px;
  }

  .Hero-Text-container {
    width: 100%;
    text-align: center;
  }

  .Hero-image-container img {
    height: auto;
    width: min(520px, 90vw);
  }

  .CAT-Container {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 995px) {

  .section-header h2,
  .about-text h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .Hero-Text-container h1 {
    font-size: 2.2rem;
  }

  .future-ai-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-stats {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .logo-container img {
    height: 58px;
  }

  .Nav-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .Nav-icon i {
    font-size: 34px;
  }

  .dropdown-services {
    grid-template-columns: 1fr;
  }

  .project-dropdown-card .drop-down-services-img img {
    width: 52px;
    height: 52px;
  }

  .drop-down-CAT img {
    height: 120px;
  }

  .drop-down-services-content h5 {
    font-size: 0.84rem;
  }

  .drop-down-services-content span {
    font-size: 0.72rem;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }
}

/* CSS: Homepage Redesign */
body {
  color: var(--brand-dark);
  background: #ffffff;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 173, 27, 0.12);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 173, 27, 0.28);
  margin-bottom: 18px;
}

.section-chip-light {
  color: #fff4d6;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-header-light h2,
.section-header-light p {
  color: #ffffff;
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-card {
  animation: floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CSS: Hero Section */
.homepage-hero {
  position: relative;
  min-height: calc(100vh - 100px);
  padding: 90px 24px;
  gap: 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 250, 247, 0.96) 0%, rgba(248, 250, 247, 0.9) 48%, rgba(248, 250, 247, 0.4) 100%);
}

.hero-bg-image,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-image {
  background-image:
    linear-gradient(90deg, rgba(247, 250, 246, 0.98) 0%, rgba(247, 250, 246, 0.9) 44%, rgba(247, 250, 246, 0.22) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-noise {
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(250, 173, 27, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(52, 76, 54, 0.12), transparent 22%),
    radial-gradient(circle at 60% 78%, rgba(250, 173, 27, 0.1), transparent 18%);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(620px, 100%);
}

.hero-content h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 18px;
  color: #203021;
}

.hero-content p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #425446;
  max-width: 58ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(52, 76, 54, 0.12);
  box-shadow: 0 10px 24px rgba(18, 29, 22, 0.08);
  color: #314534;
  font-size: 0.93rem;
}

.hero-highlights i {
  color: var(--brand-amber);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hero-stat-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(52, 76, 54, 0.12);
  box-shadow: 0 18px 40px rgba(18, 29, 22, 0.08);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.hero-stat-card span {
  color: #5b6c5e;
  line-height: 1.6;
  font-size: 0.94rem;
}

.hero-visual {
  width: min(540px, 100%);
}

.hero-dashboard-card {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 28px 60px rgba(18, 29, 22, 0.16);
  backdrop-filter: blur(12px);
}

.hero-dashboard-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.floating-label {
  position: absolute;
  top: -18px;
  right: 24px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-amber);
  color: #263629;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 12px 24px rgba(250, 173, 27, 0.28);
}

.hero-dashboard-overlay {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 12px;
}

.hero-dashboard-overlay div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 21, 18, 0.74);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-dashboard-overlay span {
  display: block;
  color: #ffd36a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.hero-dashboard-overlay strong {
  font-size: 0.94rem;
  line-height: 1.5;
}

/* CSS: AI Section */
.ai-impact-section {
  padding: 120px 20px;
}

.ai-impact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.ai-impact-copy h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}

.ai-impact-copy > p {
  color: rgba(233, 240, 236, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ai-benefit-list {
  display: grid;
  gap: 16px;
}

.ai-benefit-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-benefit-card h3 {
  color: #fff2c8;
  margin-bottom: 8px;
}

.ai-benefit-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.future-icon i {
  font-size: 1.45rem;
  color: #fff2c8;
}

.ai-inline-cta {
  text-align: left;
  margin-top: 28px;
}

.ai-impact-visual {
  display: grid;
  gap: 18px;
}

.ai-visual-main,
.ai-mini-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.ai-visual-main img,
.ai-mini-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ai-visual-main img {
  height: 380px;
}

.ai-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ai-mini-card img {
  height: 180px;
}

.ai-mini-card h3,
.ai-mini-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.ai-mini-card h3 {
  padding-top: 18px;
  color: #ffffff;
}

.ai-mini-card p {
  padding-top: 10px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

/* CSS: Services Section */
.services-section {
  padding: 110px 20px;
}

.services-grid-modern {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border-radius: 26px;
  padding: 22px;
}

.service-thumb {
  position: relative;
  margin-bottom: 20px;
}

.service-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.service-thumb-illustration {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7faf5 0%, #e8f2e7 100%);
  overflow: hidden;
  padding: 22px;
}

.service-thumb-illustration img {
  height: 186px;
  object-fit: contain;
  padding: 0;
}

.service-icon,
.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(250, 173, 27, 0.95), rgba(255, 221, 144, 0.9));
  color: #223325;
  font-size: 1.35rem;
  box-shadow: 0 16px 28px rgba(250, 173, 27, 0.18);
}

.service-icon {
  position: absolute;
  left: 18px;
  bottom: -22px;
  border: 4px solid #ffffff;
}

.service-card p {
  color: #58695c;
  line-height: 1.75;
  margin-bottom: 14px;
}

.service-card ul li::before {
  content: "\2713";
}

/* CSS: About Section */
.about-home-section {
  padding: 110px 20px;
}

.about-home-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.about-home-image img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.about-highlight {
  margin: 24px 0 28px;
  border-radius: 22px;
  padding: 24px;
}

/* CSS: Process Section */
.process-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.process-visual {
  display: grid;
  gap: 16px;
}

.process-visual-main img,
.process-visual-stack img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(18, 29, 22, 0.14);
}

.process-visual-main img {
  height: 370px;
}

.process-visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-visual-stack img {
  height: 180px;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-card {
  border-radius: 24px;
}

/* CSS: Projects Section */
.projects-section {
  padding: 110px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.projects-grid-modern {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card-visual {
  background: transparent;
  box-shadow: none;
}

.project-card-visual .project-image {
  padding: 0;
  aspect-ratio: 14 / 9;
  border: none;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(18, 29, 22, 0.12);
}

.project-card-visual .project-image img {
  border-radius: 0;
  transition: transform 0.5s ease;
}

.project-card-visual:hover .project-image img {
  transform: scale(1.06);
}

.project-card-visual .project-overlay {
  background: linear-gradient(180deg, rgba(16, 26, 23, 0.14), rgba(16, 26, 23, 0.78));
}

.project-card-visual:hover {
  transform: translateY(-8px);
}

.project-card-visual .project-link {
  box-shadow: 0 14px 30px rgba(250, 173, 27, 0.28);
}

.project-content {
  display: none;
}

/* CSS: Testimonials Section */
.testimonials {
  overflow: hidden;
  padding: 110px 20px;
}

.testimonial-slider {
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeSlide 28s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(340px, calc(100vw - 48px));
  flex: 0 0 auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

@keyframes marqueeSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* CSS: Why Choose Us Section */
.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.why-intro p {
  color: #4f6153;
  line-height: 1.8;
  margin-bottom: 24px;
}

.why-feature-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 22px 45px rgba(18, 29, 22, 0.14);
}

.why-card {
  border-radius: 24px;
}

.why-icon {
  margin-bottom: 18px;
}

/* CSS: FAQ Section */
.faq-section {
  padding: 110px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(52, 76, 54, 0.12);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(18, 29, 22, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.active,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 173, 27, 0.5);
  box-shadow: 0 18px 36px rgba(18, 29, 22, 0.12);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.faq-question i:first-child {
  color: var(--brand-amber);
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px 22px;
  color: #58695c;
  line-height: 1.75;
}

/* CSS: Contact Section */
.contact-modern {
  padding: 110px 20px;
}

.contact-wrapper {
  gap: 36px;
  align-items: start;
}

.contact-visual {
  margin: 24px 0;
}

.contact-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-point-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(250, 173, 27, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.contact-point-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 173, 27, 0.18);
  color: var(--brand-amber);
  font-size: 1.2rem;
}

.contact-point-card h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-point-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-card {
  padding: 40px 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.contact-card form {
  display: grid;
  gap: 20px;
}

.contact-card .field {
  margin-bottom: 0;
  display: grid;
  gap: 10px;
}

.contact-card label {
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.phone-field {
  gap: 14px;
}

.contact-card select,
.contact-card input,
.contact-card textarea {
  margin-bottom: 0;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 14px;
}

.contact-card textarea {
  min-height: 150px;
  padding-top: 16px;
}

.contact-card button {
  margin-top: 6px;
  min-height: 56px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.form-hint {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.6;
}

.form-hint.error {
  color: #ffd7d7;
}

@media (max-width: 995px) {
  .Nav-menu ul {
    align-items: center;
    gap: 10px;
    justify-content: center;
    left: 0;
    top: calc(100% + 10px);
    border: 1px solid rgba(52, 76, 54, 0.1);
    z-index: 1000;
  }

  .Nav-menu li {
    width: 100%;
  }

  .Nav-menu ul > li:not(.nav-item-has-dropdown) {
    display: flex;
    justify-content: center;
  }

  .nav-item-has-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: start;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
  }

  .nav-item-has-dropdown > a {
    min-width: 0;
  }

  .nav-submenu-toggle {
    display: inline-flex;
  }

  .nav-item-has-dropdown > a i.fa-caret-down {
    display: none;
  }

  .dropdown-container {
    grid-column: 1 / -1;
    position: static;
    width: 100%;
    max-width: 100%;
    left: auto;
    top: auto;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-inline: auto;
  }

  .nav-service:hover .dropdown-container,
  .nav-project:hover .dropdown-container,
  .nav-service:focus-within .dropdown-container,
  .nav-project:focus-within .dropdown-container {
    display: none;
  }

  .nav-item-has-dropdown.is-dropdown-open .dropdown-container {
    display: flex;
  }

  .nav-item-has-dropdown.is-dropdown-open .nav-submenu-toggle {
    background: rgba(250, 173, 27, 0.16);
    border-color: rgba(250, 173, 27, 0.35);
    color: var(--brand-amber);
  }

  .nav-item-has-dropdown.is-dropdown-open .nav-submenu-toggle i {
    transform: rotate(45deg);
  }

  .project-dropdown {
    width: 100%;
    left: auto;
  }

  .drop-down-services1,
  .drop-down-CAT,
  .project-dropdown-cta {
    margin-inline: auto;
  }

  .dropdown-services a {
    display: flex;
    justify-content: center;
  }

  .project-dropdown-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .project-dropdown-card .drop-down-services-content {
    text-align: center;
  }

  .contact-stats {
    grid-template-columns: 1fr;
  }
}

/* CSS: Shared Responsive */
@media (max-width: 1100px) {
  .homepage-hero,
  .ai-impact-layout,
  .about-home-layout,
  .process-showcase,
  .why-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .homepage-hero {
    min-height: auto;
    flex-direction: column;
  }

  .hero-visual,
  .hero-content,
  .ai-impact-copy,
  .ai-impact-visual {
    width: 100%;
  }
}

@media (max-width: 995px) {
  .Nav-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .services-grid-modern,
  .projects-grid-modern,
  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-highlights,
  .CAT-Container {
    justify-content: center;
  }

  .Nav-menu ul {
    gap: 12px;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(18, 29, 22, 0.12);
  }

  .Nav-menu ul > li > a:not(.CTA-Nav):not(.Nav-icon) {
    width: 100%;
    justify-content: center;
  }

  .hero-stats,
  .ai-visual-grid,
  .process-visual-stack {
    grid-template-columns: 1fr;
  }

  .ai-inline-cta {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .homepage-hero,
  .ai-impact-section,
  .services-section,
  .about-home-section,
  .process-section,
  .projects-section,
  .testimonials,
  .why-section,
  .faq-section,
  .contact-modern {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-dashboard-card img {
    height: 420px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .hero-dashboard-overlay {
    left: 20px;
    right: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-thumb img,
  .ai-visual-main img,
  .about-home-image img,
  .why-feature-image img {
    min-height: auto;
    height: auto;
  }

  .project-card-visual .project-image {
    aspect-ratio: 14 / 9;
  }

  .contact-point-card {
    grid-template-columns: 1fr;
  }

  .contact-point-icon {
    width: 48px;
    height: 48px;
  }
}
