/* Setup For Build */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px; /* Enables easy rem scaling */
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  max-width: 1200px !important;
  margin: auto;
  overflow-x: hidden;


}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
}


:root {
  --color-primary: #006AFF;        /* Bright Blue - header & CTA */
  --color-primary-dark: #0050cc;   /* Darker Blue - hover or accents */
  --color-background: #f5f5f5;     /* Light Gray - section background */
  --color-white: #ffffff;          /* Pure White - text background & buttons */
  --color-text-dark: #2d2d2d;      /* Dark Gray - main body text */
  --color-text-light: #e0e0e0;     /* Light Gray Text (on dark) */
  --color-accent: #003f8f;         /* Deep Accent Blue - optional emphasis */
}

/* Section */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;

}

footer {

  max-width: 1200px;
  margin: auto;

}

/* Misc */

#contactbutton {

  text-decoration: none;
  color: #fff;
  font-weight: 500;

}

.floating-call-btn {

  display: none;

}

/* Scroll Margin for Anchor Links */

#ourwork01 {

  scroll-margin-top: 20rem;

}

#services01 {

  scroll-margin-top: 20rem;

}

/* === HERO SECTION === */

.hero {
  display: flex;
  align-items: end;
  gap: 4rem;
  padding: 8rem 6% 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-width: 1200px;

}



.hero-text {

  align-self: center;


}

.hero-image {
  width: 70%;
  display: flex;
  height: fit-content;
  justify-content: center;


}

.hero-image img {
  width: 90%;
  height: auto;
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.1);
    border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;



  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.06);

}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--color-text-light);
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.6;

  margin-bottom: 2rem;
}


  .hero-highlight {
  font-size: 1.6rem;
  color: var(--color-text-light);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Base Button Styles */
.cta-button,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.6rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

/* Primary CTA Button */
.cta-button {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: scale(1.03);
  box-shadow: inset 0 0 0.2rem rgba(255, 255, 255, 0.4), 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

/* Secondary CTA Button */
.cta-button-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.cta-button-secondary:hover {
  transform: scale(1.03);
  box-shadow: inset 0 0 0.2rem rgba(255, 255, 255, 0.4), 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
  background-color: var(--color-white);
  color: var(--color-primary-dark);
}

.hero-badge {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--color-text-light);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.4rem;
  border-radius: 0.6rem;
  display: inline-block;
  font-weight: 500;
  backdrop-filter: blur(4px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
}

.scroll-down-hint {
  margin-top: 4rem;
  font-size: 1.4rem;
  color: var(--color-white);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: floatDown 3s ease-in-out infinite;
  text-align: left;
}

/* For Scroll Down Hint */

@keyframes floatDown {
  0%   { transform: translateY(0); opacity: 0.7; }
  50%  { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}




/* HERO MOBILE SLIDER */

.hero-slider {
  position: relative;
  width: 90%;
  height: 300px;
  margin: 3rem auto 0;
  overflow: hidden;
  background-color: #f4f4f4;
    outline: 3px #fff solid;

  
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;

}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider {
  background-color: transparent;
  border-radius: 1rem;

}

.hero-slider img {



}


/* === BENEFITS BAR === */
.benefits-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 6rem 6%;
  text-align: center;
  background-color: var(--color-background);
  position: relative;
  background-color: #f0f6ff;
}


.benefit-header {
  text-align: center;
  margin-top: 3rem;
  padding: 0 2rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border-bottom: 1px solid #e0e0e0;
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 1rem;

    background-color:  #f0f6ff;
}

.benefits-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02rem;
}

.benefits-subtitle {
  font-size: 1.6rem;
  color: var(--color-text-dark);
  opacity: 0.8;
  line-height: 1.6;
  max-width: 56rem;
  margin: 0 auto;
}



.benefit-item {
  flex: 1 1 28rem;
  max-width: 32rem;
  background: var(--color-white);
  padding: 3.2rem 2.4rem;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  font-size: 1.5rem;
  box-sizing: border-box;
}

.benefit-item:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 2.4rem rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.benefit-item p {
  font-size: 1.45rem;
  color: var(--color-text-dark);
  opacity: 0.95;
  line-height: 1.6;
}

.svg-benefit {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.6rem;
  display: inline-block;
  stroke: var(--color-accent);
  transition: stroke 0.3s ease;
  background: #e0f2ff;
  border-radius: 50%;
  padding: 1rem;

}

.benefit-item:hover .svg-benefit {
  stroke: var(--color-primary);
  background: #dbeafe;

    transform: translateY(-6px);
  box-shadow: 0 1.6rem 3rem rgba(0, 0, 0, 0.1);

}


/* Services Section */
.services-overview {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
background-color: #f9fafb;

}

.service-overview-text span {


    font-size: 1.6rem;
  color: #5a5a5a;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;

}

.section-title {

  color: var(--color-text-dark);
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;

}


.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

/* Alternating layout every other card */
.service-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-card {
  display: flex;
  background-color: #f9fafb;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 2px solid #e0ebf8;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.08);
}

/* Optional: slight image zoom on hover */
.service-card:hover img {
  transform: scale(1.03);
}

.service-card img {
  width: 35%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  min-height: 100%;
}

/* Content area */
.service-content {
  padding: 2.4rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Headline styling */
.service-content h3 {
  font-size: 2.1rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  color: var(--color-text-dark);
}

/* Body text styling */
.service-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #444;
  margin: 0;

  font-weight: 400;
}


/* CTA SECTION ------------------------------------------------- */


.cta-divider {
  width: 100%;
  height: 1px;
  background-color:  #e0e0e0;
  border: none;
  opacity: 0.6;
  border-radius: 1px;
  margin: 0 auto;
}



  .cta-banner {
  background-color: #f0f6ff;
  padding: 4rem 2rem;
  text-align: center;
  margin: 0rem auto;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.04);
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.cta-content p {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1.2rem 2.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 0.8rem;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1.5;
  will-change: transform;
}

.cta-button:hover {
  background-color: var(--color-primary-dark);
}



/* Test Gallery */


.swipe-background {
background-color: #f9fafb;
}

/* Text above */

.section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtext {
  font-size: 1.6rem;
  max-width: 60ch;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  line-height: 1.6;
}

/* Text Above End */

.swipe-master {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 100%;
  overflow-x: hidden;
}

#swiper-wrapper-52711ba96b3f7a1f {

transform: translate3d(-401px, 0px, 0px);

}



