.faq-section {
    padding: 80px 20px;
    background: linear-gradient(9deg, #141e4f, #cd6133);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(103, 78, 167, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(103, 78, 167, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #674ea7, #8b7ab8);
    border-radius: 2px;
}

.faq-header p {
    font-size: 18px;
    color: #718096;
    margin-top: 25px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #582fb6 0%, #5e4f86 100%);;
    color: #ffffff;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5e4f86  0%, #582fb6 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px 25px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}


/* ========================================
   SCROLLABLE CONTENT SECTION - UPDATED STYLES
   ======================================== */

/* Scrollable Content Section */
.scrollable-content-section {
    padding: 80px 20px;
    background: linear-gradient(9deg, #141e4f, #cd6133);
    position: relative;
    overflow: hidden;
}

.scrollable-content-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(205, 97, 51, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.scrollable-content-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: rgba(20, 30, 79, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scroll-header {
    text-align: center;
    margin-bottom: 50px;
}

.scroll-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-header p {
    font-size: 18px;
    color: #f0f0f0;
    opacity: 0.9;
}

.scroll-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cd6133 0%, #bf5a32 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(205, 97, 51, 0.4);
}

.scroll-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #bf5a32 0%, #cd6133 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(205, 97, 51, 0.6);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-btn.scroll-up {
    top: 20px;
}

.scroll-btn.scroll-down {
    bottom: 20px;
}

/* Scrollable Content Area */
.scroll-content {
    max-height: 500px;
    background: #141e4f;
    overflow-y: auto;
    padding: 50px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.scroll-content::-webkit-scrollbar {
    width: 8px;
}

.scroll-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #cd6133, #bf5a32);
    border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #bf5a32, #cd6133);
}

/* Content Blocks */
.content-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8e8e8;
}

.content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Typography Styles */
.content-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #141e4f;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.content-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cd6133, #bf5a32);
    border-radius: 2px;
}

.content-sub-title {
    font-size: 24px;
    font-weight: 600;
    color: #141e4f;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 18px;
}

.content-text p strong a {
    color: #cd6133;
    font-weight: 600;
}
.content-text p strong{
    color: #cd6133;
    font-weight: 600;
}

/* Services Table Styling */
.services-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.services-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.services-comparison-table thead {
    background: linear-gradient(135deg, #141e4f 0%, #1a2861 100%);
}

.services-comparison-table thead th {
    color: #ffffff;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 3px solid #cd6133;
}

.services-comparison-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.services-comparison-table tbody tr:hover {
    background: #f9f9f9;
    transform: scale(1.01);
}

.services-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.services-comparison-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #333333;
    vertical-align: top;
}

.services-comparison-table td strong {
    color: #cd6133;
    font-weight: 600;
}

/* Scroll Progress Bar */
.scroll-progress {
    margin-top: 20px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #cd6133, #bf5a32);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .scrollable-content-section {
        padding: 60px 15px;
    }
    
    .scroll-header h2 {
        font-size: 36px;
    }
    
    .scroll-content {
        padding: 40px 30px;
        max-height: 500px;
    }
    
    .content-main-title {
        font-size: 28px;
    }
    
    .content-sub-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .scroll-header h2 {
        font-size: 32px;
    }
    
    .scroll-header p {
        font-size: 16px;
    }
    
    .scroll-content {
        padding: 30px 20px;
        max-height: 450px;
    }
    
    .content-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .content-sub-title {
        font-size: 20px;
    }
    
    .content-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        right: 15px;
    }
    
    .scroll-btn.scroll-up {
        top: 15px;
    }
    
    .scroll-btn.scroll-down {
        bottom: 15px;
    }
    
    .services-comparison-table thead th,
    .services-comparison-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .scrollable-content-section {
        padding: 50px 10px;
    }
    
    .scroll-header h2 {
        font-size: 28px;
    }
    
    .scroll-content {
        padding: 25px 15px;
        max-height: 400px;
    }
    
    .content-main-title {
        font-size: 22px;
    }
    
    .content-sub-title {
        font-size: 18px;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        right: 10px;
    }
    
    .services-comparison-table thead th,
    .services-comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .content-block {
        margin-bottom: 35px;
        padding-bottom: 30px;
    }
}

/* Dark Mode Compatibility */
body.dark .scroll-wrapper {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.dark .content-main-title,
body.dark .content-sub-title {
    color: #ffffff;
}

body.dark .content-text p {
    color: #d1d1d1;
}

body.dark .services-comparison-table {
    background: #1a1a1a;
}

body.dark .services-comparison-table tbody tr:hover {
    background: #2a2a2a;
}

body.dark .services-comparison-table td {
    color: #d1d1d1;
}

body.dark .content-block {
    border-bottom-color: #333333;
}

body.dark .scroll-content::-webkit-scrollbar-track {
    background: #2a2a2a;
}


/* ==========================================================
   SHARED STYLES — extracted from index.php, ppc-services.php,
   and website-development-services.php inline <style> blocks.
   Appended to new-index.css so all pages share one source.
   ========================================================== */

.hero__area .row.align-items-center {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-stats-row {
  flex-wrap: wrap;
}

.hero-quote-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 36px 30px 32px;
  margin-top: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 10;
}

.hero-quote-form__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6a1a;
  margin-bottom: 8px;
}

