/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700&display=swap');

:root {
  --accent: #fff;
  --bg: #000;
  --text: #fff;
  --text-light: #d1d1d1;
  --border: #333;
  --radius: 12px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
}

/* Remove intro animation from body */
body {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Apply intro animation to hero and main sections only */
.hero, .services, .process, .portfolio, footer {
  opacity: 0;
  transform: translateY(60px);
  animation: siteFadeInUp 1.1s cubic-bezier(.77,0,.18,1) 0.1s forwards;
}

.hero { animation-delay: 0.1s; }
.services { animation-delay: 0.25s; }
.process { animation-delay: 0.4s; }
.portfolio { animation-delay: 0.55s; }
footer { animation-delay: 0.7s; }

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

/* --- Navbar --- */
.navbar {
  width: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: backdrop-filter 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2vw;
  height: 70px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.navbar-links li a,
.retainer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
}

.navbar-links li a:hover,
.retainer-link:hover {
  color: #d1d1d1;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 0 0 6px 0;
  transition: all 0.3s;
}

.hamburger:last-child {
  margin-bottom: 0;
}

/* Drawer */
.navbar-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 80px;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  transform: translateX(-100%);
}

.navbar-drawer.open {
  display: flex;
  transform: translateX(0);
}

.navbar-drawer ul {
  list-style: none;
  padding: 0 2rem;
  margin: 0;
  width: 100%;
}

.navbar-drawer li {
  margin-bottom: 2rem;
}

.navbar-drawer a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 0.5rem 0;
}

.navbar-drawer .get-quote-btn {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  display: inline-block;
  width: auto;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  transition: opacity 0.2s ease;
  z-index: 2001;
}

.drawer-close:hover {
  opacity: 0.7;
}

.close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.close-icon::before,
.close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #f5f5f5;
  transform-origin: center;
}

