:root {
    --navy: #0a1628;
    --navy-mid: #122240;
    --navy-light: #1e3560;
    --amber: #e8a020;
    --amber-light: #f5b840;
    --white: #ffffff;
    --off-white: #f7f6f2;
    --text-muted: #8a9ab5;
    --text-mid: #4a5a7a;
    --border: rgba(255,255,255,0.08);
    --border-light: #e2e8f0;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--off-white); color: var(--navy); overflow-x: hidden; }


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #0a1f44;
  color: #fff;
}

nav h2 {
  font-weight: 700;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* NEW PROFESSIONAL HEADER */
/* ===== PREMIUM STICKY HEADER ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* SHRINK EFFECT */
#navbar.shrink {
  padding: 8px 5%;
  background: rgba(10,22,40,0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: #e8a020;
  color: #0a1628;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
}

#navbar.shrink .logo-badge {
  width: 36px;
  height: 36px;
}

.logo-text .top {
  color: white;
  font-size: 16px;
  font-weight: 600;

  font-family: var(--font-display);
  line-height: 1;
}

.logo-text .bottom {
  font-size: 10px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MENU */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #e8a020;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: white;
}

/* ACTIVE LINK */
.nav-links a.active {
  color: #e8a020;
}

/* BUTTON */
.nav-cta {
  background: #e8a020;
  color: #0a1628;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-cta:hover {
  background: #ffb733;
}

/* MOBILE */
.nav-mobile-btn {
  display: none;
  font-size: 22px;
  color: white;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile-btn {
    display: block;
  }
}

/* FIX HEADER OVERLAP */
body {
  padding-top: 80px;
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #0a1628;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s ease;
  z-index: 2000;
}

/* SHOW MENU */
.mobile-menu.active {
  right: 0;
}

/* HEADER */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.mobile-header button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* LINKS */
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:hover {
  color: #e8a020;
}

/* CTA BUTTON */
.mobile-cta {
  margin-top: 20px;
  background: #e8a020;
  color: #0a1628 !important;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* OVERLAY (optional premium effect) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1500;
}

.menu-overlay.active {
  display: block;
}

/* ACTIVE LINK */
.nav-links a.active,
.mobile-menu a.active {
  color: #e8a020;
  font-weight: 600;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
}

.menu-overlay.active {
  display: block;
}




/* HERO */
.hero {
  /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center/cover; */
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('images/logistics-banner.png') center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 47, 0.7); /* dark overlay */
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  margin: 15px 0;
}

.seo-image {
  display: none;
}

.btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 12px 25px;
  margin-top: 10px;
  border-radius: 5px;
  text-decoration: none;
}

/* SECTION */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 30px;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 220px;
  margin: 15px;
  padding: 20px;
  border-radius: 10px;
  background: #f4f4f4;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* SERVICES SECTION */
.services-section {
  background: #f5f6f8;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* CONTAINER */
.services-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 30px;
  width: 280px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.icon {
  margin-bottom: 15px;
}

.icon svg {
  display: block;
  margin: auto;
  transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover svg {
  transform: scale(1.2);
  fill: #0a1f44;
}

/* ABOUT */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about img {
  width: 50%;
}

.about-text {
  width: 50%;
  padding: 20px;
  text-align: left;
}

/* WHY */
.why {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.why div {
  margin: 10px 25px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* ===== PREMIUM WHY SECTION ===== */
.why-premium {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #071a2f;
  color: white;
  padding: 80px 8%;
  gap: 40px;
}

/* LEFT SIDE */
.why-left {
  flex: 1;
  min-width: 300px;
}

.why-tag {
  color: #e8a020;
  font-size: 12px;
  letter-spacing: 2px;
}

.why-left h2 {
  font-size: 42px;
  margin: 15px 0;
}

.why-desc {
  color: #b0c4de;
  margin-bottom: 30px;
}

/* ITEMS */
.why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tick {
  color: #e8a020;
  font-size: 20px;
}

.why-item h4 {
  margin-bottom: 5px;
}

.why-item p {
  font-size: 14px;
  color: #b0c4de;
}

/* RIGHT SIDE */
.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 280px;
}

/* INITIAL STATE */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* ACTIVE STATE */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COVERAGE SECTION FIXED ALIGNMENT ===== */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start; /* 🔥 KEY FIX */
  gap: 25px 50px;
  padding: 80px 8%;
  background: #f5f6f8;
}

/* LEFT */
.coverage-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coverage-tag {
  color: #e8a020;
  font-size: 12px;
  letter-spacing: 2px;
}

.coverage-left h2 {
  font-size: 40px;
  margin: 10px 0 25px;

  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

/* LIST */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* .coverage-list div {
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
} */

.region-pill {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border-light);
  border-radius: 10px; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--navy);
}

.region-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* RIGHT */
.coverage-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0; /* 🔥 FIX */
}

.coverage-right .coverage-box p {
  font-size: 13px;
  color: var(--text-muted);
  /* line-height: 1.65; */
} 

/* BOXES */
.coverage-box {
  padding: 24px;
  border-radius: 12px;
}

.coverage-box.dark {
  background: #071a2f;
  color: white;
}

.coverage-box.dark strong {
  display: block;
  margin-top: 10px;
  color: #e8a020;
}

.coverage-box.light {
  background: #ffffff;
  border: 1px solid #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
  .coverage {
    grid-template-columns: 1fr;
  }

  .coverage-left h2 {
    font-size: 28px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }
}

/* STAT BOX */
.stat {
  background: #0c223d;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.stat h3 {
  font-size: 32px;
  color: #e8a020;
}

