:root {
  --blue: #11468f;
  --dark-blue: #0e3570;
  --gold: #ffcc00;
  --light: #f4f7fb;
  --text: #1f2937;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.logo-wrap {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tagline {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav-btn {
  background: var(--gold);
  color: #111 !important;
  padding: 0.65rem 1rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--blue);
  margin: 5px 0;
  border-radius: 5px;
}

/* HERO */
.hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(8, 34, 74, 0.92) 0%, rgba(8, 34, 74, 0.75) 42%, rgba(8, 34, 74, 0.2) 100%),
    url("../images/hero-saimotech.png");
  background-size: cover;
  background-position: center right;
  color: var(--white);
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-overlay {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay .container {
  width: min(1320px, 92%);
}

.hero-content {
  width: 45%;
  max-width: 560px;
  position: relative;
    top: -25px;
}

.eyebrow{
    color:var(--gold);
    font-size:.9rem;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 1rem 0;
}

.hero-text {
  font-size: 1.3rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-features,
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-features {
  margin: 1.5rem 0;
}

.hero-features span {
  font-weight: 800;
  color: var(--white);
}

.hero-features i{
    color: var(--gold);
    margin-right: 8px;
    font-size: .95rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;

  transition: transform .3s ease, box-shadow .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.nav-menu a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.nav-btn:hover {
  background: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.primary-btn {
  background: var(--gold);
  color: #111;
}

.secondary-btn {
  background: var(--white);
  color: var(--blue);
  border:2px solid rgba(17,70,143,.12);
}

.secondary-btn:hover{
    transform:translateY(-2px);
}

/* TRUST SECTION */
.trust-section {
  background: var(--light);
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}

.trust-grid {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid #e5e7eb;
}

.trust-card:last-child {
  border-right: none;
}

.trust-card span {
  font-size: 2.4rem;
}

.trust-card h3 {
  color: var(--blue);
}

/* PRICING */
.pricing {
  background: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

.pricing h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #4b5563;
}

.pricing-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.price-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfcff 100%
);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow:
    0 12px 30px rgba(17,70,143,.08);
  border: 1px solid rgba(17,70,143,.08);
  text-align: left;
  position: relative;

  transition:
      transform .35s ease,
      box-shadow .35s ease;

  display: flex;
  flex-direction: column;
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.price-card.featured:hover{
    transform: translateY(-16px);
}

.price-card.featured {
    border: 2px solid var(--gold);
    transform: translateY(-12px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.12),
        0 0 0 3px rgba(255,204,0,.15);
    position: relative;
}

.popular-badge{
    position:absolute;
    top:18px;
    right:24px;

    background:var(--gold);
    color:#111;

    font-weight:800;
    font-size:.85rem;

    padding:8px 18px;

    border-radius:999px;

    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.price-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #f3f7ff,
    #dbeafe
);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.price-icon i{
    color: var(--blue);
    font-size: 2rem;
    line-height:1;
}

.price-card h3 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-card p {
  color: #4b5563;
}

.price-card strong{
    display:block;
    color:var(--blue);
    font-size:3.2rem;
    margin-top:1.2rem;
    margin-bottom:.25rem;
}

.price-card span{
    color:#6b7280;
    font-weight:700;
    font-size:1.05rem;
}

.price-card ul {
    padding-left: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
  flex-grow: 1;
}

.price-card li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.pricing-note {
  margin-top: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.pricing {
  padding-bottom: 2rem;
}

.price-card .btn{
    margin-top:auto;
    margin-bottom:8px;
    width:100%;
    text-align:center;

    min-height:56px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* FLOATING CALL */
.floating-call{
  position:fixed;
  left:50%;
  right:auto;
  bottom:16px;

  width:88%;
  max-width:330px;
  padding:14px 20px;

  transform:translateX(-50%);

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--gold);
  color:#111;
  text-decoration:none;
  font-weight:900;
  font-size:1.05rem;
  border-radius:40px;
  box-shadow:var(--shadow);

  z-index:1200;

  opacity:0;
  visibility:hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.floating-call.show{
  opacity:1;
  visibility:visible;
}

.floating-call:hover{
  transform:translateX(-50%) translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
}

@media (min-width: 851px) {
  .floating-call {
    bottom: 28px;
    right: 28px;
  }
}

/* SERVICES */
.services {
  background: var(--light);
  padding: 3.5rem 6rem 6rem;
  text-align: center;
}

.services h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.service-card h3{
    margin-bottom: 1rem;
}

.service-card ul{
    margin-top: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.3rem;
  display: flex;
    flex-direction: column;
    height: 100%;
  text-align: left;
  box-shadow: 0 12px 30px rgba(17,70,143,.08);
  border: 1px solid rgba(17,70,143,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.13);
}

.service-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:linear-gradient(145deg,#f7f9ff,#e8efff);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:1.4rem;

    box-shadow:
        0 10px 24px rgba(17,70,143,.08);
}

.service-card:hover .service-icon{
    transform:scale(1.08);
}

.service-icon{
    transition:all .3s ease;
}

.service-icon i {
  color: var(--blue);
  font-size: 1.6rem;
}

.service-card h3{
    font-size:1.45rem;
    color:var(--blue);
    margin-bottom:.8rem;
}

.service-card p {
  color: #4b5563;
}

.service-line{
    width:55px;
    height:4px;
    background:var(--gold);
    border-radius:999px;
    margin-bottom:1rem;
}

.service-list{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
}

.service-list li{
  margin-bottom:.7rem;
  padding-left:1.6rem;
  position:relative;
  color:#374151;
}

.service-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:900;
}

/* TESTIMONIAL */
.testimonials{
  background:#f8fbff;
  padding:2.5rem 0 6rem;
  text-align:center;
}

.testimonials h2{
  color:var(--blue);
  font-size:clamp(2rem,4vw,3.5rem);
  margin:.5rem 0 3rem;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.6rem;
}

.testimonial-card{
  background:var(--white);
  border-radius:22px;
  padding:2.2rem;
  text-align:left;
   position: relative;
  box-shadow:0 12px 30px rgba(17,70,143,.08);
  border:1px solid rgba(17,70,143,.08);

  transition:
  transform .35s ease,
  box-shadow .35s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.testimonial-card::before{
    content: "“";
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: rgba(255, 211, 51, .9);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars{
  color:var(--gold);
  font-size:1.15rem;
  margin-bottom:1rem;
  letter-spacing:2px;
}

.testimonial-card p{
  color:#374151;
  line-height:1.8;
  font-style: italic;
  font-size:1.05rem;
}

.testimonial-card h4{
  color:var(--blue);
  font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* ABOUT */

.about{

    background:#f8fbff;

    padding:30px 0 50px;

}

.about-grid{
    display:grid;
    grid-template-columns:52% 48%;
    gap:55px;
    align-items:start;
}

.about-image{
  position: sticky;
  top: 110px;
  align-self: start;
  margin-top: 0;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,.15);
  display: block;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.about-image img:hover{
    transform:scale(1.02);
    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.about-photo-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: #32238a;
  color: white;
  padding: 1.5rem;
  border-radius: 20px;
  width: 250px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  z-index:5;
}

.about-photo-badge h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.5rem;
}

.about-photo-badge p {
  margin: 0 0 1rem;
  color: white;
  font-weight: 700;
}

.about-photo-badge ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-photo-badge li {
  margin: .7rem 0;
  font-weight: 700;
}

.about-photo-badge i {
  color: var(--gold);
  margin-right: 8px;
}

.mobile-only{
    display:none;
}

.desktop-only{
  display:block;
}



.about-content h2{
  color:var(--blue);
  font-size:4.2rem;
    line-height:1.08;
  margin-bottom:1.5rem;
}

.about-content p{

    margin-bottom:1.2rem;

    line-height:1.9;

    color:#4b5563;

}

.about-content .eyebrow {
  color: var(--gold);
}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}

.about-highlights div{

    font-weight:600;

}

.about-highlights i{

    color:var(--gold);

    margin-right:8px;

}

.about-subtitle{
    color: var(--gold);
    letter-spacing:4px;
    font-weight:700;
}

blockquote{
    background:white;
    border-left:6px solid var(--gold);
    padding:25px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    font-size:1.35rem;
    font-style:italic;
    color:var(--blue);
    margin:40px 0;
}

/* CONTACT */
.contact{
  background:#f8fbff;
  padding:2.5rem 0 2.5rem;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
}

.contact-content{
    align-self:start;
}

.contact-content h2{
  color:var(--blue);
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:1.1;
}

.contact-content p{
  font-size:1.15rem;
  color:#4b5563;
  line-height:1.8;
}

.contact-info{
  margin-top:2rem;
  display:grid;
  gap:1rem;
}

.contact-info div{
  display:flex;
  gap:1rem;
  align-items:center;
  font-weight:700;
}

.contact-info i{
  color:var(--gold);
  font-size:1.3rem;
}

.contact-card{
  background:white;
  padding:2.5rem;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(17,70,143,.12);
}

.contact-card .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.contact-card h3{
  color:var(--blue);
  font-size:1.8rem;
  margin-top:0;
}

.contact-card form{
  display:grid;
  gap:1rem;
}

.contact-card input,
.contact-card textarea{
  width:100%;
  padding:1rem;
  border:1px solid #e6e8ee;
  border-radius:14px;
  font:inherit;
}

.contact-card textarea{
  min-height:140px;
  resize:vertical;
}

.contact-note{
    margin-top:0px;
    text-align:center;
    font-size:1rem;
    color:#7b8597;
}

.contact-note i{
    color:var(--gold);
    margin-right:6px;
}

/* FOOTER */
.site-footer{
  background:#32238a;
  color:white;
  padding:5rem 0 1.5rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:2rem;
}

.footer-brand h3{
  font-size:2rem;
  margin:0;
  color:white;
}

.footer-brand h3 span{
  color:var(--gold);
}

.footer-tagline{
  font-weight:600;
  opacity: .85;
  color:#fff;
  margin:.3rem 0 1rem;
}

.footer-brand p,
.footer-contact p,
.footer-bottom{
  color:rgba(255,255,255,.65);
}

.footer-links,
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.site-footer h4{
  color:var(--gold);
  margin:0 0 .7rem;
}

.footer-links a{
  color:rgba(255,255,255,.8);
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover{
  color:var(--gold);
  transform:translateX(5px);
}

.footer-contact i{
  color:var(--gold);
  margin-right:8px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:3rem;
  padding-top:1.2rem;
  text-align:center;
}

.footer-bottom p{
  margin:.3rem 0;
  font-weight:700;
  color:white;
}

.footer-bottom span{
  font-size:.95rem;
}

/* Floating Back To Top */

.back-top-floating{
    position:fixed;

    left:50%;
    bottom:110px;

    transform:translateX(-50%);

    background:white;
    color:var(--blue);

    padding:12px 22px;

    border-radius:999px;

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
    font-weight:700;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    z-index:999;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;
}

.back-top-floating.show{
    opacity:1;
    visibility:visible;
}

.back-top-floating:hover{
    background:var(--gold);
    color:black;
    transform:translateX(-50%) translateY(-5px);
}

/* MOBILE */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .testimonial-grid{
  grid-template-columns:1fr;
}

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 2rem 1.5rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    padding: 0.8rem 0;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(rgba(8, 34, 74, 0.88), rgba(8, 34, 74, 0.88)),
      url("../images/hero-saimotech.png");
    background-size: cover;
    background-position: center center;
  }

  .hero-overlay {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .hero h1{
    font-size: 2.6rem;
    line-height: 1.12;
  }

  .hero p{
    font-size: 1.25rem;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-features{
    flex-direction: column;
    gap: 1rem;
  }

  .hero-features,
  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons{
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn{
    width: 100%;
    text-align: center;
  }

  .trust-section {
    margin-top: 0;
    padding: 2rem 0;
  }

  .trust-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .trust-card:last-child {
    border-bottom: none;
  }

  .price-card.featured {
    transform: none;
  }

  .floating-call {
    text-align: center;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:1rem;
}

.about-content h2 {
  color: var(--blue);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-highlights{

    grid-template-columns:1fr;
    margin:30px 0;

}

.about-image{
  position: relative;
  top: auto;
  margin-bottom:0px;
}

.about-image img{
  height: auto;
  width: 100%;
}

.about-image .about-subtitle{
    margin-bottom:20px;
}

.about-photo-badge {
  position: relative;
  right: auto;
  bottom: auto;
  background: #32238a;
  color: white;
  padding: 1rem;
  border-radius: 18px;
  width: 100% !important;
  max-width:none;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  font-size:1rem;
  margin-top: 1rem;
}

.about-photo-badge h3{
    font-size: 1.4rem;
  }

  .about-photo-badge li{
    font-size: 1rem;
  }

.about-note{
    background:#fffaf0;
    padding:30px;
    border-radius:18px;
    margin-top:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-note{
    text-align:left;
}

.about-note .btn{
    display:inline-flex;
    margin-top:25px;
}

.mobile-only{
    display:block;
    margin-bottom:18px;
}

.about-content > .eyebrow.desktop-only{
  display:none !important;
}

.desktop-only{
    display:none;
  }

  .mobile-only{
  display:block !important;
}

blockquote{

    text-align:left;
    margin:28px 0;

}

.floating-call{
    bottom: 16px;
    width: auto;
    justify-content: center;
    z-index: 999;
  }

  .pricing,
  .services,
  .testimonials,
  .about,
  .contact{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

.founder-promise {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 28px 0;
  box-shadow: 0 12px 30px rgba(17,70,143,.08);
}

.founder-promise h3 {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: .6rem;
}

.founder-promise p {
  margin-bottom: 0;
  color: #4b5563;
  line-height: 1.8;
}

.contact-grid{
  grid-template-columns:1fr;
}

.footer-grid{
  grid-template-columns:1fr;
}

.site-footer{
  text-align:center;
}

.footer-contact p{
  justify-content:center;
}

.services{
  padding: 3.5rem 0;
}

.service-grid{
    width:100%;
    grid-template-columns:1fr;
    justify-items:stretch;
  }

  .service-card{
    width:100%;
    max-width:none;
    min-width:0;
    margin:0;
    text-align:left;
  }

  .service-icon{
    margin-left:0;
    margin-right:auto;
  }

/* MOBILE CLEANUP */
  .container{
    width: 92%;
  }

  .hero{
    background-position: 58% center;
  }

  .hero h1{
    font-size: 2.45rem;
  }

  .hero p{
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .hero-features{
    display: none;
  }

  .pricing,
  .services,
  .testimonials,
  .about,
  .contact{
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }

  .service-card{
    width: 100%;
    max-width: none;
    padding: 2rem;
  }

  .service-card h3{
    font-size: 1.8rem;
  }

  .service-list li{
    font-size: 1.05rem;
  }

  .testimonials{
    padding-bottom: 2.5rem;
  }

  .about{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .about-image{
    position: relative;
    top: auto;
    margin-bottom:20px;
  }

  .about-image img{
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .about-photo-badge{
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    padding: 1.3rem;
    font-size: 1rem;
    background: #32238a;
  }

  .about-photo-badge h3{
    font-size: 1.5rem;
  }

  .about-photo-badge li{
    font-size: 1rem;
    margin: .6rem 0;
  }

  .about-content h2{
    font-size: 2.4rem;
  }

  .contact{
    padding-top: .5rem;
  }

  .floating-call{
    width: auto;
    justify-content: center;
    bottom: 16px;
  }

}