html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.logo-main {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  animation: fadeInDown 1s ease;
  border-bottom: 1px solid #838383;
  margin: 15px auto;
  padding-bottom: 15px;
}

.logo-main img {
  width: auto;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  max-height: 140px;
}

.hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.hero h1 .hindi-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 24px;
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Section */
.video-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.video-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 50px;
  font-weight: 700;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 64, 255, 0.2);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* What is Virtual Office Section */
.what-section {
  padding: 100px 20px;
  background: #f7fafc;
}

.what-section h2 {
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.what-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.what-content p {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.8;
}

.simple-points {
  background: linear-gradient(135deg, #f7fafc 0%, #e6f2ff 100%);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  border-left: 5px solid #1e40ff;
}

.simple-points h3 {
  font-size: 1.5rem;
  color: #1e40ff;
  margin-bottom: 20px;
  font-weight: 600;
}

.simple-points ul {
  list-style: none;
  text-align: left;
}

.simple-points li {
  padding: 15px 0 15px 40px;
  position: relative;
  font-size: 1.1rem;
  color: #2d3748;
}

.simple-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e40ff;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Popular in India Section */
.popular-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
  position: relative;
  overflow: hidden;
}

.monuments-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-image:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="20" y="100" font-size="120" opacity="0.3">🕌</text></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="20" y="100" font-size="120" opacity="0.3">🏛️</text></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="20" y="100" font-size="120" opacity="0.3">🗼</text></svg>');
  background-position:
    10% 20%,
    50% 60%,
    90% 30%;
  background-repeat: no-repeat;
  background-size: 300px;
}

.popular-section .container {
  position: relative;
  z-index: 2;
}

.popular-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}

.popular-content {
  max-width: 900px;
  margin: 0 auto;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.popular-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.popular-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.popular-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.popular-card ul {
  list-style: none;
}

.popular-card li {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 1.05rem;
}

.popular-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

/* Stats Section */
.stats-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.stats-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 60px;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 64, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 64, 255, 0.2);
  border-color: #1e40ff;
}

.stat-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  /* display: block; */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.stat-icon .mapIcon {
  height: 90px;
}
.stat-card p {
  font-size: 1.2rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
  padding: 100px 20px;
  background: #ffffff;
}

.comparison-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 60px;
  font-weight: 700;
}

.comparison-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

thead {
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
}

th {
  padding: 25px;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
}

td {
  padding: 25px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.1rem;
  color: #2d3748;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: #f7fafc;
}

/* Ideal For Section */
.ideal-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.ideal-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 60px;
  font-weight: 700;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ideal-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ideal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e40ff 0%, #4ade80 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ideal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 255, 0.15);
  border-color: #1e40ff;
}

.ideal-card:hover::before {
  transform: scaleX(1);
}

.ideal-card h3 {
  color: #1e40ff;
  font-size: 1.3rem;
  font-weight: 600;
}

.ideal-note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2rem;
  color: #4a5568;
  font-style: italic;
  font-weight: 500;
}

/* Not Fit Section */
.not-fit-section {
  padding: 100px 20px;
  background: #ffffff;
}

.not-fit-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #e53e3e;
  margin-bottom: 40px;
  font-weight: 700;
}

.not-fit-content {
  max-width: 700px;
  margin: 0 auto;
}

.not-fit-content p {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
}

.not-fit-list {
  background: #fff5f5;
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid #e53e3e;
}

.not-fit-list ul {
  list-style: none;
}

.not-fit-list li {
  padding: 15px 0 15px 35px;
  position: relative;
  font-size: 1.1rem;
  color: #2d3748;
}

.not-fit-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e53e3e;
  font-weight: bold;
  font-size: 1.5rem;
}

.not-fit-note {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: #4a5568;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40ff;
  margin-bottom: 60px;
  font-weight: 700;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #1e40ff;
  box-shadow: 0 10px 30px rgba(30, 64, 255, 0.15);
}

.faq-question {
  padding: 25px 30px;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  border-left: 5px solid #1e40ff;
}

.faq-question h3 {
  color: #1e40ff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-answer {
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section > p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.form-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #2d3748;
  font-weight: 600;
  font-size: 1.05rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e40ff;
  box-shadow: 0 0 0 4px rgba(30, 64, 255, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 64, 255, 0.4);
}

.contact-divider {
  margin: 40px 0;
  text-align: center;
  position: relative;
}

.contact-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.contact-divider span {
  background: #ffffff;
  padding: 0 20px;
  position: relative;
  color: #4a5568;
  font-weight: 600;
}

