@keyframes moveGrid {
  0% { background-position:0 0, 0 0; }
  100% { background-position:60px 60px, 60px 60px; }
}

.grid-bg {
  position:absolute; 
  inset:0; 
  z-index:0;
  background-image:
    linear-gradient(to right, rgba(0,87,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,87,255,0.08) 1px, transparent 1px);
  background-size:60px 60px;
  animation:moveGrid 20s linear infinite;
}

.hero-container {
  position:relative; 
  z-index:2;
  max-width:1300px; 
  margin:0 auto;
  display:flex; 
  flex-wrap:wrap;
  align-items:center; 
  justify-content:space-between;
  gap:60px;
  padding:0 20px;
  box-sizing: border-box;
}

.text-area {
  flex:1 1 500px; 
  padding:20px;
  box-sizing: border-box;
}

.text-area h1 {
  font-size:3.6rem; 
  font-weight:800;
  line-height:1.2; 
  color:#0f172a;
  margin-bottom:30px; 
  letter-spacing:-0.5px;
}

.text-area p {
  font-size:1.2rem; 
  color:#374151;
  line-height:1.6; 
  margin-bottom:40px;
  max-width:100%;
}

.button-group { 
  display:flex; 
  flex-wrap:wrap; 
  gap:20px; 
}

.btn {
  text-decoration:none; 
  border-radius:8px;
  font-size:1.1rem; 
  font-weight:600;
  padding:15px 40px; 
  transition:all 0.3s ease;
  display:inline-block;
  text-align:center;
  border:none;
  cursor:pointer;
}

.btn-primary {
  background:#0057ff; 
  color:#fff;
  box-shadow:0 4px 12px rgba(0,87,255,0.25);
}

.btn-primary:hover {
  background:#0048d4; 
  box-shadow:0 6px 16px rgba(0,87,255,0.28);
  transform:translateY(-2px);
}

.btn-outline {
  border:2px solid #0057ff; 
  color:#0057ff; 
  background:transparent;
}

.btn-outline:hover {
  background:#0057ff; 
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(0,87,255,0.22);
}

.image-area {
  flex:1 1 400px;
  position:relative;
  padding:20px; 
  text-align:center;
  display:flex; 
  align-items:center; 
  justify-content:center;
  box-sizing: border-box;
}

.image-area img {
  width:100%;
  max-width:500px;
  height:auto;
  border-radius:12px;
  display:block;
  object-fit:cover;
}

.badge {
  position:absolute;
  background:#0057ff; 
  color:#fff;
  font-weight:600; 
  font-size:0.9rem;
  padding:8px 16px; 
  border-radius:6px;
  top:10%; 
  left:5%;
  white-space:nowrap;
}

.badge-dark {
  position:absolute;
  background:#0f172a; 
  color:#fff;
  font-weight:600; 
  font-size:0.9rem;
  padding:8px 16px; 
  border-radius:6px;
  bottom:10%; 
  right:5%;
  white-space:nowrap;
}

.sub-info {
  max-width:1200px; 
  margin:60px auto 0 auto;
  text-align:center;
  padding:0 20px;
  box-sizing: border-box;
}

.sub-info p {
  font-size:1.1rem; 
  color:#1e293b;
  font-weight:500; 
  margin-bottom:10px;
  line-height:1.6;
}

.sub-info a { 
  color:#0057ff; 
  text-decoration:none; 
  font-weight:600;
}

/* Tablet */
@media (max-width: 1024px){
  .hero-container{
    gap:40px;
    padding:0 30px;
  }
  
  .text-area h1{
    font-size:2.8rem;
  }
  
  .text-area p{
    font-size:1.1rem;
  }
  
  .btn{
    padding:12px 30px;
    font-size:1rem;
  }
}

