/* ========================= */
/* HERO */
/* ========================= */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45)),
        url('../images/IMG_4506.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 200px 100px 140px 100px;
    color: white;
    overflow: hidden;
}

/* subtle animated gradient overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 40%,
        rgba(46,94,153,0.25),
        transparent 60%
    );
    pointer-events: none;
}

.hero-left {
    max-width: 650px;
    animation: fadeUp 1.2s cubic-bezier(.16,1,.3,1);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.trust-strip {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

.hero-left h1 {
    letter-spacing: -1px;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-left p {
    margin-top: 20px;
    font-size: 18px;
    color: #e4e4e4;
}

.changing-word {
    display: block;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #2E5E99;
    height: 60px;
    overflow: hidden;
    position: relative;
    transition: opacity 0.4s ease;
}

.slide-down {
    animation: slideDown 0.6s ease forwards;
}


/* ========================= */
/* NAVBAR */
/* ========================= */


.navbar {
  background: transparent !important;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(46,94,153,0.95) !important;
  backdrop-filter: blur(12px);
}

/* ========================= */
/* QUOTE BOX */
/* ========================= */


.quote-box {
    padding: 50px;
    width: 520px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(145deg, #2E5E99, #1b3e6b);
}

.quote-box h3 {
    margin-bottom: 30px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #ffffff;
}

.quote-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    font-size: 14px;
    color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.quote-form input::placeholder {
    color: rgba(255,255,255,0.75);
}

.quote-form .form-row > * {
    flex: 1;
}

/* ========================= */
/* PREMIUM QUOTE BOX */
/* ========================= */

.quote-box {
    background: linear-gradient(145deg, #2E5E99, #1f4a80);
    padding: 50px;
    width: 520px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    color: white;
    backdrop-filter: blur(20px);
}

.quote-box h3 {
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================= INPUTS ================= */

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Focus state */
.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

/* Placeholder */
.quote-form input::placeholder {
    color: rgba(255,255,255,0.8);
}

/* ================= SELECT PREMIUM ================= */

.quote-form select {
    appearance: none;
    cursor: pointer;
    padding-right: 50px;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='18' viewBox='0 0 24 24' width='18'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

/* Improve dropdown background (browser dependent) */
.quote-form select option {
    background: #1f4a80;
    color: white;
}

/* ================= EXTRA SERVICES ================= */

.extra-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin: 30px 0;
}

/* ================= CUSTOM CHECKBOX ================= */

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

/* Hide real checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom box */
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    background: transparent;
}

/* Check icon */
.checkmark::after {
    content: "✓";
    font-size: 14px;
    font-weight: bold;
    color: #2E5E99;
    transform: scale(0);
    transition: transform 0.2s ease;
}

/* Checked state */
.custom-checkbox input:checked + .checkmark {
    background: white;
}

.custom-checkbox input:checked + .checkmark::after {
    transform: scale(1);
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
    border-color: rgba(255,255,255,0.7);
}

/* ========================= */
/* ELITE CUSTOM DROPDOWN */
/* ========================= */

.custom-select {
  position: relative;
  z-index: 5;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.custom-select input {
  display: none;
}

.select-trigger {
  padding: 14px 16px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-trigger:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.custom-select.open .arrow {
  transform: rotate(-135deg);
}

/* Dropdown Panel */

.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: linear-gradient(145deg, #2E5E99, #1f4a80);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  z-index: 100;
}

.custom-select.open .select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Options */

.option {
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.option:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= SUBMIT BUTTON ================= */

.quote-box button {
    display: block;
    width: 220px;
    padding: 16px;
    border-radius: 60px;
    background: white;
    color: #2E5E99;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    margin: 30px auto 0 auto;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.quote-box button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 35px 100px rgba(0,0,0,0.45);
}

/* ========================= */
/*  STATS  */
/* ========================= */

.stats {
    padding: 70px 100px;
    background: #2E5E99;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    color: #ffffff;
    font-weight: 600;
}

.stat p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
}

/* ========================= */
/* STEPS SECTION  */
/* ========================= */

.steps-section {
    background: white;
    text-align: center;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

/* container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1300px;
    margin: 100px auto 0 auto;
    align-items: stretch;
}

/* small title */
.small-title {
    color: #2E5E99;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* divider */
.section-divider {
    width: 100px;
    height: 3px;
    background: #2E5E99;
    margin: 30px auto 100px auto;
    border-radius: 10px;
}

/* ========================= */
/* PREMIUM CARDS */
/* ========================= */

.step-card {
    background: #ffffff;
    min-height: 300px;
    padding: 80px 60px;
    border-radius: 28px;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    text-align: left;
    position: relative;
    border: 1px solid rgba(46,94,153,0.06);
    box-shadow: 
        0 25px 35px rgba(0,0,0,0.08),
        0 25px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* subtle gradient accent layer */
.step-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2E5E99, #4a7fc3);
    opacity: 0;
    transition: 0.4s ease;
}

/* hover lift */
.step-card:hover {
    transform: translateY(-14px);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.08),
        0 10px 30px rgba(46,94,153,0.08);
}

.step-card:hover::after {
    opacity: 1;
}

/* elite numbered badge */
.step-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(145deg, #2E5E99, #1f4a80);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 35px;
    box-shadow: 
        0 12px 25px rgba(46,94,153,0.35),
        inset 0 2px 4px rgba(255,255,255,0.2);
}

/* title */
.step-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #2E5E99;
}

/* paragraph */
.step-card p {
    font-size: 15px;
    line-height: 2.1;
    color: #555;
}

.steps-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.small-title {
  margin-bottom: 10px;
}

/* header line */
.steps-header h2 {
  position: relative;
  display: inline-block;
}

.steps-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2E5E99;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section {
    background: white;
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

.cta-container {
    width: 88%;
    max-width: 1200px;
    background: linear-gradient(135deg, #2E5E99, #1f4a80);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s cubic-bezier(.16,1,.3,1);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.15),
        0 50px 140px rgba(46,94,153,0.22);
}

/* subtle glow */
.cta-container::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    top: -250px;
    right: -200px;
    pointer-events: none;
}

/* TEXT */
.cta-container h3 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
    max-width: 65%;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========================= */
/* ELITE BUTTON (SAME AS BOTTOM) */
/* ========================= */

.cta-button {
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding: 14px 30px;
    border-radius: 40px;
    background: #ffffff;
    color: #2E5E99;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                box-shadow .4s cubic-bezier(.16,1,.3,1);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        0 10px 25px rgba(0,0,0,0.2);

    z-index: 2;
}

/* shine */
.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transition: left .7s ease;
}

.cta-button:hover::before {
    left: 120%;
}

/* hover lift */
.cta-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 45px 120px rgba(0,0,0,0.55),
        0 15px 40px rgba(0,0,0,0.25);
}

/* ========================= */
/* TESTIMONIAL SECTION */
/* ========================= */

.testimonials {
  padding: 140px 20px;
  text-align: center;
  background-color: #2E5E99;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: white;
  margin-bottom: 40px;
}

.google-review-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 60px;
}

.google-review-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-radius: 18px;
  background: white;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-wrapper:active {
  cursor: grabbing;
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  min-width: 360px;
  max-width: 400px;
  padding: 26px;
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-stars {
  font-size: 14px;
  color: #FFD700;
  text-align: left;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.review-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-bottom strong {
  font-size: 14px;
  color: #2E5E99;
}

.review-time {
  font-size: 12px;
  color: #888;
}

.google-icon {
  width: 22px;
}

.google-logo {
  width: 40px;
}

.google-title {
  font-weight: 600;
  font-size: 14px;
  color: #666;
}

.google-stars {
  font-size: 18px;
  font-weight: 700;
  color: #FFD700; 
}

.rating-number {
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.google-link {
  font-size: 13px;
  color: #2E5E99;
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq {
    padding: 140px 100px;
    background: #ffffff;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 24px;
    padding: 15px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #2E5E99;
}

.faq-question span {
    font-size: 22px;
    color: #2E5E99;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
}

.faq-question {
    font-weight: 600;
}

.faq-item {
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateX(5px);
}

/* ========================= */
/* SECTION LINE */
/* ========================= */

.section-line {
  width: 80px;
  height: 3px;
  background: #2E5E99;
  margin: 15px auto 40px auto;
  border-radius: 2px;
}

/* ========================= */
/* FINAL CTA */
/* ========================= */

.final-cta {
    position: relative;
    padding: 160px 100px;
    text-align: center;
    color: white;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #2E5E99 0%,
        #1f4a80 50%,
        #173a63 100%
    );

    display: flex;             
    flex-direction: column;    
    align-items: center;        
    justify-content: center;
}

/* make sure children sit above glow */
.final-cta h2,
.final-cta p,
.final-cta-btn {
    position: relative;
    z-index: 2;
}

/* heading */
.final-cta h2 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #ffffff;
}

/* paragraph */
.final-cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
    max-width: 700px;
}

/* button */
.final-cta-btn {
    display: inline-block;
    padding: 16px 70px;
    border-radius: 60px;
    background: #ffffff;
    color: #2E5E99;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                box-shadow .4s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.final-cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

/* bottom depth shadow that blends into footer */
.final-cta::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 600px;

    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.2) 40%,
        transparent 70%
    );

    pointer-events: none;
    z-index: 0;
}

/* ========================= */
/* FINAL CTA BUTTON */
/* ========================= */

.final-cta-btn {
    display: inline-block;
    cursor: pointer;
    padding: 18px 70px;
    border-radius: 60px;
    background: #ffffff;
    color: #2E5E99;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                box-shadow .4s cubic-bezier(.16,1,.3,1);

    /* Premium shadow that matches footer depth */
    box-shadow:
        0 25px 70px rgba(0,0,0,0.35),
        0 10px 25px rgba(0,0,0,0.2);
}

/* shine */
.final-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transition: left .7s ease;
}

