* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ================= HEADER WRAPPER ================= */
header { width: 100%; position: sticky; top: 0; z-index: 999; backdrop-filter: blur(12px);
        background: linear-gradient(90deg, rgba(1, 14, 79, 0.9), rgb(51, 108, 242));
        box-shadow: 0 4px 15px rgba(255, 182, 36, 0.8); animation: slideDown 0.8s ease-in-out;
     }
.nav-inner { max-width: 1200px; margin: auto; display: flex; align-items: center; 
       justify-content: space-between; padding: 12px 25px; }
.brand { display: flex; align-items: center; gap: 20px; }
.logo img { border-radius: 50px; width: 70px;
       height: auto; animation: glowChange 5s infinite alternate ease-in-out;
}
@keyframes glowChange {
  0%   { filter: drop-shadow(0 4px 10px rgba(46, 255, 60, 0.9)); }
  20%  { filter: drop-shadow(0 4px 12px rgba(255, 180, 29, 0.9)); }
  40%  { filter: drop-shadow(0 4px 12px rgb(255, 245, 105)); }
  60% { filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9)); }
  80%   { filter: drop-shadow(0 4px 10px rgb(255, 255, 255)); }
  100%  { filter: drop-shadow(0 4px 12px rgba(255, 180, 29, 0.9)); }
  }