/* Mobile */
@media (max-width: 768px){
  .hero-container{
    flex-direction:column;
    text-align:center;
    gap:30px;
    padding:0 20px;
  }
  
  .text-area{
    flex:1 1 100%;
    padding:10px;
  }
  
  .text-area h1{
    font-size:2.2rem;
    margin-bottom:20px;
  }
  
  .text-area p{
    font-size:1rem;
    margin-bottom:30px;
  }
  
  .button-group{
    justify-content:center;
    gap:15px;
  }
  
  .btn{
    padding:12px 25px;
    font-size:0.9rem;
    min-width:140px;
  }
  
  .image-area{
    flex:1 1 100%;
    padding:10px;
  }
  
  .image-area img{
    max-width:100%;
  }
  
  .badge{
    top:5%;
    left:50%;
    transform:translateX(-50%);
  }
  
  .badge-dark{
    bottom:5%;
    right:50%;
    transform:translateX(50%);
  }
  
  .sub-info{
    margin:40px auto 0 auto;
  }
  
  .sub-info p{
    font-size:1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px){
  .hero-container{
    padding:0 15px;
  }
  
  .text-area h1{
    font-size:1.8rem;
  }
  
  .text-area p{
    font-size:0.9rem;
  }
  
  .button-group{
    flex-direction:column;
    align-items:center;
  }
  
  .btn{
    width:100%;
    max-width:200px;
  }
  
  .badge,
  .badge-dark{
    font-size:0.8rem;
    padding:6px 12px;
  }
}

/* ===============================================================
   TrustedHosting.in - Contact Form Type 1 (Fully Responsive)
   =============================================================== */

.trustedhosting-contact-type1 {
  background: #fff;
  padding: 80px 20px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #1b1f29;
}

.trustedhosting-contact-type1 .th1-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid #e3e7ef;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.trustedhosting-contact-type1 .th1-form {
  padding: 60px;
}

.trustedhosting-contact-type1 .th1-header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trustedhosting-contact-type1 .th1-subtitle {
  color: #5a616d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.trustedhosting-contact-type1 .th1-subtitle a {
  color: #0057ff;
  text-decoration: none;
}

.trustedhosting-contact-type1 .th1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trustedhosting-contact-type1 .th1-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.trustedhosting-contact-type1 .th1-full {
  grid-column: 1 / -1;
}

.trustedhosting-contact-type1 label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.trustedhosting-contact-type1 input,
.trustedhosting-contact-type1 select,
.trustedhosting-contact-type1 textarea {
  border: 1px solid #e3e7ef;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

.trustedhosting-contact-type1 input:focus,
.trustedhosting-contact-type1 select:focus,
.trustedhosting-contact-type1 textarea:focus {
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
  outline: none;
}

.trustedhosting-contact-type1 .th1-btn {
  background: #0057ff;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.trustedhosting-contact-type1 .th1-btn:hover {
  background: #0044cc;
}

.trustedhosting-contact-type1 #th1Status {
  margin-top: 16px;
  font-weight: 600;
}

/* Right Panel */
.trustedhosting-contact-type1 .th1-info {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  border-left: 1px solid #e3e7ef;
  padding: 60px;
}

.trustedhosting-contact-type1 .th1-info-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.trustedhosting-contact-type1 .th1-tagline {
  color: #5a616d;
  font-size: 0.95rem;
  margin: 4px 0 32px 0;
}

.trustedhosting-contact-type1 .th1-info-card {
  border: 1px solid #e5e9f2;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 24px;
  padding: 20px 24px;
  transition: box-shadow 0.25s ease;
}
.trustedhosting-contact-type1 .th1-info-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.trustedhosting-contact-type1 .th1-bar {
  width: 4px;
  height: 18px;
  background: #0057ff;
  border-radius: 2px;
  margin-right: 10px;
}

.trustedhosting-contact-type1 .th1-info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}

.trustedhosting-contact-type1 .th1-info-card p {
  color: #4f5a69;
  font-size: 0.95rem;
  line-height: 1.6;
}

.trustedhosting-contact-type1 .th1-label {
  font-weight: 600;
  color: #1b1f29;
}

.trustedhosting-contact-type1 .th1-highlight {
  border: 1px solid #dfe6f0;
  background: #f3f6fb;
}

