/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #f66;
}
section {
  padding: 80px 20px;
  text-align: center;
}

/* Glassy Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 99, 71, 0.1); /* #f66 glass */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 99, 71, 0.2);
  transition: all 0.3s ease;
}


.logo img{
  border-radius: 15%;
  height: 3rem;
  margin-top: 10%;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #f66;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #f66;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;

    /* ✨ Solid #f66 with slight transparency */
    background: rgba(255, 102, 102); /* ~6% transparency */
    /* No blur now */
    
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 0 0 10px 10px;

    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  nav.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }
}
/* Logo Glow */
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: #f66;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 5px #f66, 0 0 10px #f66; }
  50% { text-shadow: 0 0 10px #f66, 0 0 20px #f66; }
}

/* Fancy link underline */
nav a {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #f66, gold);
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Nav shimmer on hover */
nav a:hover {
  color: #fff;
  background: linear-gradient(90deg, #f66, orange, #f66);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Entry animation */
.navbar {
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.hamburger span {
  transition: transform 0.3s, opacity 0.3s;
}

/* ================ HomePage ================ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #111, #191919, #141414, #1c1c1c);
  background-size: 300% 300%;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero h1,
.hero p,
.hero .hero-actions {
  position: relative;
  z-index: 2;
}

.wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg); /* Optional: flip if needed */
}
.wave-container svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero h1 {
  font-size: 3.2rem;
  max-width: 800px;
  color: #f66;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  color: #ccc;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f66;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #ff3c20;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #f66;
  color: #f66;
  transition: all 0.3s ease;
}

.btn.secondary:hover {
  background-color: #f66;
  color: #fff;
}

/* Preview Cards */
.preview {
  padding: 80px 20px;
  text-align: center;
  background-color: #111;
}

.preview h2 {
  font-size: 2.5rem;
  color: #f66;
  margin-bottom: 10px;
}

.preview .subtext {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1rem;
}

.preview-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto 50px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 99, 71, 0.2);
}

.card img {
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}

.card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card:nth-child(even) {
  transform: translateX(-40px);
}
.card:nth-child(odd) {
  transform: translateX(40px);
}
.card.animate-in {
  opacity: 1;
  transform: translateY(0);
}



.btn.center {
  display: inline-block;
  margin-top: 20px;
}


/* Why Us */
.why-us {
  padding: 80px 20px;
  background: #0f0f0f;
  text-align: center;
}
.why-us h2 {
  font-size: 2.5rem;
  color: #f66;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 35px 25px;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 99, 71, 0.2);
}

.why-card .icon {
  width: 46px;
  height: 46px;
  color: #f66;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}

.why-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.why-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.why-card:nth-child(even) {
  transform: translateX(-40px);
}
.why-card:nth-child(odd) {
  transform: translateY(40px);
}
.why-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}


/* CTA */
.cta {
  background: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* ================ HomePage ================ */

/* ================ Services Page ================ */

/* About Hero */
.services-hero{
  position:relative;
  height:90vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(-45deg,#111,#191919,#141414,#1c1c1c);
  background-size:300% 300%;
  animation:gradientFlow 12s ease-in-out infinite;
}
.services-hero h1{font-size:3rem;color:#f66;margin-bottom:10px}
.services-hero p{color:#ccc;font-size:1.1rem;max-width:600px}
.services-hero .wave-container{position:absolute;bottom:0;width:100%;line-height:0}
.services-hero .wave-container svg{display:block;width:100%;height:auto}

.services-grid {
  height: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 40px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
  text-align: center;
  margin-bottom: 50px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(255,99,71,0.15);
}
.service-card .icon {
  width: 40px;
  height: 40px;
  color: #f66;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  color: #ccc;

  font-size: 1rem;
}

.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}


.services-cta {
  padding: 60px 20px;
  background: #141414;
  text-align: center;
}
.services-cta h2 {
  color: #f66;
  font-size: 2rem;
  margin-bottom: 10px;
}
.services-cta p {
  color: #ccc;
  margin-bottom: 20px;
}

.service-card.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}


/* ================ Services page ================ */


/* ================ Services page ================ */

/* About Hero */
.about-hero{
  position:relative;
  height:90vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(-45deg,#111,#191919,#141414,#1c1c1c);
  background-size:300% 300%;
  animation:gradientFlow 12s ease-in-out infinite;
}
.about-hero h1{font-size:3rem;color:#f66;margin-bottom:10px}
.about-hero p{color:#ccc;font-size:1.1rem;max-width:600px}
.about-hero .wave-container{position:absolute;bottom:0;width:100%;line-height:0}
.about-hero .wave-container svg{display:block;width:100%;height:auto}

/* Mission / Values cards */
.mission-values{
  display:grid;
  gap:25px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  padding:80px 20px;
  background:#111;
  text-align:center;
}
.mv-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:40px 25px;
  border-radius:18px;
  backdrop-filter:blur(8px);
}
.mv-card .icon{width:44px;height:44px;color:#f66;margin-bottom:15px}
.mv-card h3{color:#fff;margin-bottom:10px}
.mv-card p{color:#ccc;font-size:.95rem}

.mv-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mv-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.process-diagram {
  background: #111;
  color: #fff;
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
}

.diagram-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.dot-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.dot {
  width: 14px;
  height: 14px;
  background: #f66;
  border-radius: 50%;
}

.connector-svg {
  position: absolute;
  top: -9px; /* match dot center */
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.connector-svg line {
  stroke: #f66;
  stroke-width: 2;
}

.diagram-flow {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

.step-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  width: 22%;
  min-width: 180px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-block h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-block p {
  color: #ccc;
  font-size: 0.95rem;
}

/* CTA */
.about-cta{
  padding:70px 20px;
  background:#141414;
  text-align:center;
}
.about-cta h2{color:#fff;margin-bottom:25px;font-size:1.8rem;max-width:600px;margin-inline:auto}
/* Initial state (hidden) */
.step-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When in view */
.step-block.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .diagram-flow {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 40px;
    width: 100%;
    gap: 10px;
  }
  .connector-svg {
    display: none;
  }
  .dot-row{
    display: none;
  }

  
}



/* ================ Services page ================ */


/* ================ FAQ page ================ */

.faq-hero{
  position:relative;
  height:90vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(-45deg,#111,#191919,#141414,#1c1c1c);
  background-size:300% 300%;
  animation:gradientFlow 12s ease-in-out infinite;
}
.faq-hero h1{font-size:3rem;color:#f66;margin-bottom:10px}
.faq-hero p{color:#ccc;font-size:1.1rem;max-width:600px}
.faq-hero .wave-container{position:absolute;bottom:0;width:100%;line-height:0}
.faq-hero .wave-container svg{display:block;width:100%;height:auto}

.faq-section {
  background: #111;
  padding: 60px 20px;
}
.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  margin-bottom: 20px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  color: #fff;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #222;
  color: #aaa;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  padding: 20px;
}
.faq-question i {
  color: #f66;
  transition: transform 0.3s;
}

/* ================ FAQ page ================ */


/* ======= Contact Hero Section ======= */
.contact-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(-45deg, #0e0e0e, #181818, #111);
  background-size: 300% 300%;
  animation: gradientFlow 14s ease-in-out infinite;
}
.contact-hero h1 {
  font-size: 3.5rem;
  color: #ff5e57;
  margin-bottom: 14px;
  font-weight: 700;
}
.contact-hero p {
  color: #aaa;
  font-size: 1.2rem;
  max-width: 640px;
  line-height: 1.6;
}
.contact-hero .wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 0;
}
.contact-hero svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ======= Contact Form ======= */
form {
  max-width: 650px;
  margin: 60px auto 30px;
  padding: 30px 25px;
  background: #151515;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 102, 102, 0.05);
}
form svg{
  margin-right: 18px;
}
/* ======= Input Fields ======= */
.input-group {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.input-group i {
  color: #ff5e57;
  font-size: 3rem;
  margin-right: 12px;
  margin-top: 6px;
}
.input-group input,
.input-group textarea {
  background: transparent;
  border: none;
  color: #f0f0f0;
  font-size: 1rem;
  width: 100%;
  padding: 6px 0;
  outline: none;
}
.input-group textarea {
  min-height: 120px;
  resize: none;
}
.input-group:focus-within {
  border: 1px solid #ff5e57;
  box-shadow: 0 0 12px rgba(255, 94, 87, 0.3);
}
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #777;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.input-group input:focus::placeholder,
.input-group textarea:focus::placeholder {
  opacity: 0;
}

/* ======= Submit Button ======= */
form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(135deg, #ff5e57, #ff3d3d);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 94, 87, 0.25);
}
form button:hover {
  background: linear-gradient(135deg, #ff3d3d, #ff5e57);
  transform: translateY(-2px);
}

/* ======= CTA Section ======= */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: #121212;
  border-top: 1px solid #1f1f1f;
}
.cta h2 {
  color: #f66;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta p {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 20px;
}
.cta .btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 40px;
  background: #ff5e57;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
}
.cta .btn:hover {
  background: #ff3d3d;
}

/* ======= Toast Message ======= */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #222;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
  z-index: 100;
  box-shadow: 0 0 12px rgba(255, 94, 87, 0.2);
}
/* ======= Footer ======= */
.footer {
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  background: #0f0f0f;
  border-top: 1px solid #1c1c1c;
}
.footer a {
  color: #f66;
  text-decoration: none;
  margin-left: 6px;
}
.footer a:hover {
  text-decoration: underline;
}

/* ======= Responsive Media ======= */
@media (max-width: 660px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  form {
    padding: 24px 18px;
  }
}

/* ================ Toast ================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(2000%);
  background: #f66;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  bottom: 600px;
  pointer-events: auto;
  transform: translateX(-50%);
}

/* ================ Toast ================ */

/* ================ Projects Page ================ */

.projects-hero {
  position: relative;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(-45deg, #111, #191919, #141414, #1c1c1c);
  background-size: 300% 300%;
  animation: gradientFlow 12s ease-in-out infinite;
}
.projects-hero h1 {
  font-size: 3rem;
  color: #f66;
  margin-bottom: 10px;
}
.projects-hero p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
}
.projects-hero .wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 0;
}
.projects-hero .wave-container svg {
  display: block;
  width: 100%;
  height: auto;
}


.filter-buttons {
  text-align: center;
  margin: 30px 0;
}

.filter-buttons button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #f66;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.project-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #f66;
}

.card-content .tags {
  margin-top: 10px;
}

.tags span {
  background: #333;
  color: #f4f4f4;
  padding: 4px 10px;
  margin: 2px;
  border-radius: 6px;
  display: inline-block;
  font-size: 0.8em;
}

.card-content .btn {
  display: inline-block;
  margin-top: 15px;
  background: #f66;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.card-content .description{
  font-size: 12px;
  color: #ddd;
}

.filter-buttons,
.project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.filter-buttons.animate-in, 
.project-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 99, 71, 0.2);

}

.projects-cta {
  background: linear-gradient(135deg, #1a1a1a, #111);
  padding: 60px 30px;
  text-align: center;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(255,99,71,0.1);
}

.cta h2 {
  color: #f66;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ================ Projects Page ================ */

/* Footer */
.footer {
  background: rgba(255, 99, 71, 0.1);
  backdrop-filter: blur(8px);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 99, 71, 0.2);
}
.footer a {
  margin: 0 10px;
  color: #f66;
}
