:root {
    --primary: #ff8c00;
    --secondary: #0a2540;
    --white: #ffffff;
    --gray: #666666;
    --form-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

a{
  text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./Images/virtual-office.jpg');
    background-size: cover;
    background-position: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 0 4rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

/* City Dropdown */
.city-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-dropdown {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.city-dropdown:hover {
    background: rgba(255,255,255,0.2);
}

.city-dropdown option {
    background: var(--secondary);
    color: var(--white);
}

.city-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.city-link:hover {
    background: darken(var(--primary), 10%);
    transform: translateY(-2px);
}

/* Form Styles */
.form-container {
    background: var(--secondary);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

.form-container h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.phone-group {
    display: grid;
    grid-template-columns: 120px 1fr !important;
    gap: 1rem;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
}

.client-section h2{
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    color: var( --primary);
}
.client-section{
    margin: 30px 0px;
}
.Client-container{
max-width: 1200px;
display: flex;
gap: 10px;
/* height: 400px !important; */
align-items: center;
margin: auto;
justify-content: center;
flex-wrap: wrap;
}

.client-box-1 img{
    width: 100%;
}

.client-box{
    flex: 30%;
    border-radius: 10px;
    height: 330px;
}
.client-box img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern gradient background animation */
@keyframes n3b_gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .xk4_wrapper {
    padding: 0px 0;

    background-size: 200% 200%;
    animation: n3b_gradient 15s ease infinite;
  }
  
  .p9m_container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  .j2n_content_box {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .v5r_image_side {
    flex: 1;
    position: relative;
  }
  
  .h8t_image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .h8t_image:hover {
    transform: scale(1.02);
  }
  
  .q3p_content_side {
    flex: 1;
    padding: 20px;
  }
  
  .y7w_badge {
    display: inline-block;
    padding: 6px 12px;
    background: var( --primary);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .m4c_title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .f6h_description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .l9k_stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .w2s_stat_item {
    text-align: center;
  }
  
  .b5x_number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 5px;
  }
  
  .t7m_label {
    font-size: 14px;
    color: #6b7280;
  }
  
  .c8r_button {
    display: inline-block;
    padding: 12px 24px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .c8r_button:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.15);
  }

  .fynd-90-section {
    padding: 60px 20px;

  }
  
  .fynd-90-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .fynd-90-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-align: left;
  }
  
  .fynd-90-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
  }
  
  .fynd-90-card {
    background: white;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .fynd-90-card:hover {
    transform: translateY(-5px);
  }
  
  .fynd-90-image-wrapper {
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  
  .fynd-90-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .fynd-90-card:hover .fynd-90-image {
    transform: scale(1.05);
  }
  
  .fynd-90-content {
    padding: 24px;
  }
  
  .fynd-90-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
  }
  
  .fynd-90-description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 7px;
    min-height: 72px;
  }
  
  .fynd-90-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .fynd-90-button:hover {
    background-color: var(--primary);
  }
  

  .squer-45-section {
    padding: 40px 20px;
    
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .squer-45-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  .squer-45-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
  }
  
  .squer-45-box {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    color: white;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
  
  .squer-45-box:hover {
    transform: translateY(-10px);
  }
  
  .squer-45-box:hover .squer-45-overlay {
    opacity: 0.9;
  }
  
  .squer-45-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .squer-45-icon {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .squer-45-icon img{
    width: 50px;
    height: 50px;
    color: #ff8c00;
  }
  
  .squer-45-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .squer-45-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }
  
  
  /* Hover Effects */
  .squer-45-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .squer-45-box:hover::before {
    opacity: 1;
  }

  .private-section {
    padding: 60px 20px;
    background-color: var(--primary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.private-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.private-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Properties Styles */
.private-properties {
    position: relative;
    padding: 20px;
}

.private-property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 300px;
}

.private-card-offset {
    position: absolute;
    top: 150px;
    left: 100px;
}

.private-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    z-index: 1;
}

.private-property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.private-property-info {
    padding: 15px;
    color: #333;
}

.private-property-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.private-property-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.private-price {
    font-weight: 600;
    color: #007bff !important;
    margin-top: 8px !important;
}

/* Text Content Styles */
.private-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.private-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.private-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.private-highlight {
    color: #fff;
    font-weight: 700;
}

.private-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.private-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.private-btn-primary {
    background: white;
    color: #000;
    border: none;
}

.private-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.private-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Trusted Section Styles */
.private-trusted-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

.private-trusted-header {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.private-rating {
    margin-bottom: 10px;
}

.private-stars {
    color: #ffc107;
    font-size: 24px;
}

.private-trusted-header h3 {
    font-size: 20px;
    margin: 0;
}

/* Logo Slider Styles */
.private-logo-slider {
    padding: 20px 0;
}

.private-logo-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.private-logo-slider img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.private-logo-slider img:hover {
    opacity: 1;
}

.quiss-90-section {
  padding: 80px 20px;

  min-height: 100vh;
  display: flex;
  align-items: center;
}

.quiss-90-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Form Styles */
.quiss-90-form-wrapper {
  padding: 40px;
}

.quiss-90-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.quiss-90-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.quiss-90-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiss-90-input-group {
  position: relative;
}

.quiss-90-input-group input,
.quiss-90-input-group select,
.quiss-90-input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.quiss-90-input-group textarea {
  resize: vertical;
}

.quiss-90-input-group input:focus,
.quiss-90-input-group select:focus,
.quiss-90-input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.quiss-90-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.quiss-90-input-group input:focus ~ .quiss-90-focus-border,
.quiss-90-input-group select:focus ~ .quiss-90-focus-border,
.quiss-90-input-group textarea:focus ~ .quiss-90-focus-border {
  width: 100%;
}

.quiss-90-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiss-90-submit-btn:hover {
  background:var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Info Side Styles */
.quiss-90-info-wrapper {
  background: var(--primary);
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiss-90-info-content {
  max-width: 400px;
}

.quiss-90-info-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.quiss-90-info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quiss-90-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.quiss-90-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiss-90-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.quiss-90-info-text h4 {
  font-size: 18px;
  margin: 0 0 5px 0;
}

.quiss-90-info-text p {
  margin: 0;
  opacity: 0.8;
}

.quiss-90-info-text a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.quiss-90-info-text a:hover {
  opacity: 0.8;
}

.footer-wrapper {
  background-color: #000000;
  padding: 20px 0;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-link {
  color: white;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Common styles for both buttons */
.float-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: white;
}

/* Main WhatsApp button */
.whatsapp-btn {
  background-color: #25D366;
  padding: 12px 24px;
  gap: 8px;
}

.whatsapp-btn:hover {
  background-color: #22c35e;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.whatsapp-btn span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

/* Minimal WhatsApp button */
.whatsapp-btn-minimal {
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.whatsapp-btn-minimal:hover {
  background-color: #22c35e;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-minimal svg {
  width: 28px;
  height: 28px;
}

/* Animation for buttons */
@keyframes float-bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}

.float-btn {
  animation: float-bounce 3s ease-in-out infinite;
}

.float-btn:hover {
  animation-play-state: paused;
}

  @media (max-width: 1200px) {
    .squer-45-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .quiss-90-container {
      gap: 40px;
  }
  }  

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }
    .Client-container {
        padding: 10px;
    }

    .phone-number {
        display: none;
    }

    .call-btn {
        padding: 0.5rem;
        aspect-ratio: 1;
        border-radius: 50%;
    }
    .client-box{
        flex: 46%;
    }
    .j2n_content_box {
        flex-direction: column;
        gap: 40px;
      }
    
      .v5r_image_side,
      .q3p_content_side {
        width: 100%;
      }
    
      .m4c_title {
        font-size: 30px;
      }
    
      .l9k_stats {
        flex-wrap: wrap;
        justify-content: center;
      }
      .client-box{
        height: unset;
      }
      .fynd-90-main-title {
        font-size: 32px;
        text-align: center;
      }
      
      .fynd-90-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .fynd-90-section {
        padding: 40px 16px;
      }
    
      .fynd-90-main-title {
        font-size: 28px;
        margin-bottom: 30px;
      }
    
      .fynd-90-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
    
      .fynd-90-description {
        min-height: auto;
      }
      .squer-45-section {
        padding: 60px 15px;
      }
    
      .squer-45-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    
      .squer-45-box {
        padding: 30px 25px;
        min-height: 200px;
      }
    
      .squer-45-title {
        font-size: 20px;
      }
    
      .squer-45-icon {
        font-size: 32px;
      }
      .private-content-wrapper {
        gap: 30px;
    }

    .private-title {
        font-size: 36px;
    }

    .private-card-offset {
        left: 60px;
    }
}


@media (max-width: 768px) {
    .private-content-wrapper {
        grid-template-columns: 1fr;
    }

    .private-properties {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .private-card-offset {
        position: static;
    }

    .private-text-content {
        text-align: center;
    }

    .private-buttons {
        justify-content: center;
    }

    .private-title {
        font-size: 32px;
    }

    .private-subtitle {
        font-size: 20px;
    }
    .quiss-90-container {
      grid-template-columns: 1fr;
  }

  .quiss-90-info-wrapper {
      border-radius: 0 0 20px 20px;
  }

  .quiss-90-info-content {
      max-width: 100%;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
}

.footer-copyright {
    order: 2;
}

.footer-social {
    order: 1;
}
.float-whatsapp {
  right: 15px;
  bottom: 15px;
  gap: 10px;
}

.whatsapp-btn {
  padding: 10px 20px;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

.whatsapp-btn span {
  font-size: 14px;
}

.whatsapp-btn-minimal {
  width: 45px;
  height: 45px;
}

.whatsapp-btn-minimal svg {
  width: 24px;
  height: 24px;
}
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
    .hero .container{
        padding: 4rem 0 0 0;
       
    }

    .header .container{
        justify-content: center !important;
    }

    .logo img {
        height: 70px;
        margin: auto !important;
    }

    .logo span {
        font-size: 1.2rem;
    }
    .hero{
        padding: 44px 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1rem;
    }

    .form-container h2 {
        font-size: 1.2rem;
    }

    /*.phone-group {*/
    /*    grid-template-columns: 120px 1fr;*/
    /*}*/
    .xk4_wrapper {
        padding: 0px 0;
      }
    
      .j2n_content_box {
        padding: 20px;
      }
      .p9m_container{
        margin: unset;
      }
    
      .m4c_title {
        font-size: 24px;
      }
    
      .b5x_number {
        font-size: 24px;
      }
    
      .l9k_stats {
        gap: 20px;
      }
      .fynd-90-main-title {
        font-size: 24px;
      }
    
      .fynd-90-title {
        font-size: 20px;
      }
    
      .fynd-90-content {
        padding: 20px;
      }
    
      .fynd-90-button {
        width: 100%;
        padding: 10px 20px;
      }
      .call-btn{
        display: none;
      }
      .squer-45-section {
        padding: 40px 10px;
      }
    
      .squer-45-box {
        padding: 25px 20px;
      }
    
      .squer-45-description {
        font-size: 14px;
      }

      .private-section {
        padding: 40px 15px;
    }

    .private-property-card {
        width: 100%;
    }

    .private-title {
        font-size: 28px;
    }

    .private-buttons {
        flex-direction: column;
    }

    .private-trusted-section {
        padding: 20px;
    }
    .quiss-90-section {
      padding: 40px 15px;
  }

  .quiss-90-form-wrapper,
  .quiss-90-info-wrapper {
      padding: 30px 20px;
  }

  .quiss-90-title {
      font-size: 28px;
  }

  .quiss-90-info-item {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }

  .footer-wrapper {
    padding: 15px 0;
}

.footer-container {
    padding: 0 15px;
}

.footer-copyright {
    font-size: 12px;
}

.footer-social {
    gap: 15px;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}
.private-tag{
  display: none;
}

.whatsapp-btn {
  padding: 8px 16px;
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

.whatsapp-btn span {
  font-size: 13px;
}

.whatsapp-btn-minimal {
  width: 40px;
  height: 40px;
}

.whatsapp-btn-minimal svg {
  width: 20px;
  height: 20px;
}
    }
    
    /* Animation for boxes */
    @keyframes squer-45-fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
}

.squer-45-box {
    animation: squer-45-fadeIn 0.5s ease forwards;
  }
  
  .squer-45-box:nth-child(1) { animation-delay: 0.1s; }
  .squer-45-box:nth-child(2) { animation-delay: 0.2s; }
  .squer-45-box:nth-child(3) { animation-delay: 0.3s; }
  .squer-45-box:nth-child(4) { animation-delay: 0.4s; }
  .squer-45-box:nth-child(5) { animation-delay: 0.5s; }
  .squer-45-box:nth-child(6) { animation-delay: 0.6s; }

  /* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.quiss-90-form-wrapper,
.quiss-90-info-wrapper {
  animation: fadeIn 0.6s ease-out forwards;
}

.quiss-90-info-item {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.quiss-90-info-item:nth-child(1) { animation-delay: 0.2s; }
.quiss-90-info-item:nth-child(2) { animation-delay: 0.4s; }
.quiss-90-info-item:nth-child(3) { animation-delay: 0.6s; }
.quiss-90-info-item:nth-child(4) { animation-delay: 0.8s; }