.hero-quote-form__title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-quote-form__field {
  margin-bottom: 12px;
}

.hero-quote-form__body input,
.hero-quote-form__body select,
.hero-quote-form__body textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.hero-quote-form__body input::placeholder,
.hero-quote-form__body textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-quote-form__body select option {
  background: #1a1a2e;
  color: #ffffff;
}

.hero-quote-form__field {
  position: relative;
}

.hero-quote-form__body select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff80' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.hero-quote-form__body input:focus,
.hero-quote-form__body select:focus,
.hero-quote-form__body textarea:focus {
  border-color: #ff6a1a;
  background: rgba(255, 106, 26, 0.08);
}

.hero-quote-form__body textarea {
  resize: none;
}

.hero-quote-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  background: #ff6a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.4px;
}

.hero-quote-form__btn:hover {
  background: #e55a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.45);
}

.hero-quote-form__btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-quote-form {
    margin-top: 40px;
  }

  .hero__area .row.align-items-center {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  .hero-quote-form__row {
    grid-template-columns: 1fr;
  }

  .hero-quote-form {
    padding: 24px 18px 20px;
  }

  .hero-quote-form__title {
    font-size: 22px;
  }
}

.callnow__area {
  padding-top: 40px;
  padding-bottom: 3px;
  
    background: linear-gradient(9deg, #141e4f, #cd6133) !important;
  position: relative;
  overflow: hidden;
}

.callnow__area::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.callnow__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-left: 5px solid #ff6a1a;
  border-radius: 12px;
  padding: 22px 32px;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
}

.callnow__banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.callnow__phone-icon {
  width: 56px;
  height: 56px;
  background: #ff6a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255, 106, 26, 0.15);
  animation: callnow-pulse 2s infinite;
}

@keyframes callnow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,106,26,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(255,106,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,26,0); }
}

.callnow__banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.callnow__consult-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.callnow__phone-number {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.callnow__phone-number:hover {
  color: #ff6a1a;
}

.callnow__call-btn {
  display: inline-flex;
  align-items: center;
  background: #ff6a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.4px;
}

.callnow__call-btn:hover {
  background: #e55a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.4);
  color: #ffffff;
}

.callnow__form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px 48px 44px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.callnow__form-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ff6a1a;
  margin-bottom: 10px;
}

.callnow__form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.callnow__form-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.callnow__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}

.callnow__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callnow__form-field label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

.callnow__form-field input,
.callnow__form-field select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 13px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.callnow__form-field input::placeholder {
  color: rgba(255,255,255,0.35);
}

.callnow__form-field input:focus,
.callnow__form-field select:focus {
  border-color: #ff6a1a;
  background: rgba(255, 106, 26, 0.07);
}

.callnow__form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff60' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.07);
  padding-right: 40px;
  cursor: pointer;
}

.callnow__form-field select option {
  background: #1a1a2e;
  color: #ffffff;
}

.callnow__form-submit {
  display: flex;
  justify-content: flex-start;
}

.callnow__submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 36px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.4px;
}

.callnow__submit-btn:hover {
  background: #e55a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 106, 26, 0.45);
}

.callnow__submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 1399px) {
  .hero__title { font-size: 60px; }
}

@media (max-width: 1199px) {
  .hero__title { font-size: 50px; }
  .callnow__form-title { font-size: 27px; }
  .callnow__form-card { padding: 36px 36px 32px; }
}

