: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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ff-primary);
  background: var(--bg-light);
  color: var(--dark-gray);
  overflow-x: hidden;
}

.seo-wrapper {
  overflow: hidden;
}

/* ------------------- HERO SECTION ------------------- */
.seo-hero {
  position: relative;
  text-align: center;
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #ff6060, #ff2d55);
  color: #fff;
  clip-path: ellipse(140% 100% at 50% 0%);
  overflow: hidden;
}

.seo-hero h1 {
  font-size: var(--fs-xl);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.seo-hero p {
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fadeInUp 1.3s ease;
  line-height: 1.6;
}

.seo-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp 1.6s ease;
}

.seo-form input {
  padding: 12px 16px;
  width: 300px;
  max-width: 90%;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.seo-btn {
  background: white;
  color: var(--accent-light);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.seo-btn:hover {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

/* ------------------- BUBBLES ------------------- */
.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatBubble 20s infinite;
}

.bubble:nth-child(1) { width: 80px; height: 80px; left: 5%; top: 30%; }
.bubble:nth-child(2) { width: 50px; height: 50px; right: 10%; top: 40%; }
.bubble:nth-child(3) { width: 100px; height: 100px; left: 40%; bottom: 10%; }
.bubble:nth-child(4) { width: 70px; height: 70px; right: 20%; bottom: 15%; }
.bubble:nth-child(5) { width: 60px; height: 60px; left: 20%; top: 80%; }
.bubble:nth-child(6) { width: 40px; height: 40px; right: 30%; top: 70%; }

@keyframes floatBubble {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
}

/* ------------------- RESULTS ------------------- */
.seo-results {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
}

.seo-results h2 {
  font-size: var(--fs-lg);
  margin-bottom: 10px;
}

.result-card {
  margin-top: 20px;
  border: 2px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  max-width: 1000px;
  margin-inline: auto;
  box-shadow: var(--card-shadow);
}

.result-card iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 10px;
}

/* ------------------- FAQ SECTION ------------------- */
.seo-faq {
  padding: 60px 20px;
  background: var(--bg-light);
  max-width: 800px;
  margin: auto;
}

.seo-faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

details {
  background: var(--white);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

summary {
  font-weight: 600;
  font-size: var(--fs-sm);
}

details[open] {
  background: #fef6f6;
}

/* 🎯 CTA Section Styles */
.seo-cta {
  position: relative;
  background: linear-gradient(135deg, #ff3c3c, #f49c4e);
  border-radius: 25px;
  padding: 70px 30px;
  margin: 60px auto;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 58, 58, 0.2);
  max-width: 1100px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-title span {
  color: #000;
}

.cta-subtext {
  font-size: 17px;
  color: #fff;
  margin-bottom: 25px;
}

.cta-button {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background: #fff;
  color: #000;
}

/* ✨ Bubbles Animation */
.cta-bubble {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatBubble 10s infinite linear;
  z-index: 1;
}

.cta-bubble:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: -40px;
  left: 10%;
  animation-delay: 0s;
}
.cta-bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: -30px;
  left: 45%;
  animation-delay: 2s;
}
.cta-bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: -50px;
  left: 75%;
  animation-delay: 4s;
}
.cta-bubble:nth-child(5) {
  width: 50px;
  height: 50px;
  bottom: -25px;
  left: 30%;
  animation-delay: 6s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-80px) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-160px) scale(1);
    opacity: 0.3;
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 22px;
  }
  .cta-subtext {
    font-size: 15px;
  }
  .cta-button {
    font-size: 14px;
    padding: 12px 25px;
  }
}




.animated-brand-line {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.animated-brand-line span {
  display: inline-block;
  animation: floatY 3s ease-in-out infinite;
}

.animated-brand-line .emoji {
  animation-delay: 0s;
}

.animated-brand-line .heart {
  animation-delay: 0.3s;
  color: #ff4b5c;
  font-size: 1.9rem;
  animation: pulse 2s infinite;
}

.animated-brand-line .brand {
  color: #000;
  background: linear-gradient(90deg, #eeff00, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.5s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crafted-line {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.crafted-line .emoji {
  font-size: 2rem;
  animation: floatY 4s ease-in-out infinite;
}

.crafted-line .crafted,
.crafted-line .by {
  color: #000;
  font-weight: 700;
}

.crafted-line .heart {
  font-size: 1.8rem;
  color: #ff4b6e;
  animation: pulse 2s ease-in-out infinite;
}

.crafted-line .brand-gradient {
  font-weight: 700;
  background: linear-gradient(90deg, #ffe259, #ffa751);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 182, 50, 0.6);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 157, 0, 0.8);
  }
}

/* 🌟 SEO Section with Floating Circles */
.seo-services-overview {
  position: relative;
  padding: 80px 20px;
  background: var(--bg-light);
  overflow: hidden;
  z-index: 1;
  font-family: var(--ff-primary);
}

/* Main Glass Card */
.seo-glass-card {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

/* Title */
.seo-highlight-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 25px;
  line-height: 1.4;
}

.seo-highlight-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Highlight Text */
.seo-highlight-text {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--text-gray);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  text-align: left;
  max-width: 850px;
  margin-inline: auto;
}

.seo-highlight-text strong {
  color: var(--primary-orange);
  font-weight: 600;
}

.seo-highlight-text em {
  color: var(--primary-pink);
  font-style: normal;
  font-weight: 500;
}

/* Button */
.seo-glass-btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(255, 42, 85, 0.25);
}

.seo-glass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 42, 85, 0.4);
}

/* 🎈 Animated Floating Circles */
.floating-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--circle-gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: floatAround 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Different positions & animation delays */
.circle1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle2 {
  bottom: 15%;
  right: 10%;
  animation-delay: 10s;
}

.circle3 {
  top: 50%;
  left: 60%;
  animation-delay: 20s;
}

/* Keyframes for natural floating motion */
@keyframes floatAround {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) translateX(30px) rotate(15deg) scale(1.05);
  }
  50% {
    transform: translateY(-40px) translateX(-20px) rotate(30deg) scale(0.95);
  }
  75% {
    transform: translateY(-20px) translateX(20px) rotate(15deg) scale(1.02);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
}

/* Fade Animation for Card */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ------------------- FOOTER ------------------- */
.seo-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent);
}

.seo-footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ------------------- ANIMATIONS ------------------- */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 600px) {
  .seo-hero h1 {
    font-size: 2rem;
  }

  .seo-results iframe {
    height: 400px;
  }
}


: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;
}

/* Existing global styles... */

/* ------------------- FOOTER (UPDATED) ------------------- */
.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-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.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-list {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.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;
}

/* ------------------- Brand Colour picker Css ------------------- */

.color-card {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  padding: 12px;
  background-size: cover;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease;
  position: relative;
  overflow: hidden;
}

.color-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.gradient-heading {
  font-size: 2.2rem;
  background: linear-gradient(to right, #ff6a00, #ff2d55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 10px;
}

.palette-subtext {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.color-card {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  padding: 12px;
  background-size: cover;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  cursor: pointer;
}

.color-card:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.color-card::after {
  content: \"Click to Copy\";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.7rem;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px;
  border-radius: 10px;
  backdrop-filter: blur(3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