.brand-name { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; color: #f7c886; text-transform: uppercase; animation: fadeInLeft 1s ease forwards;  }
.brand-tagline { font-size: 1.5rem; color: #ffffff; font-weight: 500; letter-spacing: 0.5px; animation: fadeInLeft 1.2s ease forwards; }
nav ul { display: flex; list-style: none; gap: 22px; }
nav ul li a {transition: 0.3s; text-decoration: none; font-size: 0.95rem; font-weight: 600; color: #ffffff; padding: 8px 5px; position: relative; transition: 0.3s ease; }
nav ul li a:hover { color:#ffffff;background-color:#d06d04;border-radius: 10px;
      font-size:20px; translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8); animation: slideDown 0.8s ease-in-out; }

/* CTA Button */
nav ul li a.cta { background: #ea9307; color: white !important; padding: 8px 16px; border-radius: 25px; transition: 0.3s ease; box-shadow: 0 5px 12px rgba(255, 107, 107, 0.4); }
nav ul li a.cta:hover { background: #ff3b3b; transform: translateY(-3px); box-shadow: 0 7px 18px rgba(255, 107, 107, 0.5); }

/* ================= HAMBURGER ================= */

/* ===== HAMBURGER BUTTON ===== */
.hambtn {
  display: none;
  font-size: 1.9rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;  /* Change to your header text color */
  transition: 0.3s;
}

.hambtn:hover {
  transform: rotate(90deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {

  nav ul {
    position: absolute;
    top: 80px;
    right: -250px;  /* hidden by default */
    width: 220px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  nav ul.showMenu {
    right: 0;  /* slide in */
    background-color: rgb(3, 3, 80);
  }

  .hambtn {
    display: block;
  }

  nav ul li {
    margin: 10px 0;
    animation: fadeInLeft 0.4s ease;
  }
}

/* ===== Animation ===== */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
/* ----------------------------------------
   HERO SECTION — PREMIUM MODERN DESIGN
-----------------------------------------*/
/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  width: 100%;
  padding: 150px 20px;
  background: linear-gradient(135deg, #0044aa, #006d9c, #00b7ff);
  color: #fff;
  overflow: hidden;
}

/* Floating Bubbles Background */
.floating-bubbles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: rise 8s linear infinite;
  filter: blur(1px);
}

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(-600px) scale(1.8); opacity: 0; }
}

/* Text / Title */
.hero-title {
  font-size: 3.7rem;
  line-height: 1.3;
  font-weight: 700;
  animation: fadeIn 1.5s ease;
  text-align: center;
}

.highlight {
  background: linear-gradient(90deg, #ffdd55, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-top: 15px;
  opacity: 0.92;
  animation: fadeIn 2.2s ease;
  text-align: center;
}

/* Buttons */

.button {
  display: flex;
  justify-content: flex-end;   /* Align to right */
  align-items: right ;
   margin-bottom: 0px;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: 0.3s ease-in-out;
}

.joinbtn {
  background: #00eaff;
}

.joinbtn:hover {
  background: #ffffff;
  color: #fdfeff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.4);
}

.donate-btn {
  background: #ff9900;
}

.donate-btn:hover {
  background: #ffcc00;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255,204,0,0.5);
}

/* Counters */
.counters {
  margin-top: 80px;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.counter-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.counter {
  font-size: 2.5rem;
  color: #0077cc;
  font-weight: 800;
}

/* Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ================= KNOWLEDGE FLOATING BUBBLES ================= */
.knowledge-bubble {
  position: absolute;
  font-size: 1rem;
  color: #ffffff;
  opacity: 0;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);

  animation: riseBubble linear infinite;
  pointer-events:painted;

  /* Financial glow color */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 15px rgba(0, 190, 255, 0.4);
}

@keyframes riseBubble {
  0% {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-180px) scale(1.2);
    opacity: 0;
  }
}





/* ======================================================
   ABOUT SECTION
/* ================== ABOUT SECTION ================== */
#about {
  background: linear-gradient(135deg, #00152a, #0073e6); 
  padding: 80px 20px; overflow: hidden; position: relative;
}
#about2 { color: #ffd85a; }
.about-container { display: flex; flex-wrap: wrap; align-items: center; max-width: 1200px; margin: auto; gap: 40px; }
.about-text { flex: 1 1 500px; animation: fadeSlideLeft 1.2s ease forwards; }
.about-text h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; position: relative; }
.about-text h2::after { content:''; width:400px; height:4px; background:#ffd85a; display:block; margin-top:8px; border-radius:2px; }
.about-text p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 25px; color: rgba(255,255,255,0.9); text-align: justify; }
.highlight-text { color:#ffd85a; font-weight:600;text-decoration: blanchedalmond;  }
.btn-about { display:inline-block; padding:12px 28px; background:#ffd85a; color:#004080; font-weight:600; border-radius:50px; transition:0.3s; }
.btn-about:hover { transform: scale(1.1); background: #fff4c7; }
.about-image { flex: 1 1 500px; overflow:hidden; border-radius:20px; box-shadow:0 20px 50px rgba(0,0,0,0.3); animation: fadeSlideRight 1.5s ease forwards; }
.about-image img { width:100%; border-radius:20px; transition: transform 0.5s ease, filter 0.5s ease; }
.about-image img:hover { transform: scale(1.05) rotate(-1deg); filter: brightness(1.1); }
@keyframes fadeSlideLeft { 0% { opacity:0; transform:translateX(-50px); } 100% { opacity:1; transform:translateX(0); } }
@keyframes fadeSlideRight { 0% { opacity:0; transform:translateX(50px); } 100% { opacity:1; transform:translateX(0); } }


/* ======================================================
   GLOBAL ANIMATIONS & EFFECTS
======================================================= */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatShimmer {
  0% { opacity: .4; transform: translateX(-20px); }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0px rgba(0, 180, 255, 0.3); }
  50% { box-shadow: 0 0 16px rgba(0, 180, 255, 0.6); }
  100% { box-shadow: 0 0 0px rgba(0, 180, 255, 0.3); }
}

/* Titles – animated underline */
.content-section h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 25px;
  animation: fadeUp 1s ease forwards;
}

.content-section h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #00baff, #00ff88);
  border-radius: 50px;
  animation: underlineGrow 1.2s forwards;
}

@keyframes underlineGrow {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===== VISION CARD STYLES ===== */
.card {
  background: linear-gradient(135deg, #ffffff, #febe65, #ff9f06, #ffde7d, #ffffff);
  padding: 40px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #c82505, #febe65, #ffde7d);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.card:hover::before {
  opacity: 0.85;
}

.card h2 {
  font-size: 2.2rem;
  color: #0d3b66;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #f95738, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.card p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card:hover p {
  color: #901a02;
}

/* Optional: Add a subtle background pattern */
.card::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,159,28,0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ===== HORIZONTAL TESTIMONIAL CAROUSEL ===== */
.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px 0;
}

/* Track slides horizontally */
.slides-track {
  display: flex;
  gap: 20px;
  animation: slideLoop 20s linear infinite;
}

/* Each slide */
.slide {
  flex: 0 0 300px;
  background: #f7f9fc;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.slide p {
  font-style: italic;
  margin-bottom: 10px;
  color: #003366;
}

.slide h4 {
  font-weight: bold;
  color: #005fa3;
  font-size: 0.95rem;
}

/* Continuous sliding animation */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width:768px){
  .slide {
    flex: 0 0 90%;
  }
}
/* ===== JOIN FORM ===== */
.join-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
.join{
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #004080;
}

.join-form input,
.join-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.join-form button {
  padding: 12px;
  border: none;
  background: #004080;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.join-form button:hover {
  background: #003366;
}

/* ===== TARGET GROUP SECTION ===== */
.target {
 /* background: linear-gradient(135deg, #000203, #054df6, #ffa908);*/
   background: linear-gradient(135deg,
    #ff0000,   /* Red */
    #000000,   /* Orange */
    #0000ff   /* Blue */
     );
  background-size: 400% 400%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
  color: white;
  text-align: left;
  animation: gradientMove 8s ease infinite, fadeInUp 1.2s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow/Dimming Light Effect */
.target::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: dimLight 6s infinite ease-in-out;
  pointer-events: none;
}

/* Text Styling */
.target h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.target ul {
  list-style: none;
  padding: 0;
}

.target li {
  font-size: 1.1rem;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 15px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target li:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* === Hover Effect on Whole Box === */
.target:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.3);
}

/* === Gradient Animation === */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Dim Light Pulse === */
@keyframes dimLight {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .target {
    padding: 25px;
  }
 .target .targetg {
    color:white
  }
  .target h2 {
    font-size: 1.8rem;
  }

  .target li {
    font-size: 1rem;
  }
}
/* ===== CARDS ===== */
.card1 {
  background: #f48906;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* ================= SERVICES SECTION ================= */
.services {
  padding: 80px 20px;
  background: #f7f9fc;
}

.services-header h2 {
  font-size: 2.8rem;
  color: #0d3b66;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.services-header h3 {
  font-size: 1.6rem;
  color: #f95738;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===== IMAGE STYLING ===== */
.service-img {
  overflow: hidden;
  height: 200px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1) rotate(-1deg);
}

/* ===== INFO ===== */
.service-info {
  padding: 1.5rem 1rem 2rem;
}

.service-info h3 {
  color: #0d3b66;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card:hover .service-info h3 {
  color: #f95738;
}

.service-info p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-card:hover .service-info p {
  color: #ff9f1c;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2.4rem;
  }
  .services-header h3 {
    font-size: 1.4rem;
  }
}
/* ===== DONATE STYLES ===== */

/* ===== DONATE SECTION ===== */
#donate {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #eef3ff, #f7faff);
  text-align: center;
  animation: fadeIn 1.2s ease;
}

#donate h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #036efa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* GRID */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 900px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }
}

