/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gradient: linear-gradient(90deg, #ff6a00, #ff2d55);

  --primary-orange: #ff6a00;
  --primary-pink: #ff2d55;
  --white: #ffffff;
  --black: #000000;
  --dark-gray: #1e1e1e;
  --text-gray: #4a4a4a;

  --bg-white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-footer: #1a1a1a;

  --footer-bg: #1a1a1a;
  --footer-text: #f1f1f1;
  --footer-link: #d0d0d0;
  --accent: #ff2d55;
  --accent-light: #ff6a00;
  --social-bg: #262626;

  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  --circle-gradient: radial-gradient(circle at center, #ffc0cb, #ffa07a);

  --ff-primary: 'Poppins', sans-serif;

  --fs-xl: 3rem;
  --fs-lg: 2rem;
  --fs-md: 1.2rem;
  --fs-sm: 1rem;

  --radius: 16px;
  --transition: 0.3s ease;
}

body {
  font-family: var(--ff-primary);
  background: linear-gradient(to right, #fdfdfd, #f4f4f4);
  color: var(--text-gray);
  line-height: 1.8;
  font-size: var(--fs-sm);
}

/* ================= Hero Section Start ================= */
.highlight-section {
  font-family: var(--ff-primary);
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  margin: 80px auto;
  max-width: 1000px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.highlight-section::before,
.highlight-section::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #ffa07a, #ff99bb);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}
.highlight-section::before {
  top: -40px;
  left: -40px;
}
.highlight-section::after {
  bottom: -40px;
  right: -40px;
}

.highlight-section .small-heading {
  font-size: 16px;
  color: var(--primary-pink);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.highlight-section .big-heading {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px 0 30px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.highlight-section .description {
  font-size: 18px;
  color: #333;
  max-width: 720px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.highlight-section .cta-button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  z-index: 1;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 108, 108, 0.3);
}

.highlight-section .cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
/* ================= Hero Section End ================= */

.container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.content-box {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.content-box::before,
.content-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--circle-gradient);
  opacity: 0.3;
  z-index: 0;
}

.content-box::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.content-box::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  right: -40px;
  opacity: 0.25;
}

/* Headings */
h1 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-gray);
  padding-bottom: 10px;
  border-bottom: 4px solid var(--primary-orange);
  position: relative;
  z-index: 1;
}

h2 {
  font-size: var(--fs-lg);
  color: var(--accent);
  margin-top: 40px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-light);
  margin-top: 6px;
  border-radius: 3px;
}

/* Text */
p,
li {
  font-size: var(--fs-sm);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

ul {
  margin-left: 20px;
  padding-left: 10px;
  list-style: disc;
}

ul li {
  list-style-type: disc;
}

/* Footer: Remove bullets for lists */
.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 0;
}

/* Remove social icon list bullets */
.social-list {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.social-list li {
  list-style: none !important;
}

.social-list li::marker {
  display: none;
}

/* Date */
.date {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  padding: 12px 24px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(255, 108, 108, 0.2);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* === Footer === */
.footer {
  background: var(--footer-bg);
  padding: 90px 20px 50px;
  margin-top: 100px;
  border-top: 1px solid #333;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 80px 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--footer-text);
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 0 0 80px 80px;
  z-index: -1;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 26px;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand .logo:hover {
  color: var(--accent-light);
}

.footer-text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--footer-link);
  line-height: 1.8;
}

.footer-list-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-link {
  display: inline-block;
  font-size: 15px;
  color: var(--footer-link);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

.social-link {
  font-size: 18px;
  color: var(--accent);
  background: var(--social-bg);
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 193, 119, 0.15);
}

.social-link ion-icon {
  font-size: 22px;
}

.social-link:hover {
  background: var(--accent);
  color: #1a1a1a;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(246, 193, 119, 0.3);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding-top: 25px;
  border-top: 1px solid #333;
}