.trustedhosting-contact-type1 .th1-disclaimer {
  font-size: 0.9rem;
  color: #49525e;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .trustedhosting-contact-type1 .th1-wrapper {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .trustedhosting-contact-type1 .th1-form,
  .trustedhosting-contact-type1 .th1-info {
    padding: 36px 28px;
  }
  .trustedhosting-contact-type1 .th1-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trustedhosting-contact-type1 .th1-header h1 {
    font-size: 1.6rem;
  }
  .trustedhosting-contact-type1 .th1-btn {
    width: 100%;
    padding: 14px;
  }
}



  /* =============================================================
     TrustedHosting.in - Verification & Trust Policy (Type 4 Executive White)
     ============================================================= */

  .trustedhosting-verification-policy {
    background: #ffffff;
    padding: 140px 20px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1b1f29;
    position: relative;
  }

  .trustedhosting-verification-policy .thv-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Header */
  .trustedhosting-verification-policy .thv-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
  }

  .trustedhosting-verification-policy .thv-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1b1f29;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
  }

  .trustedhosting-verification-policy .thv-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0057ff;
    margin: 14px auto 0 auto;
    border-radius: 2px;
  }

  .trustedhosting-verification-policy .thv-header p {
    color: #4f5a69;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
  }



  /* Badges Row */
  .trustedhosting-verification-policy .thv-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 70px auto 100px auto;
  }

  .trustedhosting-verification-policy .thv-badges img {
    height: 52px;
    filter: grayscale(1);
    opacity: 0.85;
    transition: all 0.35s ease;
    transform: scale(0.98);
  }

  .trustedhosting-verification-policy .thv-badges img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
  }

  /* Grid */
  .trustedhosting-verification-policy .thv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
  }

  /* Card Base */
  .trustedhosting-verification-policy .thv-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7ebf3;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  /* Soft reflective overlay */
  .trustedhosting-verification-policy .thv-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .trustedhosting-verification-policy .thv-card:hover::before {
    opacity: 1;
  }

  .trustedhosting-verification-policy .thv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  }

  /* Card Top Accent */
  .trustedhosting-verification-policy .thv-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0057ff, #0a84ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .trustedhosting-verification-policy .thv-card:hover::after {
    transform: scaleX(1);
  }

  /* Content */
  .trustedhosting-verification-policy .thv-card-content {
    padding: 48px 42px;
    text-align: left;
    position: relative;
    z-index: 2;
  }

  .trustedhosting-verification-policy .thv-card-content h3 {
    color: #0057ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .trustedhosting-verification-policy .thv-card-content p {
    color: #4f5a69;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .trustedhosting-verification-policy .thv-card-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .trustedhosting-verification-policy .thv-card-content ul li {
    border-top: 1px solid #f3f3f3;
    padding: 8px 0;
    font-size: 0.96rem;
    color: #1b1f29;
    transition: color 0.3s ease;
  }

  .trustedhosting-verification-policy .thv-card-content ul li:first-child {
    border-top: none;
  }

  .trustedhosting-verification-policy .thv-card-content ul li:hover {
    color: #0057ff;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .trustedhosting-verification-policy {
      padding: 90px 18px;
    }

    .trustedhosting-verification-policy .thv-header h2 {
      font-size: 2rem;
    }

    .trustedhosting-verification-policy .thv-card-content {
      padding: 36px 28px;
    }

    .trustedhosting-verification-policy .thv-badges img {
      height: 44px;
    }
  }
  


  /* =============================================================
     TrustedHosting.in - Client Assurance & Infrastructure Reliability (Type 2)
     Split Layout - Corporate Visual Style
     ============================================================= */

  .trustedhosting-assurance-type2 {
    background: #ffffff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1b1f29;
    padding: 140px 20px;
    position: relative;
  }

  .trustedhosting-assurance-type2 .tha2-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* Left Content */
  .trustedhosting-assurance-type2 .tha2-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1b1f29;
  }

  .trustedhosting-assurance-type2 .tha2-content p {
    font-size: 1.05rem;
    color: #4f5a69;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  .trustedhosting-assurance-type2 .tha2-list {
    list-style: none;
    padding-left: 0;
  }

  .trustedhosting-assurance-type2 .tha2-list li {
    position: relative;
    font-size: 1rem;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #1b1f29;
  }

  .trustedhosting-assurance-type2 .tha2-list li::before {
    content: "•";
    color: #0057ff;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* Right Cards */
  .trustedhosting-assurance-type2 .tha2-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .trustedhosting-assurance-type2 .tha2-card {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .trustedhosting-assurance-type2 .tha2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  }

  .trustedhosting-assurance-type2 .tha2-card h3 {
    font-size: 2rem;
    color: #0057ff;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .trustedhosting-assurance-type2 .tha2-card p {
    color: #4f5a69;
    font-size: 0.95rem;
  }

  /* Mobile Responsive */
  @media (max-width: 992px) {
    .trustedhosting-assurance-type2 .tha2-container {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .trustedhosting-assurance-type2 .tha2-right {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .trustedhosting-assurance-type2 .tha2-right {
      grid-template-columns: 1fr;
    }
  }
  


  /* =============================================================
     TrustedHosting.in - Customer Reviews + Verified Reviews (Corporate White)
     ============================================================= */

  .trustedhosting-google-review-bar {
    background: #ffffff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    padding: 120px 20px;
    text-align: center;
    color: #1b1f29;
  }

  .trustedhosting-google-review-bar .thr-bar-container {
    max-width: 1150px;
    margin: 0 auto;
  }

  .trustedhosting-google-review-bar h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1b1f29;
    margin-bottom: 18px;
  }

  .trustedhosting-google-review-bar h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #0057ff;
    margin: 14px auto 0 auto;
    border-radius: 2px;
  }

  .trustedhosting-google-review-bar p {
    color: #4f5a69;
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .trustedhosting-google-review-bar .google-review-logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trustedhosting-google-review-bar .google-review-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
  }

  .trustedhosting-google-review-bar .google-review-logo img:hover {
    transform: scale(1.04);
  }

  .trustedhosting-google-review-bar .review-rating {
    font-size: 1.2rem;
    color: #1b1f29;
    font-weight: 600;
  }

  .trustedhosting-google-review-bar .review-stars {
    color: #f7b500;
    font-weight: 800;
    margin-left: 6px;
  }

  .trustedhosting-google-review-bar .review-count {
    color: #4f5a69;
    font-size: 0.95rem;
    margin-top: 4px;
  }

  /* Reviews Grid */
  .trustedhosting-google-review-bar .review-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    text-align: left;
  }

  .trustedhosting-google-review-bar .review-card {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 38px 32px;
    transition: all 0.3s ease;
  }

  .trustedhosting-google-review-bar .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .trustedhosting-google-review-bar .review-card .reviewer {
    font-weight: 700;
    color: #1b1f29;
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .trustedhosting-google-review-bar .review-card .meta {
    color: #4f5a69;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .trustedhosting-google-review-bar .review-card .stars {
    color: #f7b500;
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .trustedhosting-google-review-bar .review-card .text {
    color: #1b1f29;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .trustedhosting-google-review-bar .review-card .verified {
    font-size: 0.85rem;
    color: #0057ff;
    font-weight: 600;
  }

  .trustedhosting-google-review-bar .review-card .verified::before {
    content: "✓ ";
    font-weight: bold;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .trustedhosting-google-review-bar {
      padding: 100px 18px;
    }

    .trustedhosting-google-review-bar h2 {
      font-size: 2rem;
    }

    .trustedhosting-google-review-bar .google-review-logo img {
      height: 50px;
    }
  }
  


  /* =============================================================
     TrustedHosting.in - FAQ Section (Enhanced Accordion)
     ============================================================= */
  .trustedhosting-faq {
    background: #ffffff;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1b1f29;
    padding: 140px 20px;
  }

  .trustedhosting-faq .faq-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .trustedhosting-faq h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1b1f29;
    text-align: center;
    margin-bottom: 16px;
  }

  .trustedhosting-faq h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #0057ff;
    margin: 14px auto 0 auto;
    border-radius: 2px;
  }

  .trustedhosting-faq p.faq-intro {
    text-align: center;
    color: #4f5a69;
    font-size: 1.05rem;
    max-width: 760px;
    margin: 14px auto 70px auto;
    line-height: 1.8;
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-item {
    border: 1px solid #e5e9f2;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }

  .faq-item.open {
    border-color: #0057ff;
    box-shadow: 0 14px 30px rgba(0, 87, 255, 0.08);
  }

  .faq-question {
    cursor: pointer;
    padding: 20px 26px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1b1f29;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 700;
    color: #0057ff;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-question::after {
    content: "−";
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
    color: #4f5a69;
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 26px 20px;
  }

  @media (max-width: 768px) {
    .trustedhosting-faq {
      padding: 100px 18px;
    }

    .trustedhosting-faq h2 {
      font-size: 2rem;
    }

    .faq-question {
      font-size: 1rem;
    }
  }