html {
  font-size: 20px;
  /* Canva-like size */
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  font-size: 20px;
}

/* Header & Navigation */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 30px;
}

.login-btn {
  background-color: #4850ff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: -5px;
}

.login-btn:hover {
  opacity: 0.9;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b35;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-email {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4850ff 0%, #5a63ff 100%);
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 22px;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.demo-btn {
  background-color: white;
  color: #4850ff;
  border: none;
  padding: 15px 40px;
  font-size: 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.demo-btn:hover {
  transform: scale(1.05);
}

/* Key Features Section */
.key-features {
  padding: 25px 40px;
  background-color: #f8f9fa;
}

.key-features h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start; /* makes grid items align consistently */
}

.feature-card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* keeps inside content structured */
  height: 100%; /* makes all cards equal height */
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
}

.why-choose-container {
  padding: 10px 60px;
}
.why-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.why-flex {
  display: flex;
  /* align-items: center;*/
  gap: 10px;
  align-items: flex-start;
  background-color: white;
}

.why-left {
  /* flex: 0.9; */
  text-align: center;
  /* padding: 15px; */
}

.why-bulb {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* RIGHT SIDE */
.why-right {
  flex: 1.2;
  padding: 15px;
  margin-left: -30px;
}

.why-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* ICONS EXACT LIKE SCREENSHOT */
.why-icon {
  width: 100px;
  height: 100px;
  margin-right: 30px;
}

/* BLUE CARD */
.why-card {
  background: #5468ff;
  color: white;
  padding: 10px 10px;
  border-radius: 20px;
  width: 100%;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  justify-content: left;
}

.why-card p {
  font-size: 17px;
  line-height: 1.6;
}

.privacy-section {
  padding: 5px 0; /* Reduced horizontal padding to 0, width is now controlled by 'width' property */
  background-color: white;
  /* KEY CHANGES FOR SIZE: */
  width: 93%; /* Sets the width to 80% of the viewport/parent */
  border-radius: 4px;
  margin: 40px auto;
}

.privacy-section .privacy-grid {
  max-width: 1200px; /* Max width for your readable content */
  margin: 0 auto; /* Centers the content block */
  padding: 0 40px; /* Adds space on the left and right of the text */
  text-align: left; /* Aligns the text to the left */
}

.privacy-section h2 {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  /* strong like reference */
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.privacy-section p {
  font-size: 21px;
  margin-bottom: 15px;
}

.privacy-section ul {
  margin-left: 20px;
}

.privacy-section li {
  font-size: 20px;
}

/* Offices Section */
.offices-section {
  padding: 10px 40px;
  background: white;
  margin-bottom: 25px;
}

.offices-section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  text-align: center;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.office-card {
  background: linear-gradient(135deg, #4850ff 0%, #5a63ff 100%);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.office-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.office-card p {
  font-size: 18px;
  line-height: 1.6;
}

/* Footer */

/* Main Footer */
.footer {
  background-color: #0045b3;
  /* BLUE like reference */
  color: #ffffff;
  padding: 20px 50px;
}

/* Layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-columns {
  display: flex;
  gap: 60px;
  width: 65%;
  justify-content: space-between;
}

.footer-col {
  min-width: 200px;
}

/* Left side: Logo + certificates */
.footer-left {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  width: 35%;
  /* IMPORTANT */
  max-width: 400px;
}

.footer-logo {
  width: 180px;
}

.cert-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  gap: 20px;
}

.cert-img {
  width: 100px;
  height: 70px;
  background: white;
  border-radius: 5px;
}

/* Middle columns */
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  justify-content: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col a {
  color: #cfd6e0;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.social-icons img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #3c6ccf;
  padding-top: 15px;
  text-align: center;
  color: black;
  font-size: 14px;
  background-color: white;
}

.iso-row {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
  padding-top: 5px;
}

.footer-logo-box {
  background: white;
  padding: 20px 40px;
  border-radius: 0 50px 50px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  /* prevents full width */
  max-width: fit-content;
  /* keeps it small */
}

.footer-logo-img {
  height: 55px;
  /* adjust based on your image */
  width: auto;
}

.flag-icon {
  width: 40px;
  height: 30px;
  margin-right: 10px;
  border-radius: 4px;
}

h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cert-image {
  width: 100%;
  max-width: 350px;
  /* prevent it from becoming too large */
  height: auto;
  object-fit: contain;
}

header .logo img {
  height: 85px;
  /* perfect size */
  width: auto;
  display: block;
  /* prevents top white gap */
}

/* --- Global Styles for the Contact Section --- */
.contact-section {
  padding: 20px; /* Add overall padding for smaller screens */
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 5px;
  color: #ff6633;
}

/* --- Demo Benefits (Highlighter Area) Styles --- */
.demo-benefits {
  /* Base width setup remains good for responsiveness */
  background-color: #f1ebeb; /* Using the light pink from the original image */

  border-radius: 8px;
  padding: 10px; /* Increased vertical padding slightly */

  /* Ensure it centers and scales down */
  width: 90%; /* Use a percentage for width */
  /* max-width: 600px; */
  margin: 0 auto 30px auto;
}

.demo-benefits ul {
  list-style-type: disc;
  padding-left: 25px; /* Increase list padding slightly */
  margin: 0;
  text-align: left; /* Essential: Align the list content to the left */
}

.demo-benefits li {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 0.5;
  margin: 8px 20px;
  padding: 18px;
}

/* --- Form Styles --- */
.contact-form {
  /* Use percentage for max-width to allow scaling */
  width: 90%;
  /* max-width: 600px; */
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left; /* Align form content */
}

.form-instruction {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box; /* Crucial for responsive forms! */
}

.contact-form .btn-submit {
  /* Using the green color from your first image */
  background: #28a745;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  /* width: 100%; */
}

.btn-submit:hover {
  background: #218838;
}

#formResponse {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

nav a {
  font-size: 18px;
}

.contact-email {
  font-size: 18px;
}
.feature-card h3 {
  justify-content: left;
}

/* ============================================
   MOBILE – Canva Style Layout 
   ============================================ */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* ----------------------------------------
       HEADER – centered, stacked
       ---------------------------------------- */
  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    gap: 10px;
    text-align: center;
    margin-top: 20px;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    padding-top: 20px;
  }

  .logo img {
    height: auto;
    max-height: 130px;
    /* increase from 55px to improve clarity */
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 17px;
    white-space: nowrap;
  }

  .contact-email {
    font-size: 16px;
    display: block;
    margin-top: 5px;
  }

  .key-features h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
  }

  /* ----------------------------------------
       HERO SECTION
       ---------------------------------------- */
  .hero {
    background: linear-gradient(135deg, #4850ff 0%, #5a63ff 100%);
    padding: 50px 20px;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 20px;
    padding: 0 10px;
    line-height: 1.5;
  }

  .demo-btn {
    padding: 12px 30px;
    font-size: 20px;
  }

  /* ----------------------------------------
       WHY CHOOSE US SECTION
       ---------------------------------------- */

  .why-flex {
    flex-direction: column;
    text-align: center;
  }

  .why-left {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .why-bulb {
    max-width: 350px !important;
    width: 90%;
    height: auto;
    margin-right: 20px;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
    margin-left: 25px;
  }

  .why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px auto;
  }

  .why-card {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
  }

  /* ----------------------------------------
       KEY FEATURES (1 column)
       ---------------------------------------- */
  .features-grid {
    grid-template-columns: 1fr !important;
    padding: 0 10px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card li {
    font-size: 18px;
  }

  /* ----------------------------------------
       OFFICES GRID (1 column)
       ---------------------------------------- */
  .offices-grid {
    grid-template-columns: 1fr !important;
  }

  /* ----------------------------------------
       FOOTER – fully stacked & centered
       ---------------------------------------- */
  .footer {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-left {
    width: 100%;
    align-items: center;
  }

  .footer-columns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-col {
    text-align: center;
    width: 100%;
  }

  .iso-row,
  .cert-row,
  .social-icons {
    justify-content: center;
  }

  .footer-logo-img {
    height: 45px;
  }
  section {
    margin: 10px 0;
    /* top & bottom spacing */
  }

  header .logo img {
    height: 85px;
    /* perfect size */
    width: auto;
    display: block;
    padding-top: 35px;
    /* prevents top white gap */
  }

  .contact-section {
    width: 100% !important;
    /* Reset any horizontal padding or margins that might constrain it */
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 50px;
  }

  /* 2. Center the text inside the now full-width section */
  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 2px;
    /* Keep this line to center the text content */
    text-align: center !important;
    /* Make sure the H2 itself also takes full width */
    width: 100%;
    display: block;
  }

  .demo-benefits {
    padding: 12px; /* Reduced padding on mobile */
    width: 95%; /* Wider on smaller screens */
    margin-bottom: 20px;
    margin: 20px 8px;
  }

  .demo-benefits li {
    font-size: 16px; /* Slightly smaller text on mobile */
    line-height: 1.3;
    padding: 2px;
  }

  .contact-form {
    padding: 15px; /* Reduced form padding on mobile */
    width: 95%;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px; /* Smaller input fields on mobile */
  }
  .key-features {
    padding: 10px 40px;
    background-color: white;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-col li {
    margin-bottom: 10px;
    display: flex;
  }

  .why-right {
    flex: 1.2;
    padding: 15px;
    margin-left: -30px;
  }
}

/* ============================================
   TABLET / IPAD FIX (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100%;
  }

  /* Make footer stack into 2 columns instead of breaking */
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    padding: 20px;
  }

  .footer-left {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* Offices grid should be 2x2 */
  .offices-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  /* Why choose us section */
  .why-flex {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    align-items: center;
  }

  .why-bulb {
    max-width: 300px;
    margin: 0 auto;
    margin-right: 20px;
  }

  .why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
  }
  section {
    margin: 60px 0;
    /* top & bottom spacing */
  }
  .footer-col li {
    margin-bottom: 10px;
    display: flex;
  }
  .why-right {
    flex: 1.2;
    padding: 15px;
    margin-left: -30px;
  }
  .footer {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-left {
    width: 100%;
    align-items: center;
  }

  .footer-columns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-col {
    text-align: center;
    width: 100%;
  }

  .iso-row,
  .cert-row,
  .social-icons {
    justify-content: center;
  }

  .footer-logo-img {
    height: 45px;
  }
  section {
    margin: 10px 0;
    /* top & bottom spacing */
  }

  header .logo img {
    height: 85px;
    /* perfect size */
    width: auto;
    display: block;
    padding-top: 35px;
    /* prevents top white gap */
  }
}
