/* ================= 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;
  }
/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

: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;
}
  /* hero section */

/* ================= RESET ================= */
* {
  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.5), rgba(0, 0, 0, 0.6)),
    url("Synaipsys-service-images/Data-Intensive-frontends.jpg") no-repeat center center / cover;
  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);
}
  
/* ===== Modern Overview Section ===== */
.overview-modern {
  padding: 80px 20px;
  background: #fff7ec;
  font-family: inherit;
}

.overview-modern-container {
  display: flex;
  align-items: center;
  justify-content: space-around; 
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 140; /* remove gap, we'll use margin instead */
}
/* Left Text + Cards */


.overview-modern-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111827;
}

.overview-modern-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #374151;
}

.overview-modern-text {
  flex: 1 1 550px; /* text takes more space */
  color: #000;
  max-width: 600px; /* prevents it from stretching too far */
  margin-right: 60px; /* space between text and image */
  transform: translateX(-10px); /* subtle left shift for style */
}

/* Right Image */
.overview-modern-image {
  flex: 0 0 450px; /* fixed width */
  text-align: center;
  transform: translateX(10px); /* subtle right shift */
}
/* Cards */
.overview-modern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.overview-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 1.8rem;
}

/* Right Image */
.overview-modern-image {
  flex: 0 0 550px; /* keep image slightly bigger */
  text-align: center;
  transform: translateX(20px); /* moves image slightly right */
}

.overview-modern-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 1000px) {
  .overview-modern-text {
    transform: translateX(-20px);
    padding-left: 0;
  }
}

/* Right Image */
.overview-modern-image {
  flex: 0 0 550px; 
  text-align: center;
  transform: translateX(20px);
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 900px) {
  .overview-modern-container {
    flex-direction: column-reverse; /* 👈 Image will come first */
    text-align: center;
    gap: 30px;
  }

  .overview-modern-text, 
  .overview-modern-image {
    flex: 1 1 100%;
    transform: translate(0); /* remove shifts */
    padding-left: 0;
  }

  .overview-modern-cards {
    grid-template-columns: 1fr;
  }

  .overview-modern-image {
    transform: translateX(0);
  }
}




/* process */
/* ===== Discovery Workshops Process Section ===== */
.discovery-workshops {
  background: var(--background-blue-color); /* dark blue background */
  color: #fff;
  padding: 80px 0;
}

.discovery-workshops .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 150px;
  max-width: 1400px;
  margin: auto;
}

.data-frontends-workshops .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 150px;
  max-width: 1400px;
  margin: auto;
}

.step h4 {
  color: white;
  font-weight: 600;
}

.workshop-content {
  flex: 1;
  padding-top: 200px;
  justify-content: center;
}

.workshop-content h2 {
  font-size: 3.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.workshop-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.workshop-content .btn-primary {
  background: var(--button-color);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

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

.workshop-steps {
  flex: 1;
  position: relative;
  padding-left: 40px;
  border-left: 2px dashed rgba(255, 255, 255, 0.3);
}

.workshop-steps .step {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}
.workshop-steps .step.animate {
  animation: fadeInUp 1s forwards;
}

.workshop-steps .step:nth-child(1) { animation-delay: 0.3s; }
.workshop-steps .step:nth-child(2) { animation-delay: 0.6s; }
.workshop-steps .step:nth-child(3) { animation-delay: 0.9s; }
.workshop-steps .step:nth-child(4) { animation-delay: 1.2s; }
.workshop-steps .step:nth-child(5) { animation-delay: 1.5s; }
.workshop-steps .step:nth-child(6) { animation-delay: 1.8s; }

.workshop-steps .icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

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

/* ===== Responsive Media Queries ===== */

/* Large tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .discovery-workshops .container {
    gap: 80px;
  }
  .workshop-content {
    padding-top: 100px;
  }
  .workshop-content h2 {
    font-size: 2.5rem;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .discovery-workshops .container {
    flex-direction: column;
    gap: 60px;
  }
  .workshop-content {
    padding-top: 0;
    text-align: center;
  }
  .workshop-content h2 {
    font-size: 2.2rem;
  }
  .workshop-content p {
    font-size: 1rem;
  }
  .workshop-steps {
    padding-left: 0;
    border-left: none;
  }
  .workshop-steps .icon {
    margin: 0 auto 10px auto;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .discovery-workshops {
    padding: 50px 20px;
  }
  .workshop-content h2 {
    font-size: 1.8rem;
  }
  .workshop-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .workshop-content .btn-primary {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .workshop-steps .step {
    margin-bottom: 30px;
  }
}



/* why choose us */
 /* ================== 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 Data Intensive Frontends Section ===== */
.why-data-intensive-frontends {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Poppins", sans-serif;
}

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

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

.data-intensive-content {
  flex: 1;
}

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

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

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

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

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

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

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

  .data-intensive-image img {
    max-width: 100%;
  }
}


/* ===== Our Clients Section ===== */
.clients-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.clients-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: black !important;
  margin-bottom: 12px;
}

.clients-header p {
  font-size: 1.1rem;
  color: black !important;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Logos Grid */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.clients-logos img {
  max-width: 120px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* Mobile: Show logos in full color */
@media (max-width: 768px) {
  .clients-logos img {
    filter: none;
    opacity: 1;
    transform: none; /* no hover scaling on touch devices */
  }
}



/* CTA SECTION */
.cta-section {
  background: var(--background-blue-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: white;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(236, 234, 234);
  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;
}



/* FAQ Section */
.faq-section {
  width: 100%; /* Full width for background */
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.faq-wrapper {
  max-width: 1100px; /* Control FAQ content width */
  margin: 0 auto; /* Center the content */
}

/* Title */
.faq-wrapper h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}

.faq-background {
  background: white;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.8px;
  font-size: 1.2rem;
  color: black;
}

/* FAQ Card */
.faq-item {
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  background: white; /* soft highlight */
  border-left: 5px solid #0a2a9c; /* accent color */
  border-radius: 12px 12px 0 0;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgb(240, 249, 255);
}

.faq-question span {
  flex: 1;
  font-size: 1.15rem;
}

/* Toggle button */
.faq-toggle {
  background: red;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* + becomes x */
  background: #0a2a9c;
}

/* Answer */
.faq-answer {
  display: none;
  padding: 20px 25px;
  background: #fff9f3;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeSlide 0.3s ease forwards;
}

.faq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
}

/* Animation */
@keyframes fadeSlide {
  0% {opacity:0; transform: translateY(-10px);}
  100% {opacity:1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-toggle {
    margin-top: 10px;
  }

  .faq-answer {
    font-size: 1rem;
  }
}
