/* ===== Base ===== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #fff, #fef5f5, #faf0e6);
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.main-header {
  width: 100%;
  padding: 15px 30px;
  background: #c62828;
  border-bottom: 3px solid #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.main-header .brand {
  font-size: 20px;
  font-weight: 700;
  color: #ffd700;
}
.main-header .tagline {
  font-size: 14px;
  color: #fff;
}

/* ===== Welcome Container ===== */
.welcome-container {
  text-align: center;
  width: 100%;
  padding: 140px 20px 60px;
  flex: 1;
}

/* ===== Animations ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
.delay { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }

/* ===== Logos - Fully Responsive (Best Version) ===== */
/* TOP LOGOS – FORCE 80–95px ON MOBILE, 6 logos always fit perfectly */
.top-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;                    /* Tight but clean spacing */
  margin-bottom: 50px;
  padding: 0 12px;
  width: 100%;
}

/* Desktop: 150px */
.logo-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #c62828;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  animation: float 4s ease-in-out infinite;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex-shrink: 0;               /* Prevent shrinking */
}

.logo-circle img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  background: white;
}

/* MOBILE: FORCE 80–95px range (you asked for this exact size) */
@media (max-width: 768px) {
  .logo-circle {
    width: 92px !important;     /* You get 80–95px range */
    height: 92px !important;
    min-width: 92px !important;
    min-height: 92px !important;
  }
  .top-logos {
    gap: 14px;
    justify-content: space-between;   /* Forces perfect fit */
  }
}

/* Extra small phones — still 80–85px */
@media (max-width: 480px) {
  .logo-circle {
    width: 84px !important;
    height: 84px !important;
  }
  .top-logos { gap: 12px; }
}

@media (max-width: 360px) {
  .logo-circle {
    width: 80px !important;
    height: 80px !important;
  }
  .top-logos { gap: 10px; }
}

/* ===== Title Section ===== */
.title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.side-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
}
.side-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-text {
  max-width: 650px;
  text-align: center;
}
.title-text h1 {
  margin: 12px 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}
.title-text h2 {
  margin: 0;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}
.title-text .highlight {
  color: #c62828;
  font-size: 32px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(198,40,40,0.6);
  border-bottom: 4px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}

/* ===== Button ===== */
.get-started-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #c62828;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  border: 3px solid #d4af37;
  box-shadow: 0 10px 30px rgba(198,40,40,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.get-started-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(198,40,40,0.8), 0 0 15px #ffd700;
}

/* ===== Footer ===== */
.main-footer {
  background: #c62828;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  border-top: 3px solid #d4af37;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
}
.main-footer p { margin: 0; }

/* ===== Responsive Title Section ===== */
@media (max-width: 768px) {
  .title-section { flex-direction: column; gap: 30px; }
  .side-logo { width: 90px; height: 90px; }
  .title-text h1 { font-size: 22px; }
  .title-text .highlight { font-size: 26px; }
}