* {
  box-sizing: border-box;
}


:root {
  --primary-color: #193665;
  --accent-color: white;
  --light-bg: #f5f7fa;
  --dark-bg: darkgrey;
  --text-color: #333;
  --font-main: 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

button:focus,
a:focus {
  outline: 2px dashed var(--accent-color);
  outline-offset: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  width:100%;
}

section {
  scroll-snap-align: start;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

form, label, textarea {
    font-family: 'Segoe UI', sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.product-header h1{
  padding: 20px;
  color: #193665;
  text-align: center;
}

.back-link {
 margin: 40px;
  display:inline-block;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #193665;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.back-link:hover {
  color: #0f2452;
  text-decoration: underline;
}


ul li {
  list-style: none;
}

.box {
  padding: 20px;
  border-radius: 15px;
    background-color: transparent;
      backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.products-section {
  padding-top:50px;
  justify-self: center;
  padding-bottom: 50px;
  height: 40vh;
  min-height: fit-content;
  max-width: 2000px;
  width: 100%;
  background-color: white;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #193665;
}

.products-grid {
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  min-height: 80%;
  margin: 0 auto;
}


.products-grid .box {
  width: 80%;
}

.product-card {
  padding: 20px;
  min-height: 300px;
  justify-items: center;
  align-content: center;
  position: relative;
  display: block;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card h3::before {
  content: "\f109"; /* Font Awesome icon (monitor) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-card h3 {
  margin-top: 1rem;
  font-size: 1.50rem;
  color: white;
    text-shadow: 2px 2px 2px #333;
}

.product-card p {
  font-size: 1.25rem;
  color: white;
    text-shadow: 2px 2px 2px #333;
}

    main {
      max-width: 1000px;
      margin: 30px auto;
      padding: 0 20px;
    }

section.category {
      margin-bottom: 40px;
    }
    section.category h2 {
      border-bottom: 2px solid #193665;
      padding-bottom: 8px;
      margin-bottom: 15px;
    }
    .product-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .product-card2 {
      background: white;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 15px;
      flex: 1 1 220px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }
    .product-card2 img {
      max-width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .product-card2 h3 {
      margin: 10px 0 6px;
      font-size: 1.1rem;
    }
    .product-card2 p {
      font-size: 0.9rem;
      color: #555;
    }

.about-hero {
  padding-top: 270px;
  max-width: 100%;
  width: 100%;
  height:100vh;
  background-image: url('/images/4-IMG_7355.jpg');
  background-position:center;
  filter:grayscale();
  min-height: 78vh;
  color: white;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    align-content: center;

}

.about-hero-content {

  max-width: 800px;
  min-height:fit-content;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 2px #333;
}

.about-hero .lead {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.about-hero p {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 2px 2px 2px #333;
}


.core-values {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.core-values h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #193665;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1d4d91;
}

.value-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.team-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #193665;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: #f5f7fa;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(25, 54, 101, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(25, 54, 101, 0.2);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #193665;
}

.team-member h3 {
  font-size: 1.4rem;
  color: #1d4d91;
  margin-bottom: 5px;
}

.team-member .title {
  font-size: 1rem;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.team-member p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.testimonials-section {
  background-color: #f9fafc;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #193665;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 15px rgba(25, 54, 101, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #444444;
  margin-bottom: 30px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #193665;
}

.client-info h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #1d4d91;
}

.client-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #777777;
}

.intro-section {
  padding: 30px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.intro-section h1 {
  color: var(--primary-color);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.intro-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
}

.intro-section .cta-btn2 {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.intro-section .cta-btn2:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.office-locations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 300px;
  justify-content: center; /* Or space-between if you prefer */
}


.office-location {
  flex: 1 1 45%;
  max-width: 700px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.office-location h4 {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.office-location p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 10px;
}

.office-location a {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: underline;
}

.office-map {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

    .office-map iframe {
      width: 100%;
      height: 250px;
      border: none;
      border-radius: 4px;
      margin-top: 10px;
    }
  .contact-section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }

.map-section {
        padding: 60px 20px;
      max-width: 2000px;
      margin: auto;
}

.contact-content {
  align-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Or space-between if you prefer */
  gap: 40px;
}

.office-wrapper,
.office-wrapper2 {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-wrapper h2,
.office-wrapper2 h2 {
  margin: 0px;
  text-align: center;
}

.hero-banner {
  color: #193665;
  padding: 100px 20px;
  text-align: center;
}
.hero-content2 h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-content2 p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}


.contact-form {
  flex: 1 1 40%;
  min-width: 280px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
    form input, form textarea {
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

.quote-section {
      max-width: 1100px;
      margin: auto;
      padding: 60px 20px;
    }

    .quote-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .quote-header h1 {
      font-size: 2.5rem;
      color: #193665;
    }

    .quote-header p {
      font-size: 1.1rem;
      color: #444;
      margin-top: 10px;
    }

    .quote-form-wrapper {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }

    form {
      display: flex;
      flex-direction: column;
    }

    form label {
      margin-bottom: 5px;
      font-weight: bold;
      margin-top: 15px;
      color: #193665;
    }

    form input, form select, form textarea {
      padding: 10px;
      border-radius: 4px;
      border: 1px solid #ccc;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    form textarea {
      resize: vertical;
      font-family: 'Segoe UI',sans-serif;
    }

    form select {
      resize: vertical;
      font-family: 'Segoe UI', sans-serif;
    }

.cta-btn,
.cta-btn2,
.secondary-btn {
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.3rem);
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
}

.cta-btn,
.cta-btn2 {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.cta-btn:hover,
.cta-btn2:hover {
  background-color: white;
  color: black;
  transform: translateY(-5px);
}

.secondary-btn {
  background: #DDD;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: 0.3s ease;
}
.secondary-btn:hover {
  background-color: white;
  transform: translateY(-5px);
}

.icon {
  min-width: 60px;
  height: 60px;
  border: 2px solid #f6921e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f6921e;
}

.resources-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 60px 20px;
}

.resource-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.resource-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===== Accordion / FAQ Section ===== */
.resources-faq {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.resources-faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  font-weight: bold;
  text-align: left;
  background-color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header::after {
  content: "–";
}

.accordion-body {
  visibility: visible;
padding: 0;
  background-color: #f9f9f9;
  font-size: 0.95rem;
  line-height: 1.5;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.accordion-item.open .accordion-body {
overflow:hidden;  
}

/* ===== External Links Section ===== */
.resources-tools {
  padding: 60px 20px;
  background-color: #fefefe;
}

.resources-tools h2 {
  text-align: center;
  margin-bottom: 30px;
}

.resources-tools .tool-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.cta-btn,
.cta-btn2,
.secondary-btn {
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.3rem);
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
}

.cta-btn,
.cta-btn2 {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.cta-btn:hover,
.cta-btn2:hover {
  background-color: white;
  color: black;
  transform: translateY(-5px);
}

.services-section-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  position: relative;
  flex-wrap: wrap;
  padding: 0 20px;
}


.services-card {
  background-color: #ffffff; /* pure white */
  max-width: 80%;
  width: 100%;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  color: #193665;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  transition: box-shadow 0.3s ease;
}

.services-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.services-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-column {
  align-content:space-evenly;
  flex: 1 1 300px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.divider {
  width: 3px;
  background: #8d8d8d;
  border-radius: 4px;
  margin: 0 30px;
  align-self: stretch;
  display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prefooter-cta {
  background: linear-gradient(to bottom, var(--light-bg), lightgrey);
  text-align: center;
  padding: 60px 20px;
}

.prefooter-cta h2 {
  font-size: 2.2rem;
  color: var(--primary-color); /* replaced var(white) with working var */
  padding: 10px;
}

.prefooter-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.service {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  align-items: flex-start;
}

.services-section-header {
  position: relative;
  text-align: center;
  margin-top: 20px;
  color: #193665; /* Use the green color or adjust to fit your theme */
}

.services-section-header h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.service-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.service-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* space between elements */
  text-align: center;
  margin-top: 20px; /* optional spacing from above content */
}

.page-hero {
  height: 274px;
  padding: 30px 20px;
  background-color: var(--primary-color);
  text-align: center;
}

.features {
  display: flex;
  justify-content:space-evenly;
  padding: 40px 1rem;
  background-color: var(--light-bg);
}


.features-header h2 {
  text-align: center;
  padding: 40px 16px;
  padding-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.grid {
  width: auto;
  margin: auto;
  color: #DDD;
  align-items:center;
  justify-content:space-evenly;
  display:grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.feature {
  opacity: 0;
  transform: translateY(20px);
  justify-items: center;
  text-align: center;
  display:grid;
  margin: 5px;
  grid-template-columns: auto;
  grid-template-rows: auto;
  max-width: 280px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.show {
  opacity: 1;
  transform: translateY(0);
  width: 100%;
  height: 100%;
}


.feature p {
  color: #808080
}

.feature:hover {
  transform: translateY(-5px);
   box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 10px;
  color: #0a0a23;
}

.feature a {
  padding: 20px;
  text-decoration: none;
  color: black;
}

.feature a:visited{ 
  text-decoration: none;
}

.feature a:hover {
  text-decoration: underline;
}


.services {
  color: white;
  font-size: 3.5rem;
  text-align: center;
  text-shadow: 2px 2px 2px #333;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent; /* start transparent */
  z-index: 10000;
  color: white;
  text-shadow: 2px 2px 2px #333;
    backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled {
  min-height: 150px;
  background-color: #193665; /* TPx dark blue */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  align-content: center;
}

.site-header a:hover {
  background-color: #2c4a8a; /* slightly lighter/darker */
}

.logo-text {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  color: white; /* or your brand color */
}

.logo span{
  display: none;
  text-decoration: none;
  padding:0;
}

.logo span a:visited{
  color:white;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1300px;
  margin: auto;
}

.logo img {
  height: 200px;
}

.logo a:hover{
  background-color: transparent !important;
}

.scrolled .logo img {
  display: none;
}

.logo span a {
  text-decoration: none;
}

.scrolled .logo-text {
  display: inline;
}

.logo-image, .logo-text {
  transition: opacity 0.3s ease;
}

.logo-text {
  opacity: 0;
  display: inline-block;
}

.scrolled .logo-image {
  opacity: 0;
  pointer-events: none;
}

.scrolled .logo-text {
  opacity: 1;
}



.nav-links {
  display: flex;
  gap: 30px;
  font-weight: bold;
    padding: 10px 20px;

}

.nav-links a {
display: flex;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 2px#333;
  position: relative;
  font-size: 1.25rem;
    padding: 10px 20px;


}



.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #193665;
  transition: width 0.3s ease;

}

.nav-links a:hover::after {
  width: 100%;
  background-color: white;

}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button (Services link) */
.dropbtn {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  padding: 0 10px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  align-items: center;
  display: none;
  position: absolute;
  background-color: #193665; /* or your desired background */
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  left: 0;
}
.scroll-indicator {
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}


.nav-links.active  {
  justify-self: center;
  align-items: center;
  display: none;
  margin-left: 15px;
  width: 90%;
  position: absolute;
  background-color: #193665; /* or your desired background */
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 15px;
  top: 100%;
  left: 0;
}




/* Dropdown links */
.dropdown-content a {
  color: #fff; /* or brand color */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.dropdown-content.active {
  position: relative;
  display: block;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #2c4a8a; /* slightly lighter/darker */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: underline or highlight on hover for main Services link */
.dropdown:hover .dropbtn {
  text-decoration: underline;
}



/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}


.free-assessment {
  background: linear-gradient(180deg, #193665, #f9f9f9);
  color: white;
  padding: 60px 20px;
  text-align: center;
}



.free-assessment h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 700;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);


}

.free-assessment p {
  color: white;
  font-weight: bold;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 

}

.assessment-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #cfd8f7;
}

.assessment-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-row input {
  flex: 1 1 300px;
  padding: 14px 18px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

textarea:focus,
input:focus {
  outline: 2px solid #b1b3b5;
  outline-offset: 2px;
}

.btn-primary {
  background: #b1b3b5;
  color: #193665;
  font-weight: 700;
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.3s ease;
  max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* ← shadow here */
  margin: 0 auto;
}

.btn-primary:hover {
  background: #f7f7f7;
  color: #193665;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* stronger on hover */

}

.alternating-section {
  width: 100%;
  background: #f9f9f9;
}


.content-section {
  padding: 100px 20px;
  background-color: #f0f2f5;
}

.content-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  max-width: 600px;
  padding: 1rem;
  text-align: left;
}

.text-content h2 {
  font-size: 2rem;
  color: #193665;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #193665;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #102a50;
}

.image-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.image-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #193665;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sticky-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-container p {
  font-size: 1rem;
  margin: 0;
}

.sticky-button {
  background-color: #ffffff;
  color: #193665;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.sticky-button:hover {
  background-color: #e5e5e5;
}




.contact-section {
  background-color: #f9f9f9;
  padding: 100px 20px;
  max-width: 100%;
}

.contact-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: #193665;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.contact-info ul li {
  margin-bottom: 10px;
}

.contact-info a {
  color: #193665;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  align-self: center;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border-color: #193665;
  outline: none;
}

.submit-button {
  background-color: #193665;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  grid-column: 1 / -1;
}

.submit-button:hover {
  background-color: #142d54;
}

.footer {
  background-color: #193665;
  color: white;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  width: 160px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.75;
}

.footer-socials a {
  color: white;
  font-size: 20px;
  margin-right: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #b1b3b5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-legal a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.why-choose-us {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #193665;
}

.why-choose-us .subheading {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card i {
  font-size: 2rem;
  color: #193665;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hero Header */

.hero-header {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  min-height: 40vh;
  background-image: url("/images/10-IMG_7386.jpg");
  /*background: linear-gradient(135deg, #6286c0, #001b3d);*/
  color: white;
  padding: 3rem 2rem 6rem; 
  overflow: visible; 
  background-size: cover;
  background-position: left center;
  filter: grayscale(100%);
}



.hero-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px; /* height of fade */
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(25, 54, 101, 0) 0%,
    #b1b3b5 100%
  );
}

.hero-header .container {
  padding-bottom: 60px;
  padding-top: 15rem;
  justify-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-header h1 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 2px 2px 2px #333;
}

.hero-header p {
  font-size: 1.25rem;
  margin-bottom: 50px;
  max-width: 700px;
  text-shadow: 2px 2px 2px #333;
  font-weight: bold;

}

.hero-content {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  z-index: 2;
  position: relative;
}


.btn-primary {
  background-color: #ffffff;
  color: #193665;
  padding: 15px 30px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b1b3b5;
}

/* Carousel Cards Section */

.card:not(.active) {
  opacity: 0.5;
  transform: scale(0.95);
}

.card.active {
  opacity: 1;
  transform: scale(1);
}

.btn-secondary {
  display: inline-block ;
  padding: 10px 20px;
  background-color: #193665;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0f254a;
}

.slide {
  flex: 0 0 auto;
  width: 100%; /* JS will override this */
}
/* Arrows */



.dropdown-content.active {
  background-color: #193665;
  color: white;  
  padding: 10px 20px;

}

.carousel {
  background-color: #193665;
  align-items:center;
  justify-content: center;
  justify-items:center;
  align-content: center;
}

.carousel-container {
  align-content: center;
  position: relative;
  overflow: visible;
  min-height: 25vh;
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 2rem 1rem;
  padding-top: 0;
}

.carousel-track-container {
  overflow:hidden;
  width: 100%;
  padding-right: 40px; /* same as .carousel-track gap */
    box-sizing: border-box;
}

.carousel-wrapper {
    padding: 0 40px; /* Optional: gives space around arrows */
  overflow: hidden;
    width: 100%;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px;
}


.carousel-card {
  flex: 0 0 33.333%; /* Show 3 cards side-by-side */
  box-sizing: border-box;
  padding: 20px 20px;
  background-color: white;
  border-radius: 15px;
  text-align: center;
  min-width: 300px; /* Prevent overflow */
    flex-shrink: 0;
  margin: 0;
    box-sizing: border-box;
}

.carousel-card p {
  margin-bottom: 25px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #193665;
  color: white;
  border: none;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.carousel-arrow.prev {
  left: -40px;
}

.carousel-arrow.next {
  right: -40px;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #b1b3b5;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.carousel-dots .dot.active {
  background-color: white;
}

/* Responsive */

.text-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.primary-btn {
  background-color: #ffffff;
  color: #193665;
}

.primary-btn:hover {
  background-color: #e6e6e6;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #fff;
  color: white;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.scroll-indicator{
  display: none !important;
}

.challenge-tiles {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.tiles {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tile {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1;
  max-width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
}

footer {
  background: #193665;
  color: white;
  text-align: center;
  margin-bottom: 90px;
}



@media (max-width: 1740px) {

  .office-locations-container {
  gap: 20px;
}


    .map-section {
    padding: 40px 10px; /* Less padding on mobile */
    width: 60%;
  }

  .office-location {
    flex: 1 1 100%;
    max-width: 100%;
  }

}

/* Adjust card layout for large screens */
@media (max-width: 1490px) {
  .carousel-card {
    flex: 0 0 calc(100% / 3);
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

      .office-locations-container {
  gap: 20px;

}

    .map-section {
    padding: 40px 10px; /* Less padding on mobile */

  }

  .office-location {
    flex: 1 1 100%;
    max-width: 100%;
  }

}

@media (max-width: 1344px){

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
    padding: 0 40px;
  }
    .dropdown-content {
      max-height: 20vh; /* or 50vh if you want a shorter panel */
      overflow-y:auto;


  /* Optional for smoother appearance */

      position: relative;
  }

  .hero-header {
  padding-bottom: 40px;
}

  #dropdownMenu {
  display:none;
  position: relative;
  overflow-y: auto !important; /* allow vertical scroll */
  min-height: 15vh; /* or your preferred max height */
}

/* Scroll Indicator styling */
#scrollIndicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(25, 54, 101, 0.85); /* semi-transparent dark blue */
  color: orangered;
  padding: 6px 12px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 20px;
  pointer-events: none; /* so it doesn’t interfere with scroll */
  user-select: none;    /* prevent text selection */
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Hidden state */
#scrollIndicator[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}


#dropdownMenu.active {
  display:block;
    overflow-y: auto; /* allow vertical scroll */
  min-height: 20vh; /* or your preferred max height */
}

/* Bouncing arrow animation */
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

    .about-hero {
    min-height: fit-content;
    padding-bottom: 20px;
  }
      .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 20px;
      padding: 10px 20px;
    font-size: 0.95rem;
  }

  .nav-links.active {
    display: flex;
      padding: 10px 20px;

  }

  .menu-toggle {
    display: flex;
    font-size: 1.2rem;
  }

    .products-grid {
    grid-template-columns: 1fr;
    width: 80%
  }
}

/* Medium screens (tablets & smaller laptops) */
@media (max-width: 1182px) {

  .carousel-card {
    flex: 0 0 50%; /* 2 cards per row */
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

/* Position the scrollIndicator text at the bottom of the dropdown container */



    #dropdownMenu {
  display:none;
  position: relative;
  overflow-y: auto !important; /* allow vertical scroll */
  min-height: 10vh; /* or your preferred max height */
}

#dropdownMenu.active {
  min-height: 15vh;
}
  /* Chrome, Edge, Safari */

    .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 20px;
      padding: 10px 20px;
    font-size: 0.95rem;
  }

  .nav-links.active {
    display: flex;
      padding: 10px 20px;

  }

  .menu-toggle {
    display: flex;
    font-size: 1.2rem;
  }

    .services-section-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .services-card {
    flex-direction: column;
    padding: 20px 20px;
    max-width: 600px;
        gap: 20px;
    min-height: 100%;

  }
  .services-column {
    max-width: 100%;
  }

  .divider {
display: none;
  }

  .office-locations-container {
  gap: 20px;
}

    .map-section {
    padding: 40px 10px; /* Less padding on mobile */
  }

  .office-location {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .cta-btn,
  .cta-btn2,
  .secondary-btn {
    width: 50%;
    margin: 10px auto;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 1024px) {
  .carousel-container {
    padding-left: 30px !important;
  }

    #dropdownMenu {
  display:none;
  position: relative;
  overflow-y: auto !important; /* allow vertical scroll */
  min-height: 15vh; /* or your preferred max height */
}


  .product-list {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
  }
}


@media (max-width: 930px) {
    .carousel-container {
    padding-left: 30px;
  }

}

@media (max-width: 830px) {
  .carousel-container {
    padding-left: 50px;
  }

}

/* Tablet screens */
@media (max-width: 768px) {
  /* Carousel */
  .footer {
    margin: 0;
  }
  .map-section{
    width: 100%;
  }

.carousel-container {
    padding: 0 20px;
  }
  

.sticky-cta {
  display: none;
}

  .logo img {
    height: 100px;
  }

  .logo-text {
    display: none !important;
  }

  .logo-img {
    display: inline !important;
  }

.site-header.scrolled .logo img {
  display: inline !important;
}

.page-hero {
  height: 190px;
}

.hero-header .container {
  padding-top: 276px;
}

    .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 20px;
      padding: 10px 20px;
    font-size: 0.95rem;
  }

  .nav-links.active {
    display: flex;
      padding: 10px 20px;

  }

    .menu-toggle {
    display: flex;
    font-size: 1.2rem;
    top: 15px;
  }

  .carousel-track {
    gap: 20px; /* Remove space between cards */
    padding: 0; /* Optional: Remove internal padding */
  }

  .carousel-card {
    flex: 0 0 50%; /* 2 cards per row */
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

    .carousel-dots {
    margin-top: 10px;
  }

  /* Footer */
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-legal a {
    margin: 0 10px;
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
    width: 100%;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  /* Content Blocks */
  .content-block,
  .content-block.reverse {
    flex-direction: column;
  }

  .text-content,
  .image-content {
    max-width: 100%;
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.6rem;
  }

  .services-card {
    flex-direction: column;
    padding: 20px;
  }

  .divider {
    width: 100%;
    height: 2px;
    margin: 20px 0;
  }

    #featuresGrid .feature {
    display: grid !important;
  }

  
    section.features {
    display: block !important;
  }

    .grid {
    grid-template-columns: 1fr;
  }

    .cta-btn2 {
    width: 60%;
    font-size: 1rem;
    margin: 20px auto 0;
  }

  .feature {
    max-width: 90%;
    margin: 10px auto;
  }

        .services-section-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .services-card {
    flex-direction: column;
    padding: 20px 0;
    max-width: 600px;
  }
  .services-column {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .divider {
    display: none;
  }

  /* Scroll container */
}

@media (max-width: 734px) {
    .carousel-card {
    flex: 0 0 105%;
    margin: 0 auto;
  }

        .carousel-container {
    padding-left: 70px;
  }
    .carousel-track {
    gap: 20px; /* Remove space between cards */
    padding: 0; /* Optional: Remove internal padding */
  }

    .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

    .carousel-dots {
    margin-top: 10px;
  }
  .about-hero-content {
    justify-items: center;
  }

  .about-hero-content .box {
    width: 80%;
  }
  .about-hero-content h1 {
    font-size: 2rem;
  }
    .about-hero-content .lead {
    font-size: 1.5rem;
  }

    .about-hero-content p {
    font-size: 1.25rem;
  }
}

/* Small screens / phones */
@media (max-width: 600px) {
  /* Carousel */
      .carousel-container {
    padding-left:25px;
  }

    .benefits-grid {
      padding: 0 20px;
    grid-template-columns: 1fr; /* 1 card per row on small screens */
  }
    .carousel-wrapper {
    position: relative;
    right: 10px;
    width: 400px;
  }
  
  .carousel-card {
    flex: 0 0 105%;
    margin: 0 auto;
  }

  /* Hide sticky CTA */
  .sticky-container {
    display: none !important;
  }

  /* Sticky Button cleanup if visible */
  .sticky-button {
    width: 100%;
    text-align: center;
  }

  /* Logo/Nav */
  header {
    padding: 10px 16px;
  }

  .cta-btn2 {
    width: 70%;
    font-size: 1rem;
  }

    .cta-btn,
  .secondary-btn {
    width: 50%;
    font-size: 1rem;
  }
  /* General typography adjustments */
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  h1, h2, h3 {
    font-size: 1.4rem;
  }

  .btn, .button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  /* Footer nav spacing */
  .footer-nav {
    gap: 10px;
  }

  .footer {
    margin: 0;
  }

        .hero-header h1 {
    font-size: 2rem;
  }

  .services h4{
        font-size: 2rem;

  }

  .container h2 {
        font-size: 2rem;

  }
    .about-hero .box{
    position: relative;
    left:40px;

  }

}

@media (max-width: 530px) {
      .carousel-container {
    padding: 0 30px;
  }
  /* Carousel */
  .carousel-card {
    flex: 0 0 107%;
    margin: 0 auto;
  }
    .cta-btn,
  .secondary-btn {
    margin-bottom: 10px;
  }
}


/* Narrowest screens (tiny devices) */
@media (max-width: 434px) {
  .carousel-card {
    flex: 0 0 100%;
    margin: 0 auto;
  }
    .carousel-container {
    padding: 0 25px;
  }

    .cta-btn2 {
    width: 80%;
    font-size: 0.95rem;
  }
  .cta-btn,
  .secondary-btn {
    padding: 10px;
    font-size: 1rem;
    width: 50%;
  }

    .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }
  .contact-container {
    align-content: center;
    justify-content: center;
  }

  .product-card {
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
  }

  .about-hero {
    min-height: fit-content;
    padding-top: 200px;
    padding-bottom: 20px;
  }

  .about-hero .box{
    position: relative;

  }
}

/* Adjust for slightly wider mobile */
@media (max-width: 414px) {
  .carousel-card {
    flex-direction: column;
    font-size: 0.9rem;
    padding: 12px;
  }


  .carousel-container {
    padding: 0 10px;
  }

    .carousel-arrow.prev {
    left: 7px;
  }

  .carousel-arrow.next {
    right: 10px;
  }
  

}

@media (max-width: 394px) {
  .carousel-card {
    flex: 0 0 100%;
    min-width: 115%;
    min-height:220px;
    width: 100%;
    padding: 8px; /* Reduce padding */
    margin: 0 auto;
    box-sizing: border-box;
  }

  .carousel-container,
  .carousel-track {
    padding: 0;
    margin: 0;
    gap: 20px;
    width: 100%;
  }


    .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }
    .about-hero {
      padding-top: 250px;
    min-height: fit-content;
  }

}

@media (max-width: 320px) {
  .carousel-card {
    flex: 0 0 100%;
    margin: 0 auto;
  }
    .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

    .cta-btn,
  .secondary-btn {
    font-size: 0.95rem;
  }
}