.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Adjust body or main content to not hide behind navbar */
.hero {
  margin-top: 90px;
  padding-top: 0;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  background: #000;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}



.hero-subtitle {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #d1d1d1;
  margin-top: 80px;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* Hero main header style */
.hero h1 {
  font-family: Inter, work-sans, Poppins, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.1;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero section subtitle style */
.hero p {
  font-style: normal;
  font-weight: 400;
  color: #d1d1d1;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 999px;
  border: 2px solid #f5f5f5;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  display: inline-block;
}

.cta-btn.primary {
  background: #f5f5f5;
  color: #000;
  border: 2px solid #f5f5f5;
}

.cta-btn.primary:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
}

.cta-btn.secondary {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
}

.cta-btn.secondary:hover {
  background: #f5f5f5;
  color: #000;
  border-color: #f5f5f5;
}





/* Partners Section */
.partners-section {
  background: #000;
  color: #fff;
  padding: 4rem 0;
  font-family: Inter, work-sans, Poppins, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.partners-content {
  text-align: center;
  margin-top: 80px;
}

/* Footer styles */
.site-footer {
  background: #fff;
  color: #000;
  font-family: Inter, work-sans, Poppins, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  position: relative;
}

.footer-card {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 5rem 0 2rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-contact {
  text-align: left;
}

.work-together {
  font-family: 'Merriweather', serif;
  font-size: 3.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.footer-email {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #666;
  margin-bottom: 0;
}

.footer-email a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email a:hover {
  color: #000;
}

.footer-bottom-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3rem;
}

.company-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #000;
}

.company-address {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #666;
  text-align: right;
  display: flex;
  align-items: flex-start;
  padding-top: 0.3rem;
}

.footer-logo-full {
  text-align: center;
  padding: 0;
  margin: 100px 0 0 0;
  width: 100%;
  margin-bottom: 0;
}

.footer-logo-full-img {
  width: 100vw;
  height: auto;
  max-height: 120px;
  filter: none;
  margin-left: calc(-50vw + 50%);
}

.partners-intro {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.partners-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0 80px 0;
}

.partners-carousel-container::before,
.partners-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.partners-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.partners-carousel {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-left 20s linear infinite;
  padding: 1rem 0;
}

.partners-carousel:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  max-width: 120px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.partner-logo:hover img {
  filter: brightness(0) invert(1) brightness(1.2);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Contact Page Styles */
.contact-page {
  background: #000;
  color: #f5f5f5;
  min-height: 100vh;
  padding: 120px 0 80px 0;
  font-family: Inter, work-sans, Poppins, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
  line-height: 1.1;
}

.contact-header p {
  font-size: 1.25rem;
  color: #d1d1d1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
  flex: 1;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #f5f5f5;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 245, 0.5);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f5f5f5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5em;
  padding-right: 3rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.form-checkbox,
.form-radio {
  width: 18px;
  height: 18px;
  accent-color: #f5f5f5;
  cursor: pointer;
}

.checkbox-label,
.radio-label {
  font-size: 0.95rem;
  color: #f5f5f5;
  cursor: pointer;
  user-select: none;
}

.form-submit {
  width: 100%;
  background: #f5f5f5;
  color: #000;
  border: 2px solid #f5f5f5;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-top: 1rem;
}

.form-submit:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 700px) {
  .contact-page {
    padding: 100px 0 60px 0;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-header p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 2rem;
    margin: 0 16px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: 2rem;
  }
  
  .checkbox-group,
  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .checkbox-item,
  .radio-item {
    min-width: auto;
  }
  
  .form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}








@media (max-width: 700px) {
  /* Container - consistent 16px margins */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  /* Hero section - proportional text scaling */
  .hero h1 {
    font-size: 3.2rem; /* Scaled from 4.5rem (71% of desktop) */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.9rem; /* Scaled from 1.1rem (82% of desktop) */
    margin-bottom: 2rem;
    text-align: center;
  }
  .hero p {
    font-size: 1.1rem; /* Scaled from 1.25rem (88% of desktop) */
    margin-bottom: 3rem;
    text-align: center;
  }
  
  /* Buttons - center aligned */
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .cta-btn {
    font-size: 1rem; /* Scaled from 1.1rem (91% of desktop) */
    padding: 1rem 2rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }
  
  /* Partners section */
  .partners-intro {
    font-size: 0.9rem; /* Scaled from 1rem (90% of desktop) */
    text-align: center;
  }
  .partners-carousel-container::before,
  .partners-carousel-container::after {
    width: 50px;
  }
  .partners-carousel {
    gap: 2rem;
  }
  .partner-logo {
    max-width: 80px;
  }
  
  /* Footer - center aligned */
  .footer-content {
    flex-direction: column;
    gap: 80px;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
  .work-together {
    font-size: 1.9rem; /* Scaled from 2.4rem (79% of desktop) */
    text-align: center;
  }
  .footer-email {
    font-size: 1.6rem; /* Scaled from 2rem (80% of desktop) */
    text-align: center;
  }
  .footer-email a {
    text-align: center;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .company-info {
    text-align: center;
  }
  .company-name {
    text-align: center;
  }
  .company-address {
    text-align: center;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-logo-full-img {
    max-height: 80px;
  }
}


/* Container for consistent max-width and alignment */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4vw;
  padding-right: 4vw;
  width: 100%;
  box-sizing: border-box;
}




/* About Highlight Section (modern, left-aligned, lots of white space) */
.about-highlight {
  background: #fff;
  padding: 90px 0 90px 0;
}
.about-highlight-title {
  font-family: Inter, work-sans, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.13;
  margin-bottom: 3.5rem;
  color: #111;
  max-width: 1000px;
  text-align: left;
}
.about-highlight-title .italic {
  font-style: italic;
  font-weight: 400;
}
.about-highlight-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-highlight-left {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.about-highlight-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 1.1em 2.5em;
  text-decoration: none;
  margin-bottom: 22px;
  transition: background 0.2s, color 0.2s;
}
.about-highlight-btn:hover {
  background: #222;
  color: #fff;
}
.about-highlight-label {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #111;
  margin-top: 10px;
  text-align: left;
}
.about-highlight-center {
  flex: 2 1 420px;
  min-width: 320px;
  max-width: 600px;
  color: #222;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}
.about-highlight-right {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.about-highlight-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 32px;
  background: #000;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
@media (max-width: 1200px) {
  .about-highlight-content {
    flex-direction: column;
    gap: 40px;
  }
  .about-highlight-right {
    justify-content: flex-start;
  }
  .about-highlight-img {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 700px) {
  .about-highlight-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .about-highlight-img {
    width: 120px;
    height: 120px;
  }
  .about-highlight-content {
    gap: 24px;
  }
}

/* Services Grid Section (modern, responsive) */
.services-grid-section {
  padding: 90px 0 90px 0;
  background: #fff;
}
.services-grid-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.services-grid-label {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}
.services-grid-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.1rem;
  line-height: 1.13;
}
.services-grid-subtitle {
  font-size: 1.15rem;
  color: #444;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.services-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  flex-wrap: nowrap;
}
.service-grid-card {
  background: #fff;
  color: #111;
  border: 1.5px solid #ececec;
  box-shadow: none;
  border-radius: 18px;
  min-height: 220px;
  padding: 2.5rem 2.2rem 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.28s cubic-bezier(.4,1.4,.6,1), transform 0.28s cubic-bezier(.4,1.4,.6,1);
  cursor: pointer;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 340px;
  min-width: 0;
}
.service-grid-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: scale(1.035);
  z-index: 2;
}
.service-card-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  gap: 0.7rem;
}
.service-card-index {
  color: #888;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 0.7rem;
}
.service-card-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  margin-right: auto;
}
.service-card-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.7rem;
}
.dot-orange { background: #ff8000; }
.dot-green { background: #00c853; }
.dot-blue { background: #2962ff; }
.service-card-divider {
  border: none;
  border-top: 1.5px solid #ececec;
  width: 100%;
  margin: 18px 0 18px 0;
}
.service-card-desc {
  color: #444;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.service-grid-card:not(:last-child) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  .service-grid-card {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 1.3rem 1rem 1.3rem 1rem;
    min-height: 120px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .service-card-title {
    font-size: 1.1rem;
  }
  .service-card-desc {
    font-size: 0.95rem;
  }
}

/* Responsive adjustments for all sections, navbar, and footer */
@media (max-width: 1100px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .navbar, .footer-bottom, .footer-cta-inner, .about-highlight-inner, .approach-inner {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .about-highlight-content, .approach-inner {
    flex-direction: column;
    gap: 32px;
  }
  .about-highlight-img, .approach-venn img {
    width: 180px;
    height: 180px;
  }
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .partners-logos {
    gap: 2rem;
  }
}

@media (min-width: 901px) {
  .navbar-drawer {
    display: none !important;
  }
  .navbar-toggle {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .container {
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .hero h1, .services-title, .about-highlight-title, .approach-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .hero p, .services-subtitle, .about-highlight-label, .footer-bottom-left, .footer-bottom-right {
    font-size: 13px;
  }
  .hero-btns, .services-cards, .about-highlight-content, .approach-inner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .about-highlight-img, .approach-venn img {
    width: 100px;
    height: 100px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 0 8px 0;
  }
  .footer-bottom-right {
    text-align: left;
  }
  .rainbow-btn, .get-quote-btn, .cta-btn {
    font-size: 1rem;
    padding: 0.7em 1.5em;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1, .services-title, .about-highlight-title, .approach-title {
    font-size: 2rem;
  }
  .about-highlight-img, .approach-venn img {
    width: 70px;
    height: 70px;
  }
  .footer-bottom-left, .footer-bottom-right {
    font-size: 11px;
  }
}