.stat p {
  font-size: 14px;
  color: #ccc;
}

/* HIGHLIGHT BOX */
.stat.highlight {
  background: #e8a020;
  color: #0a1628;
}

.stat.highlight h3 {
  color: #0a1628;
}

.stat.highlight p {
  color: #0a1628;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-premium {
    flex-direction: column;
  }

  .why-left h2 {
    font-size: 28px;
  }
}

/* CONTACT */
/* CONTACT INFO BOX */
.contact-info {
  background: #f4f6f8;
  text-align: center;
  padding: 50px 20px;
}

.contact-info h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin: 5px 0;
}

.contact-info .phone {
  color: #e63946;
  font-size: 26px;
  margin-top: 10px;
}

.contact-info .email {
  color: #e63946;
  font-size: 18px;
  margin-top: 10px;
}

.contact-clean {
  background: #f5f6f8;
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.contact-clean h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #333;
}

.contact-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 18px;
  color: #222;
  margin-bottom: 20px;
}

.contact-hours {
  color: #555;
  margin-bottom: 20px;
}

.contact-address {
  color: #333;
  font-weight: 500;
}

/* FORM IMPROVEMENT */
form {
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  width: 100%;
  background: #ff6b00;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background: #ff8533;
}

.error {
  color: red;
  font-size: 13px;
  display: block;
  text-align: left;
  width: 80%;
  margin: auto;
}





/* ===== CONTACT SECTION ===== */
/* .contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 80px 8%;
  background: #071a2f;
  color: white;
} */




/* SECTION SHARED */
  /* section { padding: 100px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 12px; }
  .section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
  .section-title.light { color: white; }
  .section-desc { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 560px; }
  .section-desc.light { color: var(--text-muted); } */

/* ENQUIRY FORM */
  /* #enquiry { background: white; }
  .enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .form-wrap { background: var(--off-white); border-radius: 16px; padding: 40px; border: 1px solid var(--border-light); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.3px; text-transform: uppercase; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border-light);
    border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: var(--navy);
    background: white; transition: border-color 0.2s; outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit { width: 100%; background: var(--navy); color: white; padding: 14px; border-radius: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; border: none; cursor: pointer; letter-spacing: 0.3px; transition: background 0.2s; }
  .form-submit:hover { background: var(--navy-mid); }
  .form-success { display: none; text-align: center; padding: 32px; }
  .form-success .tick { width: 56px; height: 56px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .form-success .tick svg { width: 24px; height: 24px; stroke: #16a34a; stroke-width: 2.5; fill: none; }
  .form-success h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .form-success p { font-size: 14px; color: var(--text-mid); }
  .contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon { width: 44px; height: 44px; background: rgba(232,160,32,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .contact-item h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  .contact-item p { font-size: 14px; color: var(--text-mid); line-height: 1.5; } */




/* ===== CONTACT PREMIUM ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 90px 8%;
  background: white;
  /* color: white; */
}

/* LEFT */
.contact-tag {
  color: #e8a020;
  font-size: 12px;
  letter-spacing: 2px;
}

.contact-left h2 {
  font-size: 42px;
  margin: 15px 0;
}

.contact-left p {
  color: #c7d2e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item svg {
  width: 22px;
  height: 22px;
  fill: #e8a020;
}

.info-item strong {
  color: #e8a020;
}

/* RIGHT FORM */
.contact-right {
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

/* FLOATING INPUT */
.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
}

.form-group label {
  font-size: 14px;
  color: #aaa;
  transition: 0.3s;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #e8a020;
}

/* BUTTON */
.contact-right button {
  width: 100%;
  background: #e8a020;
  color: #0a1628;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  background: #ffb733;
}

/* SUCCESS */
.success-msg {
  color: #4caf50;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* LEFT SIDE */
.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f1f33;
  margin: 15px 0;
  line-height: 1.2;
}

.contact-desc {
  color: #5a6b7b;
  margin-bottom: 40px;
  max-width: 500px;
}

/* ITEM ROW */
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

/* ICON BOX */
.icon-box {
  width: 50px;
  height: 50px;
  background: #f3e8d7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: #e8a020;
}

/* TEXT */
.contact-item h4 {
  font-size: 13px;
  letter-spacing: 1px;
  color: #0f1f33;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 14px;
  color: #5a6b7b;
  line-height: 1.6;
}






/* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner, .why-grid, .enquiry-grid, .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-btn { display: block; }
  }


/* FOOTER */
/* footer {
  background: #0a1f44;
  color: white;
  text-align: center;
  padding: 20px;
} */

/* ===== FOOTER ===== */
/* ===== PREMIUM FOOTER ===== */
.footer {
  background: #071a2f;
  color: #c7d2e0;
  padding-top: 70px;
  font-family: sans-serif;
}

/* GRID */
.footer-container {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 8%;
}

/* LOGO */
.footer-logo {
  color: white;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  /* line-height: 1.7; */
  margin-top: 16px;
  max-width: 300px;
}

/* HEADINGS */
.footer-col h4 {
  position: relative;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* UNDERLINE EFFECT */
.footer-col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #e8a020;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  transition: 0.3s;
}

/* LINKS */
.footer-col ul li a {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

/* HOVER EFFECT */
.footer-col ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #e8a020;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: 0.3s;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-col ul li a:hover {
  color: white;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #0c223d;
  color: white;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e8a020;
  color: #0a1628;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1f3550;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 2fr 1fr;
    }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .about img,
  .about-text {
    width: 100%;
  }
}