.direct-contact {
  text-align: center;
}

.direct-contact p {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 15px 35px;
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 64, 255, 0.3);
}

/* Footer */
footer {
  background: #0a0e1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 20px;
  text-align: center;
}

footer p {
  margin: 8px 0;
  font-size: 1rem;
}

footer a {
  color: #1e40ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #4ade80;
}
/* ===== ZOHO FORM SAME DESIGN AS FORM-BOX ===== */

#crmWebToEntityForm {
  max-width: 100% !important;
  padding: 0 !important;
  font-family: "Poppins", sans-serif !important;
}
#crmWebToEntityForm label {
  display: block;
  margin-bottom: 0px;
  color: #2d3748;
  font-weight: 600;
  font-size: 1.05rem;
}
#crmWebToEntityForm .zcwf_col_lab {
  margin-bottom: 0;
  margin-top: 0;
}
#crmWebToEntityForm .zcwf_row {
  margin: 0 !important;
  margin-bottom: 18px !important;
}

.zcwf_lblLeft .zcwf_row {
  margin-bottom: 25px !important;
}
#crmWebToEntityForm .zcwf_title {
  font-size: 2.5rem;
  color: #1e40ff !important;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}
#crmWebToEntityForm .formsubmit.zcwf_button {
  width: 100% !important;
  max-width: 100%;
  transition: all 0.3s ease;
}
#crmWebToEntityForm .formsubmit.zcwf_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 64, 255, 0.3);
}
.zcwf_lblLeft .zcwf_col_lab {
  width: 100% !important;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #2d3748;
}

.zcwf_lblLeft .zcwf_col_fld {
  width: 100% !important;
}

.zcwf_lblLeft input[type="text"],
.zcwf_lblLeft select {
  width: 100% !important;
  padding: 18px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 1.05rem !important;
  transition: 0.3s ease !important;
}

.zcwf_lblLeft input[type="text"]:focus,
.zcwf_lblLeft select:focus {
  outline: none;
  border-color: #1e40ff !important;
  box-shadow: 0 0 0 4px rgba(30, 64, 255, 0.1);
}

.formsubmit.zcwf_button {
  width: 100% !important;
  padding: 20px !important;
  border-radius: 10px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #1e40ff 0%, #0a1e6b 100%) !important;
  color: #fff !important;
  border: none !important;
}

.zcwf_button[name="reset"] {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .video-section h2,
  .what-section h2,
  .popular-section h2,
  .stats-section h2,
  .comparison-section h2,
  .ideal-section h2,
  .not-fit-section h2,
  .faq-section h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .form-box {
    padding: 30px 20px;
  }

  th,
  td {
    padding: 15px;
    font-size: 0.95rem;
  }

  .stat-icon {
    font-size: 3rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .monuments-bg {
    background-size: 200px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.3rem;
    padding: 0px 20px;
  }

  .logo-main {
    margin-bottom: 40px;
  }
}

.floating-assist {
  position: fixed;
  left: 0;
  top: 75%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #1e40ff, #0a1e6b);
  color: #fff;
  padding: 15px 5px;
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.floating-assist .icon {
  font-size: 20px;
  writing-mode: horizontal-tb;
  color: #ffd700;
}
.floating-assist {
  background: linear-gradient(270deg, #1e40ff, #0a1e6b, #2563eb, #1e40ff);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
}
.floating-assist .text {
  transform: rotate(180deg);
  white-space: nowrap;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes textColorChange {
  0% {
    color: #ffffff;
  }
  50% {
    color: #ffd700;
  }
  100% {
    color: #ffffff;
  }
}

.floating-assist {
  animation: textColorChange 2s infinite;
}

.floating-assist {
  position: fixed;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #ccc;
  border-left: none;
}

.floating-assist::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  100% {
    left: 100%;
  }
}

.video-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.video-section lite-youtube {
  display: block;
  width: 100%;
  height: 90vh; /* desktop full feel */
  max-height: 720px;
  border-radius: 12px;
  overflow: hidden;
  max-width: none;
}
#ctaSection .container {
  padding: 0;
}

/* tablet */
@media (max-width: 1024px) {
  lite-youtube {
    height: 34vh !important;
  }
}

/* mobile full width responsive */
@media (max-width: 768px) {
  lite-youtube {
    height: 21vh !important;
  }
  .logo-main img {
    width: auto;
    height: 90px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    max-height: 140px;
  }
}
