/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #24262b;
  --black-color-light: #24262b;
  --black-color-lighten: #24262b;
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  background-repeat: no-repeat;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   HEADER
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ===============================
   NAVBAR
================================ */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 30px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo */
.main-logo img {
  max-height: 80px;
}

/* ===============================
   MENU DESKTOP
================================ */
.main-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.main-menu a:hover {
  color: #007bff;
}

/* ===============================
   DESKTOP DROPDOWNS
================================ */
@media (min-width: 769px) {

  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
  }

  .main-submenu {
    top: 100%;
    left: 0;
  }

  .main-subsubmenu {
    top: 0;
    left: 100%;
  }

  .main-dropdown:hover > .main-submenu {
    display: block;
  }

  .main-subdropdown:hover > .main-subsubmenu {
    display: block;
  }
}

/* ===============================
   BURGER
================================ */
.main-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .main-navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 20px;
  }

  .main-toggle {
    display: block;
  }

  /* MENU MOBILE SCROLLABLE */
  .main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 15px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .main-menu.main-active {
    display: flex;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  /* MOBILE DROPDOWNS */
  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
  }

  .main-dropdown.main-show > .main-submenu {
    display: block;
  }

  .main-subdropdown.main-show > .main-subsubmenu {
    display: block;
  }

  .main-submenu a {
    padding-left: 30px;
  }

  .main-subsubmenu a {
    padding-left: 45px;
  }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

  .main-logo img {
    max-height: 60px;
  }

  .main-menu a {
    font-size: 13px;
  }
}



/* --- SECTION --- */
/* --- SECTION --- */
/* ===== ABOUT SECTION ===== */
.about-section {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background-color: #eaf6ff;
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 500px;
}

.small-title {
  color: #0084ff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 20px 0;
}

.highlight {
  background: linear-gradient(90deg, #ff7a00, #ff4fc0, #9b51e0);
  -webkit-background-clip: text; /* For Chrome, Safari */
  background-clip: text;          /* Standard syntax */
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  max-width: 600px;
}

.btn-talk {
  display: inline-block;
  background-color: white;
  border: 2px solid #0084ff;
  color: #0084ff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-talk:hover {
  background-color: #0084ff;
  color: white;
}

.about-image {
  flex: 1 1 500px;
  text-align: right;
  position: relative;
}

/* ✅ Added background oval shape behind image */
.about-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: #d9f0ff;
  border-radius: 50%;
  z-index: 0;
}

.about-image img {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-top: 40px;
    text-align: center;
  }

  .about-image::before {
    left: 50%;
  }
}


/* --- SECTION --- */

/* Section wrapper */
/* Section wrapper */
.values-section {
  padding: 80px 10%;
  background-color: #f5faff;
}

/* Header */
.values-header {
  text-align: left;
  margin-bottom: 50px;
}

.values-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0084ff;
  margin-bottom: 15px;
}

.values-header p {
  font-size: 17px;
  color: #555;
  max-width: 800px;
  line-height: 1.6;
}

/* Cards grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

/* Individual card */
.value-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.value-card:hover {
  transform: translateY(-10px);
  border-color: #0084ff;
  box-shadow: 0 10px 25px rgba(0, 132, 255, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
}

/* Subtle animated highlight line on top */
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #0084ff;
  transition: width 0.4s ease;
  border-radius: 0 0 4px 0;
}

.value-card:hover::before {
  width: 100%;
}

/* Icon styling */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0084ff;
}

/* Titles */
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* Text */
.value-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Goal section */
.goal-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.goal-section h2 {
  color: #0084ff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.goal-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
}

/* Button */
.btn-talk {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #0084ff;
  color: #0084ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-talk:hover {
  background-color: #0084ff;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .values-header, .goal-section {
    text-align: center;
  }
}
/* --- SECTION --- */

.about1-section {
  background: #f8f9fc;
  padding: 80px 20px;
}

.about1-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about1-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.about1-reverse {
  flex-direction: row-reverse;
}

.about1-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about1-text {
  flex: 1;
}

.about1-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

.about1-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .about1-row,
  .about1-reverse {
    flex-direction: column;
    text-align: center;
  }

  .about1-img img {
    max-width: 100%;
  }

  .about1-text {
    text-align: left;
  }
}

/* --- SECTION --- */

.about2-profile {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #f8f9fc;
}

.about2-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  max-width: 1100px;
  width: 100%;
}

.about2-photo {
  position: relative;
  flex: 0 0 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about2-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  border-radius: 12px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.about2-photo img:hover {
  transform: scale(1.03);
}

/* ---- Design de fond décoratif ---- */
.about2-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #4bb3f4 0%, #a67c82 60%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  filter: blur(25px);
}

.about2-info {
  flex: 1;
}

.about2-info h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about2-socials {
  margin-bottom: 15px;
}

.about2-socials a {
  color: #333;
  font-size: 1.1rem;
  margin-right: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about2-socials a:nth-child(1):hover { color: #1877f2; } /* Facebook */
.about2-socials a:nth-child(2):hover { color: #e1306c; } /* Instagram */
.about2-socials a:nth-child(3):hover { color: #0077b5; } /* LinkedIn */

.about2-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.about2-info a {
  color: #0077b5;
  text-decoration: none;
}

.about2-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .about2-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .about2-photo {
    flex: none;
    width: 70%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .about2-info h2 {
    font-size: 1.6rem;
  }
}



/*=============== FOOTER ===============*/
.container_f {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4BB3F4;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .footer {
    padding: 50px 20px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 40px;
  }
  .footer-col h4 {
    font-size: 17px;
  }
  .footer-col ul li a {
    font-size: 15px;
  }
}

/* Smartphones */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col .social-links a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin: 5px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 40px 10px;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .footer-col ul li a {
    font-size: 14px;
  }
  .footer-col .social-links a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    margin: 4px;
  }
}
