
/* Real Estate Hero Section Styles */
.hero-real-estate {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-left {
  flex: 1;
  text-align: left;
}

.hero-left h1 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.hero-description {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.hero-main-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-real-estate {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-left h1 {
    text-align: center;
  }
  
  .hero-description {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .hero-main-image {
    height: 100%;
  }
  .real-estate-use-cases{
    margin: 0 auto;
  }
  
}

/* About Content Styling */
.about-content {
  max-width: 1000px;
  margin: 1rem auto 0 auto;
  text-align: center;
}

.about-description {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-description p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-description {
    padding: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-description {
    padding: 1.5rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
}

/* Feature Rows Layout */
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 2rem 0;
  padding: 2rem 0;
}

.feature-row.feature-reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  max-width: 550px;
}

.feature-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  opacity: 0.2;
  filter: blur(15px);
  z-index: -1;
  transform: scale(1.3);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.feature-description {
  color: #cccccc;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.highlight-item i {
  color: #25d366;
  font-size: 1rem;
  width: 16px;
}

/* Feature Images */
.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}

.feature-image:hover img {
  transform: scale(1.02);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.overlay-badge {
  background: rgba(37, 211, 102, 0.9);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 3s ease-in-out infinite;
}


/* Responsive Design */
@media (max-width: 768px) {
  .feature-row,
  .feature-row.feature-reverse {
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.2rem 0;
    text-align: center;
  }
  
  .feature-content {
    max-width: 100%;
  }
  
  .feature-image {
    max-width: 100%;
  }
  
  .feature-image img {
    height: 100%;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  .overlay-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .feature-row {
    margin: 2rem 0;
    padding: 1rem 0;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
  
  .feature-image img {
    height: 100%;
  }
  
  .highlight-item {
    font-size: 0.9rem;
  }
} 


/* Responsive Design */
@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .feature-item {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
  }
  
  .features-main-image {
    height: 300px;
  }
  
  .floating-badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
  
}

@media (max-width: 480px) {
  .feature-item {
    margin-bottom: 1.5rem;
  }
  
  .features-main-image {
    height: 250px;
  }
  
  .floating-badge {
    position: static;
    margin: 0.5rem;
    display: inline-flex;
  }
  
  .features-image-container::after {
    content: "";
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
.features-container-inner{
      max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Process Timeline */
.process-timeline {
position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 0;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Step Connector Line */
.step-connector {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, #25d366, rgba(37, 211, 102, 0.3));
  z-index: 1;
}

.timeline-step:last-child .step-connector {
  display: none;
}

/* Step Circle */
.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
   margin: 0 auto 0.5rem;
}

/* Step Content */
.step-content {
  margin-left: 2rem;
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.step-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  .process-timeline {
    padding: 1rem 0;
  }
  
  .timeline-step {
    margin-bottom: 2.5rem;
  }
  
  .step-circle {
    width: 50px;
    height: 50px;
  }
  
  .step-number {
    font-size: 1.2rem;
  }
  
  .step-connector {
    left: 25px;
    top: 50px;
  }
  
  .step-content {
    margin-left: 1.5rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .step-circle {
    width: 45px;
    height: 45px;
  }
  
  .step-number {
    font-size: 1.1rem;
  }
  
  .step-connector {
    left: 22px;
  }
  
  .step-content {
    margin-left: 1.2rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
}

/* Importance Section */
.importance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* Importance Cards */
.importance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.importance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #128c7e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.importance-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.importance-card:hover::before {
  opacity: 1;
}

/* Importance Icon */
.importance-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  transition: all 0.3s ease;
}

.importance-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 20px;
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
  transform: scale(1.2);
}

.importance-card:hover .importance-icon {
  transform: scale(1.1);
}

/* Importance Content */
.importance-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.importance-metric {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #25d366, #128c7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.importance-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .importance-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .importance-card {
    padding: 2rem 1.5rem;
  }
  
  .importance-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .importance-title {
    font-size: 1.2rem;
  }
  
  .importance-metric {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .importance-grid {
    grid-template-columns: 1fr;
  }
  
  .importance-card {
    padding: 1.8rem 1.2rem;
  }
  
  .importance-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .importance-title {
    font-size: 1.1rem;
  }
  
  .importance-metric {
    font-size: 2rem;
  }
  
  .importance-description {
    font-size: 0.9rem;
  }
}

/* usecase */

.real-estate-use-cases {
    padding: 20px 0;
    min-height: 100vh;
   background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(10, 10, 10, 1) 100%);
   margin: 0 -2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Sidebar Styles */
.sidebar {
   
    border-radius: 16px;
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    padding: 30px 25px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.use-case-tabs {
    padding: 10px 0;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 2px 0;
}

.tab-item:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.tab-item.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-left-color: #22c55e;
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-item.active .tab-icon,
.tab-item:hover .tab-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.tab-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color:#fff;
}

/* Content Area */
.content-area {
    
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 20px;
    
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.content-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Story Sections */
.story-section {
    margin-bottom: 25px;
}

.story-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.story-section p {
    color: #888888;
    line-height: 1.6;
    font-size: 1rem;
}

/* Results Metrics */
.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    
}

.metric-card {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #15803d;
    display: block;
    margin-bottom: 5px;
    text-align: center;
}

.metric-label {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .use-case-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        padding: 20px;
    }
    
    .tab-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        padding: 15px;
        border-radius: 12px;
        border-left: none;
        border-top: 3px solid transparent;
    }
    
    .tab-item.active {
        border-left: none;
        border-top-color: #22c55e;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content-area {
        padding: 25px 20px;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .content-header h3 {
        font-size: 1.4rem;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .bottom-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .use-case-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sidebar-header h2 {
        font-size: 1.25rem;
    }
    
    .metric-card {
        padding: 20px 15px;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
    
    .story-section h4 {
        font-size: 1rem;
    }
    
    .story-section p {
        font-size: 0.95rem;
    }
}

/* Integrations Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* Integration Cards */
.integration-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #128c7e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.integration-card:hover::before {
  opacity: 1;
}

/* Integration Icons */
.integration-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  transition: all 0.3s ease;
}

.integration-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
  transform: scale(1.2);
}

.integration-card:hover .integration-icon {
  transform: scale(1.1);
}

/* Icon Color Variations */
.integration-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.integration-icon.whatsapp::after {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.integration-icon.property {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.integration-icon.property::after {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.integration-icon.crm {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.integration-icon.crm::after {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.integration-icon.calendar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.integration-icon.calendar::after {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.integration-icon.documents {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.integration-icon.documents::after {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.integration-icon.payment {
  background: linear-gradient(135deg, #10b981, #059669);
}

.integration-icon.payment::after {
  background: linear-gradient(135deg, #10b981, #059669);
}

.integration-icon.ads {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.integration-icon.ads::after {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.integration-icon.global {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.integration-icon.global::after {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Integration Content */
.integration-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.integration-subtitle {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .integration-card {
    padding: 2rem 1.5rem;
  }
  
  .integration-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .integration-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .integration-card {
    padding: 1.8rem 1.2rem;
  }
  
  .integration-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .integration-title {
    font-size: 1.1rem;
  }
  
  .integration-subtitle {
    font-size: 0.8rem;
  }
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #128c7e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Quote Icon */
.quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.quote-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(10px);
  z-index: -1;
  transform: scale(1.2);
}

/* Testimonial Quote */
.testimonial-quote {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(37, 211, 102, 0.3);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.author-role {
  font-size: 0.9rem;
  color: #25d366;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.author-company {
  font-size: 0.85rem;
  color: #aaaaaa;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-role {
    font-size: 0.85rem;
  }
  
  .author-company {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .quote-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    gap: 0.8rem;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
  }
}

/* FAQ Section */
.faq {
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    margin: 0 -2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* FAQ Grid - Two Columns */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.faq-question {
    padding: 1.2rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: #ffffff;
    font-size: 1rem
}
@media (max-width: 768px) {
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    
}
}

