/* ===== EXISTING BASE STYLES (unchanged) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.trustedhosting-domain-interactive {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

/* Light grid background */
.trustedhosting-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridMove 50s linear infinite;
  z-index: 0;
}
@keyframes gridMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-70px,-70px); }
}

/* Layout container */
.trustedhosting-domain-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

/* Headline + typing */
.trustedhosting-domain-title {
  font-size: 48px;
  font-weight: 700;
  color: #0038a8;
  line-height: 1.25;
  margin-bottom: 25px;
  white-space: wrap;
}

.trustedhosting-typing {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  border-right: 3px solid #000;
  padding-left: 6px;
  min-width: 340px;
  overflow: hidden;
  vertical-align: bottom;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 50% { border-color: #000; }
  50%, 100% { border-color: transparent; }
}

/* Subtitle */
.trustedhosting-domain-subtitle {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 45px;
  max-width: 580px;
}

/* Search Card */
.trustedhosting-search-card {
  position: relative;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  padding: 30px 25px;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}
.trustedhosting-search-card:hover {
  box-shadow: 0 20px 45px rgba(0,105,255,0.15);
  transform: translateY(-4px);
}
.trustedhosting-domain-search {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.trustedhosting-domain-search input {
  flex: 1;
  padding: 20px 25px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #000;
}
.trustedhosting-domain-search button {
  background: linear-gradient(90deg, #0038a8, #0069ff);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.trustedhosting-domain-search button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shineSweep 5s linear infinite;
}
@keyframes shineSweep {
  0% { left: -100%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

/* TLD Badges */
.trustedhosting-domain-tlds {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.trustedhosting-domain-tlds span {
  border: 1.5px solid #0069ff;
  border-radius: 30px;
  color: #0069ff;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
  animation: floatTLD 5s ease-in-out infinite;
}
.trustedhosting-domain-tlds .glow-tld {
  box-shadow: 0 0 10px rgba(0,105,255,0.3);
  animation-delay: 1s;
}
@keyframes floatTLD {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.trustedhosting-domain-tlds span:hover {
  background: #0069ff;
  color: #fff;
}

/* Hint */
.trustedhosting-domain-hint {
  margin-top: 25px;
  color: #555;
  font-size: 15px;
}
.trustedhosting-domain-hint a {
  color: #0069ff;
  font-weight: 600;
  text-decoration: none;
}
.trustedhosting-domain-hint a:hover { text-decoration: underline; }

/* Right side card */
.trustedhosting-domain-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cardFloat 6s ease-in-out infinite alternate;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.trustedhosting-offer-card {
  position: relative;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 380px;
}
.trustedhosting-offer-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(90deg,#0038a8,#0069ff);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 10px rgba(0,105,255,0.4); }
  50% { box-shadow: 0 0 25px rgba(0,105,255,0.7); }
}
.trustedhosting-offer-card h3 {
  color: #0038a8;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.trustedhosting-offer-card p {
  color: #444;
  font-size: 16px;
  margin-bottom: 25px;
}
.trustedhosting-offer-btn {
  display: inline-block;
  background: linear-gradient(90deg,#0038a8,#0069ff);
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}
.trustedhosting-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,105,255,0.3);
}

/* ===== RESPONSIVE FIXES (ONLY ADDED BELOW) ===== */

/* Tablets and small laptops */
@media (max-width: 991px) {
  .trustedhosting-domain-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .trustedhosting-domain-title {
    font-size: 38px;
    line-height: 1.3;
  }

  .trustedhosting-typing {
    font-size: 38px;
    min-width: auto;
  }

  .trustedhosting-domain-subtitle {
    margin: 0 auto 35px;
    max-width: 90%;
  }

  .trustedhosting-domain-search {
    flex-direction: column;
    border-width: 1.5px;
  }

  .trustedhosting-domain-search input,
  .trustedhosting-domain-search button {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }

  .trustedhosting-domain-tlds {
    justify-content: center;
  }

  .trustedhosting-domain-right {
    margin-top: 40px;
    width: 100%;
  }

  .trustedhosting-offer-card {
    max-width: 90%;
  }

  .trustedhosting-domain-interactive {
    padding: 80px 0;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .trustedhosting-domain-title {
    font-size: 30px;
  }

  .trustedhosting-typing {
    font-size: 30px;
  }

  .trustedhosting-domain-search input {
    font-size: 14px;
    padding: 14px;
  }

  .trustedhosting-domain-search button {
    font-size: 14px;
    padding: 14px;
  }

  .trustedhosting-domain-subtitle {
    font-size: 16px;
  }

  .trustedhosting-domain-hint {
    font-size: 14px;
  }

  .trustedhosting-offer-card h3 {
    font-size: 20px;
  }

  .trustedhosting-offer-card p {
    font-size: 15px;
  }

  .trustedhosting-offer-btn {
    font-size: 15px;
    padding: 10px 24px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .trustedhosting-domain-container {
    padding: 0 15px;
  }

  .trustedhosting-domain-title {
    font-size: 26px;
  }

  .trustedhosting-typing {
    font-size: 26px;
  }

  .trustedhosting-domain-subtitle {
    font-size: 15px;
  }

  .trustedhosting-domain-search input,
  .trustedhosting-domain-search button {
    font-size: 14px;
    padding: 12px;
  }

  .trustedhosting-domain-tlds span {
    font-size: 13px;
    padding: 6px 14px;
  }

  .trustedhosting-offer-card {
    padding: 35px 25px;
  }
}
/* ✅ TRUSTEDHOSTING.IN - All Domain Extensions Showcase (Fully Responsive) */

.trustedhosting-domain-showcase {
  width: 100%;
  background: #fff;
  padding: 120px 0;
  font-family: 'Inter', sans-serif;
}

.trustedhosting-domain-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.trustedhosting-domain-header {
  margin-bottom: 80px;
}

.trustedhosting-domain-header h2 {
  font-size: 38px;
  color: #0038a8;
  font-weight: 800;
  margin-bottom: 15px;
}

.trustedhosting-domain-header p {
  color: #444;
  font-size: 17px;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid Layout */
.trustedhosting-domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  justify-content: center;
  align-items: start;
  margin: 0 auto;
  max-width: 1200px;
}

/* Card Design */
.trustedhosting-domain-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
}

.trustedhosting-domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0,105,255,0.15);
  border-color: rgba(0,105,255,0.25);
}

/* Featured Domain */
.trustedhosting-domain-card.featured {
  border: 2px solid #00b341;
  box-shadow: 0 0 25px rgba(0,179,65,0.15);
}

.trustedhosting-domain-card.featured a {
  background: linear-gradient(90deg, #00b341, #00e060);
}

/* Card Content */
.trustedhosting-domain-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.trustedhosting-domain-card h3 {
  color: #0038a8;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trustedhosting-domain-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 250px;
}

.trustedhosting-domain-price {
  font-weight: 700;
  color: #0038a8;
  font-size: 18px;
  margin-bottom: 25px;
}

/* CTA Button */
.trustedhosting-domain-card a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #0038a8, #0069ff);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trustedhosting-domain-card a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.trustedhosting-domain-card a:hover::before {
  left: 130%;
  opacity: 1;
}

.trustedhosting-domain-card a:hover {
  box-shadow: 0 0 25px rgba(0,105,255,0.25);
  transform: translateY(-2px);
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablets and small desktops */
@media (max-width: 1200px) {
  .trustedhosting-domain-wrapper {
    padding: 0 30px;
  }
  .trustedhosting-domain-grid {
    gap: 30px;
  }
}

/* Tablets (portrait & mid screens) */
@media (max-width: 991px) {
  .trustedhosting-domain-showcase {
    padding: 100px 0;
  }

  .trustedhosting-domain-header h2 {
    font-size: 32px;
  }

  .trustedhosting-domain-header p {
    font-size: 16px;
    max-width: 700px;
  }

  .trustedhosting-domain-grid {
    gap: 28px;
  }

  .trustedhosting-domain-card {
    padding: 35px 22px;
    min-height: 380px;
  }

  .trustedhosting-domain-card h3 {
    font-size: 20px;
  }

  .trustedhosting-domain-card p {
    font-size: 14.5px;
  }

  .trustedhosting-domain-price {
    font-size: 17px;
  }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
  .trustedhosting-domain-showcase {
    padding: 80px 0;
  }

  .trustedhosting-domain-header {
    margin-bottom: 60px;
  }

  .trustedhosting-domain-header h2 {
    font-size: 28px;
  }

  .trustedhosting-domain-header p {
    font-size: 15px;
    max-width: 90%;
  }

  .trustedhosting-domain-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
  }

  .trustedhosting-domain-card {
    min-height: 360px;
    padding: 30px 20px;
  }

  .trustedhosting-domain-card img {
    width: 70px;
    height: 70px;
  }

  .trustedhosting-domain-card h3 {
    font-size: 19px;
  }

  .trustedhosting-domain-card p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .trustedhosting-domain-price {
    font-size: 16px;
  }

  .trustedhosting-domain-card a {
    font-size: 15px;
    padding: 10px 0;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .trustedhosting-domain-showcase {
    padding: 70px 0;
  }

  .trustedhosting-domain-wrapper {
    padding: 0 20px;
  }

  .trustedhosting-domain-header h2 {
    font-size: 25px;
  }

  .trustedhosting-domain-header p {
    font-size: 14px;
  }

  .trustedhosting-domain-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trustedhosting-domain-card {
    min-height: 340px;
    padding: 28px 18px;
  }

  .trustedhosting-domain-card h3 {
    font-size: 18px;
  }

  .trustedhosting-domain-card p {
    font-size: 13.5px;
  }

  .trustedhosting-domain-price {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .trustedhosting-domain-card a {
    font-size: 14px;
    padding: 9px 0;
  }
}

/* Very small devices (≤400px) */
@media (max-width: 400px) {
  .trustedhosting-domain-header h2 {
    font-size: 22px;
  }

  .trustedhosting-domain-card {
    min-height: 320px;
  }

  .trustedhosting-domain-card h3 {
    font-size: 17px;
  }

  .trustedhosting-domain-card p {
    font-size: 13px;
  }

  .trustedhosting-domain-card img {
    width: 60px;
    height: 60px;
  }
}


/* ✅ TRUSTEDHOSTING.IN - FAQ Section (Final Responsive Version) */

.trustedhosting-faq-section {
  background: #ffffff;
  padding: 120px 0;
  font-family: 'Inter', sans-serif;
  position: relative;
}

/* Container */
.trustedhosting-faq-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.trustedhosting-faq-header {
  margin-bottom: 80px;
  text-align: center;
}

.trustedhosting-faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #0038a8;
  margin-bottom: 12px;
}

.trustedhosting-faq-subtitle {
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.trustedhosting-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  position: relative;
}

.trustedhosting-faq-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0,56,168,0.12), rgba(0,105,255,0.08));
  transform: translateX(-50%);
}

/* Columns */
.trustedhosting-faq-column {
  display: flex;
  flex-direction: column;
}

/* FAQ Cards */
.trustedhosting-faq-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(25px);
}

.trustedhosting-faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.trustedhosting-faq-item:hover {
  border-color: rgba(0,105,255,0.25);
  box-shadow: 0 12px 35px rgba(0,105,255,0.08);
  transform: translateY(-4px);
}

/* Shine effect */
.trustedhosting-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.trustedhosting-faq-item:hover::before {
  left: 130%;
}

/* Question */
.trustedhosting-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  color: #0038a8;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.trustedhosting-faq-question:hover {
  color: #0069ff;
}

.trustedhosting-faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 20px;
  color: #0069ff;
  transition: transform 0.3s ease;
}