/* CARDS */
.donate-card,
.donate-summary {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.3s;
}

.donate-card:hover,
.donate-summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* LABEL */
label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-top: 1rem;
  color: #333;
}

/* INPUTS & SELECT */
input[type="text"],
input[type="email"],
input[type="number"],
select {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem;
  border: 1px solid #cfd7e0;
  border-radius: 12px;
  font-size: 1rem;
  background: #fdfdfd;
  transition: border 0.25s, box-shadow 0.25s;
}

input:focus,
select:focus {
  border-color: #036efa;
  box-shadow: 0 0 0 3px rgba(3,110,250,0.18);
  outline: none;
}

/* PRESET AMOUNT BUTTONS */
.amount-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.preset {
  flex: 1;
  padding: 0.9rem;
  background: #036efa;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.preset:hover {
  background: #004bbf;
  transform: translateY(-2px);
}

#customAmount {
  flex: 1.3;
}

/* CHECKBOX */
input[type="checkbox"] {
  margin-right: 6px;
  transform: scale(1.2);
}

/* ACTION BUTTONS */
.form-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.joinbtn,
.donate-btn {
  flex: 1;
  padding: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;

}

.joinbtn {
  background: #036efa;
  color: #fff;
}

.joinbtn:hover {
  background: #004bbf;
  transform: scale(1.03);
}

.donate-btn {
  background: #ffb803;
  color: #ffffff;
}

.donate-btn:hover {
  background: #aaa;
  transform: scale(1.03);
}

/* SUMMARY COLUMN */
.donate-summary h3 {
  font-size: 1.6rem;
  color: #036efa;
  margin-bottom: 1rem;
}

.qr-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 2px dashed #036efa;
  border-radius: 12px;
}

.qr-box img {
  width: 150px;
  display: block;
  margin: 1rem auto;
}

/* BANK DETAILS */
#bankDetails h4 {
  margin-top: 1rem;
  color: #036efa;
  font-size: 1.4rem;
}

/* MUTED TEXT */
.muted {
  color: #666;
  font-size: 0.9rem;
}

.small {
  font-size: 0.85rem;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SOCIAL ICONS ===== */
.social{
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
}
.social-icons {
  display: flex;
  justify-content:right;
  flex-wrap: wrap;
  gap: 15px;
  size: 10px;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* ===== FOOTER ===== */
footer {
  background: #004080;
  color: #ffffff;
  padding: 25px 20px;
  text-align: center;
}

footer .phone-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

footer .phone-item {
  margin: 5px 10px;
  color: #ffd85a;
}