/* ================= 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.8), rgba(0, 0, 0, 0.6)),
    url("Synaipsys-service-images/ML.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);
}

/* ================== 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-ml-model {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Poppins", sans-serif;
}

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

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

.ml-model-content {
  flex: 1;
}

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

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

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

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

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

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

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

  .ml-model-image img {
    max-width: 100%;
  }
}


.ml-approach-section {
  background-color: #f8f9fa;
  text-align: center;
}

.ml-approach-section .section-title {
  font-size: 3rem;
  color: #1d3557;
  margin-top: -60px;
  margin-bottom: -30px;
}

.ml-approach-section .section-desc {
  font-size: 1.3rem;
  color: #555;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.ml-approach-section .approach-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.ml-approach-section .approach-card {
  background-color: #fff;
  border-radius: 12px; 
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 300px;
}

.ml-approach-section .approach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.ml-approach-section .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.ml-approach-section .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ml-approach-section .card-title {
  font-size: 1.4rem;
  color: #0b3d91;
  margin-bottom: 10px;
}

.ml-approach-section .card-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .ml-approach-section {
    padding: 60px 15px;
  }
  .ml-approach-section .section-title {
    font-size: 2rem;
  }
  .ml-approach-section .approach-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .ml-approach-section .section-title {
    font-size: 1.7rem;
  }
  .ml-approach-section .approach-card {
    padding: 20px 10px;
  }
}



/* ------------------------------------
capabillities section */

.ml-capabilities .carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
}

.ml-capabilities h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #1d3557;
  font-weight: 600;
}

.ml-capabilities p {
  text-align: left;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.ml-capabilities .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ml-capabilities .capability-card {
  display: flex;
  flex: 0 0 100%;
  border-radius: 16px;
  background: #fff7ec;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin: 10px 0;
  overflow: hidden;
}

.ml-capabilities .capability-content {
  flex: 1;
  padding: 30px;
  text-align: left;
}

.ml-capabilities .capability-content h3 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #0a2e5d;
}

.ml-capabilities .capability-content p {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.ml-capabilities .capability-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  color: #555;
  font-size: 1.3rem;
}

.ml-capabilities .capability-image {
  flex: 1;
}

.ml-capabilities .capability-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.ml-capabilities .carousel-controls {
  text-align: center;
  margin-top: 20px;
}

.ml-capabilities .carousel-controls button {
  border: none;
  background: #0a2e5d;
  color: #fff73c;
  font-size: 22px;
  padding: 12px 18px;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.ml-capabilities .carousel-controls button:hover {
  background: var(--button-hover-color);
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .ml-capabilities .capability-card {
    flex-direction: column;
  }

  .ml-capabilities .capability-image,
  .ml-capabilities .capability-content {
    max-width: 100%;
  }

  .ml-capabilities .capability-content {
    padding: 20px;
    text-align: left;
  }
}