.trustedhosting-faq-item.active .trustedhosting-faq-question::after {
  transform: rotate(45deg);
}

/* Answer */
.trustedhosting-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  background: #f9fbff;
  border-top: 1px solid rgba(0,0,0,0.05);
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.trustedhosting-faq-item.active .trustedhosting-faq-answer {
  max-height: 400px;
  padding: 20px 25px;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablets and small desktops */
@media (max-width: 991px) {
  .trustedhosting-faq-section {
    padding: 100px 0;
  }

  .trustedhosting-faq-container {
    padding: 0 30px;
  }

  .trustedhosting-faq-title {
    font-size: 30px;
  }

  .trustedhosting-faq-subtitle {
    font-size: 15px;
    max-width: 650px;
  }

  .trustedhosting-faq-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 20px;
  }

  .trustedhosting-faq-grid::before {
    display: none;
  }

  .trustedhosting-faq-column {
    width: 100%;
  }

  .trustedhosting-faq-item {
    margin-bottom: 20px;
  }

  .trustedhosting-faq-question {
    font-size: 15.5px;
    padding: 18px 20px;
  }

  .trustedhosting-faq-question::after {
    right: 20px;
    top: 18px;
  }

  .trustedhosting-faq-answer {
    font-size: 14.5px;
  }
}

