/* testimonial */
/* testimonial */

/* ============================================
   TESTIMONIAL SECTION - Modern 2-Column Grid
   ============================================ */

:root {
  /* Layout Variables */
  --site-max-width: 1600px;
  --site-padding-desktop: 3rem;
  --site-padding-tablet: 2rem;
  --site-padding-mobile: 1.25rem;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-headings: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Colors */
  --color-primary: #0069ff;
  --color-primary-dark: #0069ff;
  --color-text-primary: #0a0a0a;
  --color-text-secondary: #ffffff;
  --color-text-tertiary: #999;
  --color-background: #f8fbff;
  --color-white: #ffffff;
  --color-border: #e5e7eb;

  /* Spacing */
  --section-padding: 60px;
  --section-gap: 60px;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Primary font family for headings and UI elements */
h1,
h2,
h3,
h4,
h5,
h6,
.small-title,
.feature-list li,
.buttons,
.price-box{
  font-family: var(--font-headings);
}

/* Typography scale */
h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
h5 { font-size: 1.125rem; font-weight: 600; line-height: 1.5; }
h6 { font-size: 1rem; font-weight: 600; line-height: 1.5; }

/* Body text */
p { font-size: 1rem; line-height: 1.6; }
small { font-size: 0.875rem; }

.site-container,
.container,
.layout-container {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-padding-desktop);
}

.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 105, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(32, 201, 151, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0b1b4b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0b1b4b 0%, #0069ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonial Grid - 2 Column Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 3rem;
}

/* Individual Testimonial Card */
.testimonial-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 105, 255, 0.15);
}

/* Quote Icon */
.testimonial-card .quote-icon {
    font-size: 48px;
    color: #0069ff;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.25;
}

/* Testimonial Text */
.testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: auto;
    font-weight: 400;
}

/* Divider */
.testimonial-card .testimonial-divider {
    height: 2px;
    background: linear-gradient(90deg, #0069ff 0%, #20c997 100%);
    margin: 1.5rem 0 1.25rem;
    border-radius: 2px;
    width: 60px;
}

/* Author Section */
.testimonial-card .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1b4b;
    margin: 0;
}

.testimonial-card .author-role {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Navigation Controls */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    color:#0069ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: linear-gradient(135deg, #0069ff 0%, #20c997 100%);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 105, 255, 0.3);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Testimonial Section */
.testimonial-section {
  padding: 40px 0;
  background: #f8fbff;
}
.container{
      max-width: var(--site-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--site-padding-desktop);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quote-mark {
  font-size: 120px;
  color: #10b981;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 16px;
  margin-bottom: 30px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet View - Keep 2 columns */
@media (max-width: 1024px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-header h2 {
        font-size: 2.25rem;
    }

    .testimonial-grid {
        gap: 24px;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: 300px;
    }
}

/* Mobile View - 1 column only */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-header h2 {
        font-size: 2rem;
    }

    .testimonial-header p {
        font-size: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 1.75rem;
        min-height: auto;
        width: 100%;
    }

    .testimonial-card .quote-icon {
        font-size: 40px;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-navigation {
        margin-top: 1.5rem;
        gap: 12px;
    }

    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
    }
}

/* Small Mobile - Extra compact */
@media (max-width: 480px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-header h2 {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card .testimonial-text {
        font-size: 0.9rem;
    }
}