.final-cta-btn:hover::before {
    left: 120%;
}

.final-cta-btn:hover {
    transform: translateY(-8px);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.45),
        0 15px 35px rgba(0,0,0,0.25);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    position: relative;
    background: linear-gradient(
        135deg,
        #1f4a80 0%,
        #2E5E99 50%,
        #173a63 100%
    );
    color: white;
    padding: 140px 120px 60px 120px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 500px;

    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.1) 40%,
        transparent 75%
    );

    pointer-events: none;
    z-index: 0;
}

/* subtle depth shadow at top */
.footer::after {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), transparent 70%);
}

/* ========================= */
/* FOOTER MAIN LAYOUT */
/* ========================= */

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;

    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* headings */
.footer h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* text + links */
.footer p,
.footer a {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    text-decoration: none;
    transition: all .3s ease;
}

.footer a:hover {
    color: white;
    transform: translateX(4px);
}

/* ========================= */
/* CONTACT COLUMN */
/* ========================= */

.footer-contact {
    display: flex;
    gap: 80px;
}

.contact-group {
    min-width: 200px;
}

.contact-group h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-group p {
    margin: 0;
    line-height: 1.8;
}

/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Left side */
.footer-left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

/* Right side */
.footer-right a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: .3s ease;
}

.footer-right a:hover {
    color: white;
    transform: translateX(4px);
}