@media (max-width: 991px) {
  
  .hero__area .row.align-items-center {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero__title { font-size: 44px; }
  .hero-quote-form { margin-top: 40px; }

  
  .hero-stats-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .experience { margin: 8px 12px !important; }

  
  .feature__list { flex-wrap: wrap; }
  .feature__item { flex: 0 0 48%; max-width: 48%; }

  
  .research__area .row > div { flex: 0 0 100%; max-width: 100%; }
  .research__list { margin-top: 30px; }

  
  .left-content { display: none; }
  .mid-content { display: none; }
  .right-content { width: 100%; }

  
  .callnow__banner { padding: 18px 22px; }
  .callnow__phone-number { font-size: 18px; }
  .callnow__form-card { padding: 32px 28px 28px; }
  .callnow__form-grid { grid-template-columns: 1fr 1fr; }
  .callnow__form-title { font-size: 26px; }
}

@media (max-width: 767px) {
  
  .hero__title { font-size: 38px; }
  .hero__area .row.align-items-center { padding-top: 90px; }

  
  .hero-stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .experience.m-2 { margin: 0 !important; }
  .experience .title { font-size: 36px; }

  
  .feature__item { flex: 0 0 100%; max-width: 100%; }
  .sec-title { font-size: 28px !important; }

  
  .brand__list-2 { flex-wrap: wrap; }
  .brand__item-2 { flex: 0 0 33.33%; max-width: 33.33%; }

  
  .counter__wrapper-3 { flex-wrap: wrap; }
  .counter__item-3 { flex: 0 0 48%; }

  
  .callnow__banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .callnow__call-btn { width: 100%; justify-content: center; }
  .callnow__form-grid { grid-template-columns: 1fr; }
  .callnow__form-card { padding: 26px 20px 22px; }
  .callnow__form-title { font-size: 22px; }
  .callnow__submit-btn { width: 100%; justify-content: center; }

  
  .hero-quote-form__row { grid-template-columns: 1fr; }
  .hero-quote-form { padding: 24px 18px 20px; }
  .hero-quote-form__title { font-size: 22px; }
}

@media (max-width: 575px) {
  
  .hero__title { font-size: 32px; }
  .hero__sub-title { font-size: 14px; position: static; margin-top: 12px; }
  .hero__area .row.align-items-center { padding-top: 80px; min-height: auto; }

  
  .hero-stats-row { grid-template-columns: 1fr 1fr; }
  .experience .title { font-size: 30px; }
  .experience p { font-size: 13px; }

  
  .roll__area h2, .roll__area-2 h2, .roll__area-3 h2 { font-size: 20px !important; }

  
  .feature__btm { padding: 0 10px; }
  .sec-title { font-size: 24px !important; }
  .feature__title { font-size: 18px; }

  
  .brand__item-2 { flex: 0 0 50%; max-width: 50%; }
  .brand__title-2 { font-size: 28px !important; }

  
  .cta__title-2 { font-size: 26px !important; }

  
  .callnow__area { padding: 50px 0 60px; }
  .callnow__phone-number { font-size: 16px; }
  .callnow__phone-icon { width: 44px; height: 44px; }
  .callnow__form-grid { grid-template-columns: 1fr; }
  .callnow__form-card { padding: 22px 16px 18px; }
  .callnow__form-title { font-size: 20px; }
  .callnow__form-subtitle { font-size: 13px; }

  
  .hero-quote-form__row { grid-template-columns: 1fr; }
  .hero-quote-form { padding: 20px 14px; margin-top: 30px; }
  .hero-quote-form__title { font-size: 20px; }

  
  .counter__item-3 { flex: 0 0 48%; }
  .counter__number { font-size: 60px !important; }

  
  .faq-container { padding: 20px 14px; }
  .faq-question h3 { font-size: 15px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 28px; }
  .hero-stats-row { grid-template-columns: 1fr; }
  .callnow__banner-left { flex-direction: column; align-items: flex-start; }
  .brand__item-2 { flex: 0 0 100%; max-width: 100%; }
}

.testimonials__area {
  padding: 90px 0 100px;
  background: linear-gradient(9deg, #141e4f, #cd6133) !important;
  position: relative;
  overflow: hidden;
}

.testimonials__area::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__area::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__header {
  margin-bottom: 50px;
}

.testimonials__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff6a1a;
  margin-bottom: 14px;
}

.testimonials__tag::before {
  content: '→';
  font-size: 14px;
}

.testimonials__title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.testimonials__nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  padding: 18px;
}

.testimonials__nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.testimonials__nav-btn:hover {
  border-color: #ff6a1a;
  background: rgba(255, 106, 26, 0.12);
  color: #ff6a1a;
  transform: scale(1.05);
}

.testimonials__nav-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials__slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonials__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 30px 30px;
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.testimonials__card:hover {
  border-color: rgba(255, 106, 26, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.testimonials__card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 106, 26, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonials__reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonials__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 106, 26, 0.4);
  flex-shrink: 0;
  background: rgba(255, 106, 26, 0.15);
}

.testimonials__avatar-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 106, 26, 0.4);
  flex-shrink: 0;
  background: rgba(255, 106, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #ff6a1a;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.testimonials__reviewer-info {
  flex: 1;
}

.testimonials__reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  line-height: 1.2;
}

.testimonials__reviewer-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin: 0;
}

.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonials__stars svg {
  width: 16px;
  height: 16px;
}

.testimonials__text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

.testimonials__platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonials__platform-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials__platform-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testimonials__dot.active {
  background: #ff6a1a;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .testimonials__title {
    font-size: 36px;
  }
  .testimonials__card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
  }
}

@media (max-width: 575px) {
  .testimonials__area {
    padding: 60px 0 70px;
  }
  .testimonials__title {
    font-size: 28px;
  }
  .testimonials__card {
    padding: 24px 20px 22px;
  }
}

.callnow__area .testimonials__area .callnow__area {
    background: linear-gradient(9deg, #141e4f, #cd6133) !important;
}