/* ================= ROOT VARIABLES ================= */
  :root {
    --primary-color: #ffb300;
    --primary-hover: #ffcb00;
    --gradient-bg: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
    --white: #fff;
    --black: #000;
    --gray: #444;
    --light-gray: #f9f9f9;
      --background-beage-color:#fff7ec ;
  }

:root {
  --default-font: Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: Calibri, sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /*--background-color: #00111e; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --background-blue-color:radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);/* Default color we use for blue background */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #47b2e4;
  --nav-mobile-background-color: #00111e;
  --nav-dropdown-background-color: #00111e;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #47b2e4;
  --background-color: #ffffff;
  --default-color: #ffffff;
  /* --heading-color: #ffffff; */
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
  --button-color:#ffb300;
  --button-hover-color: #ffcb00;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
:root {
  --background-blue-color: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);
  --text-light: #eee;
  --link-color: #aad4ff;
  --link-hover: #ffffff;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: var(--gradient-bg);
  color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  width: 85%;
  margin: auto;
}

/* ================= HERO SECTION ================= */
.hero-wrapper {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
    url("Synaipsys-service-images/TechnologyPartner.jpg") no-repeat center center;
  background-size: cover;        /* fills width & height */
  background-position: center top; /* keeps top part visible */
  color: var(--white);
}


.hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100px;
  height: 100px;
  object-fit: fill;
}

.hero-overlay {
  width: 100%;
  padding: 60px 10%;
  color: var(--white);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-left: -80px;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* ================= HERO FORM ================= */
.hero-form {
  background: var(--white);
  color: var(--black);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
}

.hero-form h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 5px;
}

.hero-form p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 16px;
  background: var(--button-color);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background: var(--button-hover-color);
}

/* ================== RESPONSIVE MEDIA QUERIES ================== */

/* Tablets */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
    margin-left: 0;
  }
  .hero-text {
    max-width: 55%;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-form {
    max-width: 350px;
    padding: 25px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 40px 6%;
    min-height: auto;
  }
  .hero-content {
    flex-direction: column;
    gap: 30px;
    margin-left: 0;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  .hero-text p {
    font-size: 15px;
  }
  .partners img {
    width: 60px;
    margin: 5px;
  }
  .hero-form {
    max-width: 100%;
    padding: 20px;
  }
  .hero-form h2 {
    font-size: 22px;
  }
  .hero-form p {
    font-size: 13px;
  }
}



/* ================= WHY TECHNOLOGY PARTNER SECTION ================= */
.why-technology-partner {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Poppins", sans-serif;
}

.technology-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.technology-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.technology-content {
  flex: 1;
}

.technology-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1d3557;
}

.technology-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.technology-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.technology-content ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.technology-content ul li::before {
  margin-right: 8px;
  color: #0077b6;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .technology-container {
    flex-direction: column;
    text-align: center;
  }

  .technology-content h2 {
    font-size: 28px;
  }

  .technology-image img {
    max-width: 100%;
  }
}
.tech-industries-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
  text-align: center;
}

.tech-container {
  max-width: 1400px;
  margin: 0 auto;
}

.tech-section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.tech-section-subtitle {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.az{
  color: black !important;
}
/* Horizontal layout */
.tech-industries-grid {
  display: flex;
  justify-content: space-between; /* spread evenly */
  flex-wrap: nowrap; /* do NOT wrap on desktop */
  gap: 20px;
}

.tech-industry-card {
  background: #fff;
  border-radius: 20px;
  flex: 1 1 0;
  max-width: 220px;
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden; /* ensures image stays inside rounded corners */
  display: flex;
  flex-direction: column;
}

.tech-industry-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 18px 35px rgba(30, 64, 175, 0.25);
}
.tech-industry-card img {
  width: 100%;
  height: 150px; /* fixed height for consistency */
  object-fit: cover; /* makes image fill without distortion */
  display: block;
}

/* Title below image */
.tech-industry-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e40af;
  padding: 15px;
  flex-grow: 1; /* keeps consistent spacing */
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .tech-industries-grid {
    flex-wrap: wrap; /* wrap if screen too narrow */
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tech-industries-grid {
    gap: 20px;
  }
  .tech-industry-card {
    flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .tech-section-title {
    font-size: 2rem;
  }
  .tech-section-subtitle {
    font-size: 1rem;
  }
  .tech-industry-card {
    margin-left: 6px;
    flex: 1 1 calc(50% - 15px); /* still 2 per row on small phones */
    max-width: 200px;
  }
}
/* ================= Engagement Models Section ================= */
.engagement-models-section {
  position: relative;
  background: var(--background-blue-color); /* dark base */
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Background decorative shapes */
.engagement-models-section::before,
.engagement-models-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  
  z-index: 0;
}
.engagement-models-section::before {
  top: -100px;
  left: -100px;
}
.engagement-models-section::after {
  bottom: -150px;
  right: -150px;
}

.engagement-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.engagement-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.engagement-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 60px;
}

.engagement-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.engagement-card {
  background: white;
  border-radius: 18px;
  padding: 40px 25px;
  width: 290px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

.engagement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 5px;
  background: linear-gradient(135deg, #facc15, #f59e0b, #facc15);
  -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;
}

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

.card-icon {
  width: 240px;         /* define box size */
  height: 140px;        /* increase height for better balance */
  padding: 2px;        /* padding around image */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05); /* optional subtle bg */
  border-radius: 12px;
  margin: 0 auto 20px auto;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* makes it fill box */
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.engagement-card:hover .card-icon img {
  transform: scale(1.08);
}

.engagement-card:hover .card-icon img {
  transform: scale(1.15);
}

.engagement-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--button-color);
  font-weight: 600;
}

.engagement-card p {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
}

.engagement-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .engagement-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .engagement-card {
    width: 100%;
  }
  .engagement-title {
    font-size: 2.2rem;
  }
  .engagement-subtitle {
    font-size: 1rem;
  }
}

/* CTA SECTION */
.cta-section {
  background: var(--background-beage-color);
  color: var(--button-color);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 42px;
  color: black;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(105, 105, 105);
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: #00000033 0px 0px 24px;
  color: black;
  background-color: var(--button-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary .arrow {
  margin-left: 10px;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary:hover {
  color: black;
  background-color: var(--button-hover-color);
}

.book-link {
  color: #b3c9ff;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
}

.divider {
  color: #999;
  font-size: 14px;
}

/* ----------------------------------------------------------- */
/* Freequently Asked Questions Section */
/* ----------------------------------------------------------- */

.tech-faq-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.tech-faq-section h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.faq-subtitle {
  text-align: center;
  color: #383838;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
  font-size: 1.3rem;
  font-family: Arial, sans-serif;
} 