/* Mobile landscape and medium phones */
@media (max-width: 768px) {
  .trustedhosting-faq-section {
    padding: 80px 0;
  }

  .trustedhosting-faq-title {
    font-size: 26px;
  }

  .trustedhosting-faq-subtitle {
    font-size: 14.5px;
    max-width: 90%;
  }

  .trustedhosting-faq-item {
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .trustedhosting-faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }

  .trustedhosting-faq-question::after {
    right: 18px;
    top: 17px;
    font-size: 18px;
  }

  .trustedhosting-faq-answer {
    font-size: 14px;
    padding: 0 18px;
  }

  .trustedhosting-faq-item.active .trustedhosting-faq-answer {
    padding: 18px;
  }
}

/* Small phones (≤576px) */
@media (max-width: 576px) {
  .trustedhosting-faq-section {
    padding: 70px 0;
  }

  .trustedhosting-faq-container {
    padding: 0 20px;
  }

  .trustedhosting-faq-title {
    font-size: 24px;
  }

  .trustedhosting-faq-subtitle {
    font-size: 14px;
  }

  .trustedhosting-faq-question {
    font-size: 14.5px;
    padding: 15px 16px;
  }

  .trustedhosting-faq-question::after {
    right: 15px;
    top: 15px;
  }

  .trustedhosting-faq-answer {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

/* Very small devices (≤400px) */
@media (max-width: 400px) {
  .trustedhosting-faq-title {
    font-size: 22px;
  }

  .trustedhosting-faq-subtitle {
    font-size: 13.5px;
  }

  .trustedhosting-faq-question {
    font-size: 14px;
  }

  .trustedhosting-faq-answer {
    font-size: 13px;
  }
}

