body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f8fafc 0%, #e9eefa 100%);
  color: #232336;
}

.section {
  background: #fff;
  margin: 0 auto 4rem auto;
  padding: 3.5rem 0 2.5rem 0;
  max-width: 1100px;
  box-shadow: none;
  border-radius: 0;
  border: none;
  text-align: left;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

h2 {
  font-size: 2.3rem;
  color: #181a1b;
  margin-bottom: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 500px !important;
    margin-top: 0 !important;
    min-height: auto !important;
    padding-bottom: 5rem !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .hero-inner {
    flex-direction: column;
    padding: 2.5rem 0.5rem 1.5rem 0.5rem !important;
    min-height: 60vh;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .hero-content, .hero-photo-wrapper, .hero-photo-blob, .hero-photo {
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-title {
    font-size: clamp(1.1rem, 6vw, 1.7rem);
    line-height: 1.13;
    word-break: break-word;
    padding: 0 0.2em;
  }
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 0.2em;
    word-break: break-word;
  }
  .hero-photo-blob {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 260px;
    margin: 0 auto 1.5rem auto;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 220px;
    margin: 0 auto;
  }
  .hero-tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .btn-hero {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
  .section, .about.section, .services.section, .contact.section {
    scroll-margin-top: 120px;
  }
  #about-me {
    margin-top: 10rem;
  }
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.07);
  padding: 2rem 1.5rem;
  border: 1px solid #f0f1f3;
  color: #181a1b;
  font-size: 1.08rem;
  text-align: left;
  transition: box-shadow 0.2s, border 0.2s;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #181a1b;
}

.card strong {
  color: #38b6ff;
  font-weight: 700;
  display: block;
  margin-top: 1rem;
}

ol, ul {
  margin: 1.5rem 0 0 1.5rem;
  color: #232336;
  font-size: 1.1rem;
  text-align: left;
  display: inline-block;
}

li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.faq .card {
  margin-bottom: 1.2rem;
}

img[alt^="The Hindu Logo"],
img[alt^="Expertrec Logo"],
img[alt^="Squadcast Logo"],
img[alt^="PromptCloud Logo"],
img[alt^="Essilor Logo"],
img[alt^="Sumtracker Logo"] {
  filter: grayscale(0.2) brightness(1.1);
  opacity: 0.95;
  margin: 0 1.5rem 1.5rem 0;
  transition: filter 0.2s, opacity 0.2s;
  height: 48px;
  vertical-align: middle;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px 0 rgba(56, 182, 255, 0.07);
}
img[alt^="The Hindu Logo"]:hover,
img[alt^="Expertrec Logo"]:hover,
img[alt^="Squadcast Logo"]:hover,
img[alt^="PromptCloud Logo"]:hover,
img[alt^="Essilor Logo"]:hover,
img[alt^="Sumtracker Logo"]:hover {
  filter: none;
  opacity: 1;
  box-shadow: 0 4px 16px 0 rgba(56, 182, 255, 0.13);
}

.hero {
  min-height: 100vh;
  height: 100vh;
  background: #f5f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 4rem 0;
  text-align: left;
  animation: heroFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px 0 rgba(31, 38, 135, 0.10);
  border: 2px solid #ececf6;
  max-width: 1100px;
  width: 95%;
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 1rem 2.5rem 1rem;
  position: relative;
  overflow: hidden;
  gap: 2.5rem;
  min-height: 70vh;
}

.hero-photo-wrapper {
  order: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-blob {
  width: 290px;
  height: 290px;
  background: linear-gradient(135deg, #38b6ff 0%, #ff8e53 100%);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  box-shadow: 0 8px 40px 0 rgba(56, 182, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroBlobMorph 7s ease-in-out infinite alternate;
  position: relative;
}

@keyframes heroBlobMorph {
  0% {
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    transform: scale(1) rotate(0deg);
  }
  100% {
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    transform: scale(1.06) rotate(4deg);
  }
}

.hero-photo {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 40px 0 rgba(56, 182, 255, 0.18), 0 0 0 8px #fff;
  border: 4px solid #ececf6;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: heroPhotoAppear 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

@keyframes heroPhotoAppear {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-photo:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 16px 60px 0 rgba(56, 182, 255, 0.25), 0 0 0 12px #e9eefa;
}

.hero-content {
  order: 2;
  flex: 1 1 0;
  z-index: 2;
  min-width: 320px;
}

.hero-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-tag {
  background: #f5f6fa;
  color: #232336;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.06);
  border: 1px solid #ececf6;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #181a1b;
  margin-bottom: 1.5rem;
}

.hero-title .brand {
  font-style: italic;
  font-family: 'Georgia', serif;
  color: #3a47ff;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #6b6b7b;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero {
  border: none;
  outline: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-hero.primary {
  background: #181a1b;
  color: #fff;
}

.btn-hero.primary:hover {
  background: #3a47ff;
  color: #fff;
}

.btn-hero.secondary {
  background: #fff;
  color: #181a1b;
  border: 1.5px solid #ececf6;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.06);
}

.btn-hero.secondary:hover {
  background: #f5f6fa;
}

.hero-blob {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 520px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 60% 40%, #3a47ff 0%, #38b6ff 60%, #ff8e53 100%);
  opacity: 0.92;
  filter: blur(8px) saturate(1.2);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  animation: blobMove 12s ease-in-out infinite alternate;
}

@keyframes blobMove {
  0% {
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    transform: translateY(-50%) scale(1);
  }
  100% {
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    transform: translateY(-50%) scale(1.08);
  }
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38b6ff 0%, #ff8e53 100%);
  padding: 8px;
  box-shadow: 0 8px 40px 0 rgba(56, 182, 255, 0.18), 0 0 0 8px #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  object-fit: cover;
  animation: fancyPulse 3s infinite alternate;
}

.hero-image:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 16px 60px 0 rgba(56, 182, 255, 0.25), 0 0 0 12px #e9eefa;
}

@keyframes fancyPulse {
  0% { box-shadow: 0 8px 40px 0 rgba(56, 182, 255, 0.18), 0 0 0 8px #fff; }
  100% { box-shadow: 0 16px 60px 0 rgba(255, 142, 83, 0.18), 0 0 0 16px #e9eefa; }
}

.tagline {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #38b6ff 0%, #ff8e53 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(56, 182, 255, 0.10);
  border: none;
  letter-spacing: 1px;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
}

.hero-text {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  border: 1px solid #e3e8f0;
  max-width: 500px;
  min-width: 320px;
  text-align: center;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #38b6ff 0%, #ff8e53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.3rem;
  color: #232336;
  margin-bottom: 2.2rem;
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #38b6ff, #ff8e53 80%);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  box-shadow: 0 4px 24px rgba(56,182,255,0.13);
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff8e53, #38b6ff 80%);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
  .hero-text {
    text-align: center;
    min-width: unset;
    max-width: 100%;
    padding: 2rem 1.2rem;
  }
  .hero-image {
    width: 160px;
    height: 160px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  min-width: 210px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.07);
  border: 1px solid #f0f1f3;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.logo-text {
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 2rem !important;
}

.logo-card svg {
  width: 170px !important;
  height: 48px !important;
  max-width: 100%;
  max-height: 100%;
}

.company-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  margin: 0;
}

/* SEO ROI Calculator Styles */
.roi-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1px solid #f0f1f3;
}
.roi-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.roi-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #232336;
  display: block;
}
.roi-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #e3e8f0;
  font-size: 1.08rem;
  background: #f8fafc;
  transition: border 0.2s, box-shadow 0.2s;
}
.roi-input:focus {
  border: 1.5px solid #38b6ff;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(56, 182, 255, 0.10);
}
.roi-result {
  margin-top: 1.5rem;
  display: none;
  text-align: left;
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  font-size: 1.13rem;
  color: #232336;
  border: 1px solid #e3e8f0;
  box-shadow: 0 2px 8px 0 rgba(56, 182, 255, 0.06);
}

/* Contact Section Styles */
.contact-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1px solid #f0f1f3;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #232336;
  display: block;
}
.contact-input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #e3e8f0;
  font-size: 1.08rem;
  background: #f8fafc;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-input:focus, .contact-form textarea:focus {
  border: 1.5px solid #38b6ff;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(56, 182, 255, 0.10);
}
.contact-btn {
  background: linear-gradient(90deg, #38b6ff, #ff8e53 80%);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  box-shadow: 0 4px 24px rgba(56,182,255,0.13);
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #ff8e53, #38b6ff 80%);
  transform: translateY(-2px) scale(1.04);
}

#about-me {
  margin-top: 3rem;
}