.labeled-image {

  border: 1px solid #d1d5db; /* Light gray, adjust as needed */
  border-radius: 0.6rem;     /* Match your site’s radius style */
  overflow: hidden;          /* Keeps images from overflowing corners */
  background-color: white;   /* Optional, helps define against gray backgrounds */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); /* Optional soft depth */

}

.swiper {
  width: 90%;
  max-width: 400px;
  height: 300px;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
    overflow-x: hidden;
}

.swiper-slide {
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.swiper-slide:hover {
  transform: scale(1.01);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Before After Swiper Slide */

.labeled-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.labeled-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}





/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonial-quote {
  font-style: italic;
  margin-top: 2rem;
  font-size: 1.6rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.cta-headline {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .gallery-row img {
    width: 100%;
  }
}


/* Testimonials */


.testimonials {
  padding: 5rem 2rem;


    position: relative;
  z-index: 1;



    background-color: #f0f6ff;;
}





.testimonials::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 180%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.06),
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}


.testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-subtitle {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.testimonial-header h2 {
  font-size: 2.5rem;
}

.testimonial-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
background: linear-gradient(to bottom, #f9fcff 0%, #f4f5ff 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;

  border: 2px solid #dcedff;

}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-text .quote {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  text-align: start;
}

.stars {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.star-rating {
  letter-spacing: 1px;
  letter-spacing: 0.05em;
    color: #facc15; 
}

.source {
  font-size: 1rem;
  font-weight: 500;
}


.testimonial-info {
  display: flex;
  align-items: center;

  gap: 1rem;
}

.client-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #c4dffa;
}

.name {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.role {
  font-size: 1.1rem;
}

/* Contact Section ------------------------- */


.contact-section {
  padding: 5rem 2rem;
  background-color: #f9fafb;

}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-label {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
    color: var(--color-text-dark);
}

.contact-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.contact-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form {
  padding: 2rem;
  border-radius: 1rem;
  width: 70%;
  margin: auto;
  background-color: #fbfcfd;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.05);



}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  font-size: 1.125rem;
  font-family: inherit;
  background-color: #fff;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  
  box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.1);
}

.submit-btn {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0.8rem 1.6rem rgba(0, 106, 255, 0.2);
}

.submit-btn:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 1rem 2rem rgba(0, 80, 204, 0.25);
}


/* Footer */
.site-footer {
  padding: 4rem 2rem 2rem;
  font-size: 1.4rem;
  background-color: #f5f7fa; /* soft section background */
  color: #2d2d2d; /* general text color */
    background-color: #f1f3f5
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-about {
  text-align: left;
  flex: 2;
  color: #2d2d2d; /* keep content readable */
}

.footer-links,
.footer-social {
  flex: 1;
  min-width: 220px;
  color: #2d2d2d;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2456a5; /* clean section title blue */
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #3478f6; /* brand blue */
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #2d2d2d;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #0050cc; /* hover blue */

}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.3rem;
  color: #6b7280; /* soft gray for footer text */
}

.footer-divider {
  height: 2px;
  background-color: #e0e0e0;
  width: 100%;
  display: none; /* original setting respected */
}

.footer-about h3,
.footer-links h4,
.footer-social h4 {
  color: #2456a5; /* Or use #374151 for a more neutral look */
  font-weight: 600;
}

.footer-about a[href^="mailto"] {
  color: #2456a5; /* Calm, brand-friendly blue */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-about a[href^="mailto"]:hover {
  color: #0050cc;
  text-decoration: underline;
}
