/* ========================================

   HOME PAGE ALTERNATIVE (V2) STYLES

   ======================================== */



/* Hero Section V2 - Enhanced */



.services{

  padding-top: 50px;

}



 .services > .stat-label::after{

  content: '';

  display: inline-block;

  color: #fff;

  background-color: #89c641;

  margin-left:20px;

  width: 3px;

}

.services > .stat-label:last-child::after{

  content: none;

}



.services > .stat-label{

  display: flex;

}



.hero-banner-area-v2 {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  color: var(--white-color);

  overflow: hidden;

}

/* Light Button - Perfect for dark backgrounds*/ 

.btn-light {

	background: var(--white-color);

	color: var(--main-color);

	padding: 15px 24px;

	border: none;

	border-radius: 3px;

	cursor: pointer;

	transition: var(--transition);

	text-decoration: none;

	display: inline-block;

	font-size: 16px;

	line-height: 1;

	text-align: center;

	position: relative;

	z-index: 1;

	overflow: hidden;

}



.btn-light::before, 

.btn-light::after {

	content: "";

	position: absolute;

	top: 0;

	left: 0;

	width: 50%;

	height: 0;

	background-color: var(--heading-color);

	z-index: -1;

	transition: var(--transition);

}



.btn-light::after {

	top: auto;

	bottom: 0;

	left: auto;

	right: 0;

}



.btn-light:hover {

	color: var(--white-color);

	text-decoration: none;

}



.btn-light:hover::before {

	height: 100%;

	top: auto;

	bottom: 0;

}



.btn-light:hover::after {

	height: 100%;

	bottom: auto;

	top: 0;

}



.btn-light:focus {

	text-decoration: none;

	outline: none;

}



.hero-banner-area-v2::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(35, 52, 75, 0.8);

  backdrop-filter: blur(2px);

  z-index: 1;

}



.hero-banner-content-v2 {

  position: relative;

  z-index: 2;

  text-align: center;

  /* max-width: 65%; */

  margin: 0 auto;

  margin-bottom: 1.5rem;

}



.hero-badge {

  display: inline-block;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  padding: 12px 24px;

  border-radius: 30px;

  margin-bottom: 30px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  margin-top:3rem;

}



.hero-badge span {

  color: var(--white-color);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

}



/* Enhanced Hero Title */

.hero-title-large {

  font-size: 4rem !important;

  font-weight: 900 !important;

  color: var(--white-color);

  line-height: 1.1 !important;

  letter-spacing: -0.02em;

  width: 65%;
}



.hero-title-large span {

  color: var(--main-color);

}



/* Enhanced Hero Description */

.hero-description-large {

  font-size: 1.8rem !important;

  margin-bottom: 10px !important;

  color: var(--white-color);

  font-weight: 700 !important;

  max-width: 700px;

  margin-left: auto;

  margin-right: auto;

  line-height: 1.3 !important;

}



.hero-description-large .emphasis {

  color: var(--main-color);

  font-weight: 900;

}



.hero-stats {

  display: flex;

  justify-content: center;

  gap: 60px;

  margin-bottom: 30px;

  margin-top:100px;

  flex-wrap: wrap;

}



.stat-item {

  text-align: center;

}



.stat-number {

  /* font-size: 3rem; */

  font-weight: 800;

  color: var(--main-color);

  line-height: 1;

  margin-bottom: 8px;

}



.stat-label {

  font-size: 14px;

  color: var(--text-color);

  opacity: 0.8;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

}



.hero-actions {

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

}



/* Ensure hero buttons are properly centered */

.hero-actions .default-btn,

.hero-actions .btn-light {

  text-align: center;

  display: inline-flex;

  align-items: center;

  justify-content: center;

}



.hero-visual {

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  pointer-events: none;

  z-index: 0;

}



.floating-element {

  position: absolute;

  width: 80px;

  height: 80px;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



.floating-element i {

  font-size: 32px;

  color: var(--main-color);

}



.floating-1 {

  top: 20%;

  left: 10%;

  animation: float 6s ease-in-out infinite;

}



.floating-2 {

  top: 60%;

  right: 15%;

  animation: float 6s ease-in-out infinite reverse;

  animation-delay: -2s;

}



.floating-3 {

  bottom: 20%;

  left: 15%;

  animation: float 6s ease-in-out infinite;

  animation-delay: -4s;

}



@keyframes float {

  0%, 100% { transform: translateY(0px) rotate(0deg); }

  50% { transform: translateY(-20px) rotate(180deg); }

}



/* Problem/Answer Section */

.problem-answer-section {

  padding: 100px 0;

  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

}



.problem-content {

  color: var(--heading-color);

  padding-right: 40px;

}



/* Badge aliases for backwards compatibility */

.problem-badge,

.answer-badge {

  display: inline-block;

  background: rgba(16, 185, 129, 0.1);

  color: var(--main-color);

  padding: 8px 20px;

  border-radius: 20px;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 24px;

  border: 1px solid rgba(16, 185, 129, 0.2);

}



.problem-content h2 {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--heading-color);

  margin-bottom: 24px;

  line-height: 1.2;

}



.problem-content p {

  font-size: 1.1rem;

  line-height: 1.7;

  color: var(--body-color);

  margin-bottom: 40px;

}



.video-info h4 {

  color: var(--heading-color);

  font-size: 1.2rem;

  font-weight: 700;

  margin-bottom: 8px;

}



.video-info p {

  color: var(--body-color);

  margin: 0;

  font-size: 0.9rem;

}



.answer-content {

  background: var(--white-color);

  border-radius: 20px;

  padding: 50px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

  position: relative;

}



.answer-content h2 {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--heading-color);

  margin-bottom: 24px;

  line-height: 1.2;

}



.answer-content p {

  font-size: 1.1rem;

  line-height: 1.7;

  color: var(--body-color);

  margin-bottom: 20px;

}



/* Comprehensive Technical Solutions Section */

.comprehensive-solutions-section {

  background: var(--white-color);

}



/* Tab-based Solutions Layout */

.solutions-tabs {

  margin-top: 60px;

}



.tab-nav {

  display: flex;

  justify-content: center;

  gap: 20px;

  margin-bottom: 50px;

  position: relative;

  z-index: 5;

}



.tab-btn {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 20px 40px;

  background: var(--white-color);

  border: 2px solid #e2e8f0;

  border-radius: 16px;

  cursor: pointer;

  transition: var(--transition);

  font-size: 1rem;

  font-weight: 600;

  color: var(--body-color);

  text-decoration: none;

  position: relative;

  z-index: 10;

  pointer-events: auto;

}



.tab-btn:hover {

  border-color: var(--main-color);

  color: var(--main-color);

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);

}



.tab-btn.active {

  background: var(--main-color);

  border-color: var(--main-color);

  color: var(--white-color);

  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);

}



.tab-btn i {

  font-size: 20px;

}



.tab-content {

  position: relative;

}



.tab-pane {

  display: none;

  animation: fadeInUp 0.5s ease-out;

}



.tab-pane.active {

  display: block;

}



@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(20px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.solution-hero {

  background: var(--white-color);

  border-radius: 20px;

  padding: 50px;

  margin-bottom: 40px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

}



.solution-intro h3 {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--heading-color);

  margin-bottom: 20px;

  line-height: 1.2;

}



.solution-intro p {

  font-size: 1.2rem;

  color: var(--body-color);

  line-height: 1.6;

  margin: 0;

}



.solution-visual {

  display: flex;

  justify-content: center;

  align-items: center;

}



.visual-card {

  text-align: center;

  padding: 40px;

  background: var(--main-color);

  border-radius: 20px;

  color: var(--white-color);

  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);

}



.visual-card i {

  font-size: 4rem;

  margin-bottom: 20px;

}



.visual-card h4 {

  font-size: 1.3rem;

  font-weight: 700;

  margin: 0;

}



.benefits-grid {

  margin-top: 40px;

}



.benefits-grid .row {

  margin-bottom: 0;

}



.benefits-grid .col-lg-4,

.benefits-grid .col-md-6 {

  margin-bottom: 30px;

}



.benefit-card {

  background: var(--white-color);

  padding: 40px 30px;

  border-radius: 16px;

  text-align: center;

  height: 100%;

  transition: var(--transition);

  border: 1px solid #e2e8f0;

  margin-bottom: 0;

}



.benefit-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);

  border-color: var(--main-color);

}



.benefit-icon {

  width: 80px;

  height: 80px;

  background: var(--main-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  transition: var(--transition);

}



.benefit-icon i {

  font-size: 32px;

  color: var(--white-color);

}



.benefit-card:hover .benefit-icon {

  transform: scale(1.1);

}



.benefit-card h4 {

  font-size: 1.2rem;

  font-weight: 700;

  color: var(--heading-color);

  margin-bottom: 15px;

  line-height: 1.3;

}



.benefit-card p {

  color: var(--body-color);

  font-size: 0.95rem;

  line-height: 1.6;

  margin: 0;

}



/* Enhanced Videos Section */

.videos-section {

  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

}



.videos-header {

  margin-bottom: 80px;

}



.videos-header h2 {

  font-size: 2.8rem;

  font-weight: 800;

  color: var(--heading-color);

  margin: 20px 0;

  line-height: 1.2;

}



.videos-header p {

  font-size: 1.2rem;

  color: var(--body-color);

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;

}



.videos-grid {

  display: grid;

  gap: 60px;

}



/* Video Item - Only for screens wider than 1024px */

@media (min-width: 1025px) {

  .video-item {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    background: var(--white-color);

    border-radius: 24px;

    padding: 50px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    transition: var(--transition);

  }



  .video-item:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);

  }

}



/* For screens 1024px and below, video-item becomes a simple flex container */

@media (max-width: 1024px) {

  .video-item {

    display: flex;

    flex-direction: column;

    gap: 30px;

    background: var(--white-color);

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  }

  

  .video-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  }

}



/* Office Environment Styling */

.office-environment.combined-offices {

  display: flex !important; /* Override any grid behavior */

  flex-direction: column;

  gap: 80px;

  grid-template-columns: none !important; /* Remove any grid columns */

}



.office-section {

  display: flex !important; /* Ensure flexbox layout */

  align-items: stretch;

  gap: 60px;

  min-height: 400px;

  width: 100%;

}



.office-section.us-section {

  /* US Section: Description left, video right - default flex direction */

  flex-direction: row;

}



.office-section.kenya-section {

  /* Kenya Section: Video first, then content */

  flex-direction: row;

}



.office-section .video-content {

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 0;

}



.office-section .video-wrapper {

  flex: 1;

  position: relative;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition: var(--transition);

  background: #f8fafc;

  min-height: 350px;

  display: flex;

  align-items: center;

  padding-bottom: 0 !important; /* Override the general video-wrapper padding */

  height: auto !important; /* Override any height restrictions */

}



.office-section .video-wrapper:hover {

  transform: scale(1.02);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

}



/* ========================================

   VIDEO WRAPPER SYSTEM - REUSABLE COMPONENTS

   ========================================

   

   USAGE GUIDE:

   

   1. DEFAULT VIDEO (.video-wrapper)

      - Standard 16:9 aspect ratio

      - Perfect for most video content

      - Automatically responsive

      Usage: <div class="video-wrapper">

   

   2. FULL WIDTH VIDEO (.video-wrapper.full-width)

      - Enhanced shadows and larger border radius

      - Perfect for hero sections or featured videos

      Usage: <div class="video-wrapper full-width">

   

   3. EMBEDDED VIDEO (.video-wrapper.embedded)

      - Fixed height (315px on desktop, responsive on mobile)

      - Good for content sections with predetermined height

      Usage: <div class="video-wrapper embedded">

   

   CONTEXT-SPECIFIC:

   - Office sections use custom flexible height behavior

   - All variants support hover effects and responsive design

   - Mobile breakpoints: 1200px, 991px, 768px

   

   ======================================== */



/* Base Video Wrapper - Default 16:9 Aspect Ratio */

.video-wrapper {

  position: relative;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition: var(--transition);

  padding-bottom: 56.25%; /* 16:9 aspect ratio */

  height: 0;

  background: #f8fafc;

}



.video-wrapper:hover {

  transform: scale(1.02);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

}



.video-wrapper iframe {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: none;

  border-radius: 16px;

  display: block;

}



/* Video Wrapper Variants */



/* 1. Full Width Video - For hero sections */

.video-wrapper.full-width {

  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

}



.video-wrapper.full-width iframe {

  border-radius: 20px;

}



/* 2. Embedded Video - For content sections with fixed height */

.video-wrapper.embedded {

  padding-bottom: 0;

  height: 315px;

  background: #000;

}



.video-wrapper.embedded iframe {

  position: relative;

  height: 100%;

}



/* Context-Specific Overrides */



/* Office Section Videos - Use flexible height */

.office-section .video-wrapper {

  flex: 1;

  position: relative;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition: var(--transition);

  background: #f8fafc;

  min-height: 350px;

  display: flex;

  align-items: center;

  padding-bottom: 0 !important;

  height: auto !important;

}



.office-section .video-wrapper:hover {

  transform: scale(1.02);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

}



.office-section .video-wrapper iframe {

  position: relative !important;

  top: auto !important;

  left: auto !important;

  width: 100%;

  height: 100%;

  min-height: 300px;

  border: none;

  border-radius: 16px;

  display: block;

}



.video-content {

  padding: 20px 0;

}



.content-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: rgba(16, 185, 129, 0.1);

  color: var(--main-color);

  padding: 12px 24px;

  border-radius: 25px;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 24px;

  border: 1px solid rgba(16, 185, 129, 0.2);

  max-width: fit-content;

}



.content-badge i {

  font-size: 16px;

}



.video-content h3 {

  font-size: 2.2rem;

  font-weight: 800;

  color: var(--heading-color);

  margin-bottom: 20px;

  line-height: 1.3;

}



.video-content p {

  font-size: 1rem;

  line-height: 1.7;

  color: var(--body-color);

  margin-bottom: 30px;

}



.video-features {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}



.feature-item {

  display: flex;

  align-items: center;

  gap: 8px;

  background: #f8fafc;

  padding: 12px 20px;

  border-radius: 25px;

  font-size: 14px;

  font-weight: 600;

  color: var(--heading-color);

  border: 1px solid #e2e8f0;

  transition: var(--transition);

}



.feature-item:hover {

  background: rgba(16, 185, 129, 0.1);

  border-color: var(--main-color);

  color: var(--main-color);

}



.feature-item i {

  font-size: 16px;

  color: var(--main-color);

}



/* Responsive Design for Videos */

@media (max-width: 1200px) {

  .office-environment.combined-offices {

    gap: 60px;

  }

  

  .office-section {

    gap: 40px;

    min-height: 350px;

  }

  

  .office-section .video-wrapper {

    min-height: 320px;

  }

  

  .office-section .video-wrapper iframe {

    min-height: 280px;

  }

  

  .videos-header h2 {

    font-size: 2.4rem;

  }

  

  .video-content h3 {

    font-size: 2rem;

  }

  

  .content-badge {

    padding: 10px 20px;

    font-size: 13px;

    margin-bottom: 20px;

  }

}



@media (max-width: 991px) {

  .office-environment.combined-offices {

    gap: 50px;

  }

  

  .office-section {

    flex-direction: column !important;

    gap: 30px;

    min-height: auto;

  }

  

  .office-section .video-wrapper {

    min-height: 250px;

    order: 2;

  }

  

  .office-section .video-content {

    order: 1;

  }

  

  .office-section .video-wrapper iframe {

    min-height: 250px;

  }

  

  .videos-header {

    margin-bottom: 60px;

  }

  

  .videos-header h2 {

    font-size: 2.2rem;

  }

  

  .video-content h3 {

    font-size: 1.8rem;

  }

  

  .content-badge {

    padding: 8px 16px;

    font-size: 12px;

    margin-bottom: 18px;

  }

  

  .videos-grid {

    gap: 40px;

  }

  .problem-content{

    margin-bottom: 25px;

  }

}



@media (max-width: 768px) {

  .office-environment.combined-offices {

    gap: 40px;

  }

  

  .office-section {

    gap: 25px;

  }

  

  .office-section .video-wrapper {

    min-height: 200px;

  }

  

  .office-section .video-wrapper iframe {

    min-height: 200px;

  }

  

  .video-wrapper.embedded {

    height: 250px;

  }

  

  .videos-header h2 {

    font-size: 2rem;

  }

  

  .videos-header p {

    font-size: 1.1rem;

  }

  

  .video-content h3 {

    font-size: 1.6rem;

  }

  

  .content-badge {

    padding: 6px 14px;

    font-size: 11px;

    margin-bottom: 16px;

    gap: 8px;

  }

  

  /* Tab buttons tablet responsive */

  .tab-nav {

    flex-direction: column;

    gap: 15px;

  }

  

  .tab-btn {

    padding: 16px 24px;

    font-size: 0.95rem;

  }

  

  .hero-title-large {

    font-size: 3.5rem !important;

  }

  

  .hero-description-large {

    font-size: 1.6rem !important;

  }

  

  .feature-item {

    padding: 10px 16px;

    font-size: 13px;

  }

  

  .videos-grid {

    gap: 30px;

  }

}



@media (max-width: 480px) {

  .hero-visual{display: none;}

  .hero-title-large {

    font-size: 2.5rem !important;

  }

  

  .hero-description-large {

    font-size: 1.4rem !important;

  }

  

  .content-badge {

    padding: 5px 12px;

    font-size: 10px;

    margin-bottom: 14px;

    gap: 6px;

    letter-spacing: 0.5px;

  }

  

  /* Tab buttons mobile responsive */

  .tab-nav {

    flex-direction: column;

    gap: 10px;

  }

  

  .tab-btn {

    padding: 12px 20px;

    font-size: 0.9rem;

    text-align: center;

  }

  

  .tab-btn i {

    font-size: 16px;

  }

  

  /* Testimonial cards mobile spacing */

  .testimonial-card {

    margin-bottom: 30px !important;

    padding: 18px;

  }

  

  /* Ensure testimonial grid spacing */

  .testimonials-grid .col-lg-4,

  .testimonials-grid .col-md-6 {

    margin-bottom: 30px !important;

  }

  

  /* Problem content mobile center alignment */

  .problem-content {

    text-align: center;

    padding-right: 0;

  }

  

  .problem-content h2 {

    font-size: 2rem;

  }

  .hero-badge{

    margin-top: 85px;

  }

  .solution-intro h3 {

    font-size: 1.8rem;

  }

    .section-title h2{

      font-size: 1.8rem;

    }

  .videos-header h2 {

    font-size: 1.8rem;

  }

  .answer-content h2 {

    font-size: 1.8rem;

  }

}



/* ========================================

   TESTIMONIALS SECTION

   ======================================== */



.testimonials-section {

  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

  position: relative;

}



.testimonials-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2310b981" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;

  pointer-events: none;

}



.testimonials-header {

  margin-bottom: 80px;

  position: relative;

  z-index: 2;

}



.testimonials-header h2 {

  font-size: 2.8rem;

  font-weight: 800;

  color: var(--heading-color);

  margin: 20px 0;

  line-height: 1.2;

}



.testimonials-header p {

  font-size: 1.2rem;

  color: var(--body-color);

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;

}



.testimonials-grid {

  margin-bottom: 80px;

  position: relative;

  z-index: 2;

}



.testimonial-card {

  background: var(--white-color);

  border-radius: 20px;

  padding: 40px;

  height: 100%;

  display: flex;

  flex-direction: column;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: var(--transition);

  position: relative;

  margin-bottom: 30px;

  border: 1px solid rgba(16, 185, 129, 0.1);

}



.testimonial-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

  border-color: rgba(16, 185, 129, 0.2);

}



.testimonial-content {

  flex: 1;

  margin-bottom: 30px;

}



.testimonial-content p {

  font-size: 1.1rem;

  line-height: 1.7;

  color: var(--body-color);

  font-style: italic;

  margin: 0;

  position: relative;

}



.testimonial-content p::before {

  content: '"';

  font-size: 4rem;

  color: var(--main-color);

  position: absolute;

  top: -20px;

  left: -20px;

  font-family: Georgia, serif;

  opacity: 0.3;

  line-height: 1;

}



.testimonial-author {

  display: flex;

  align-items: center;

  gap: 16px;

  padding-top: 20px;

  border-top: 1px solid rgba(0, 0, 0, 0.1);

}



.author-avatar {

  width: 60px;

  height: 60px;

  background: var(--main-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--white-color);

  font-size: 24px;

  flex-shrink: 0;

}



.author-info h4 {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--heading-color);

  margin: 0 0 4px 0;

}



.author-info span {

  font-size: 0.9rem;

  color: var(--body-color);

  display: block;

  margin-bottom: 8px;

}



.company-badge {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  background: rgba(16, 185, 129, 0.1);

  color: var(--main-color);

  padding: 4px 12px;

  border-radius: 12px;

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.company-badge i {

  font-size: 14px;

}



/* Testimonials CTA */

.testimonials-cta {

  position: relative;

  z-index: 2;

}







/* Responsive Design for Testimonials */

@media (max-width: 1200px) {

  .testimonial-card {

    padding: 30px;

  }

  

  .testimonials-header h2 {

    font-size: 2.4rem;

  }

  

  .cta-content {

    padding: 50px;

  }

  

  .cta-content h3 {

    font-size: 2rem;

  }

}



@media (max-width: 991px) {

  .testimonials-header {

    margin-bottom: 60px;

  }

  

  .testimonials-header h2 {

    font-size: 2.2rem;

  }

  

  .testimonial-card {

    padding: 24px;

  }

  

  .testimonials-grid {

    margin-bottom: 60px;

  }

  

  .cta-content {

    padding: 40px;

  }

  

  .cta-content h3 {

    font-size: 1.8rem;

  }

}



@media (max-width: 768px) {

  .testimonials-header {

    margin-bottom: 40px;

  }

  

  .testimonials-header h2 {

    font-size: 1.8rem;

  }

  

  .testimonials-header p {

    font-size: 1rem;

  }

  

  .testimonial-card {

    padding: 20px;

    margin-bottom: 20px;

  }

  

  .testimonial-content p {

    font-size: 1rem;

  }

  

  .testimonial-content p::before {

    font-size: 3rem;

    top: -15px;

    left: -15px;

  }

  

  .author-avatar {

    width: 50px;

    height: 50px;

    font-size: 20px;

  }

  

  .author-info h4 {

    font-size: 1rem;

  }

  

  .author-info span {

    font-size: 0.85rem;

  }

  

  .company-badge {

    font-size: 11px;

    padding: 3px 10px;

  }

  

  .testimonials-grid {

    margin-bottom: 40px;

  }

  

  .cta-content {

    padding: 30px 20px;

  }

  

  .cta-content h3 {

    font-size: 1.5rem;

  }

  

  .cta-content p {

    font-size: 1rem;

  }



  



  /* Hero stats responsive */

  .hero-stats {

    gap: 40px;

    margin-bottom: 40px;

  }

  

  .stat-number {

    font-size: 2.5rem;

  }

  

  .stat-label {

    font-size: 13px;

  }

}



/* ========================================

   HYBRID SHORE BENEFITS STYLING

   ======================================== */

.hybrid-benefits {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 16px;

  margin-top: 24px;

  margin-bottom: 24px;

}



.hybrid-benefits .benefit-item {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 16px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  transition: all 0.3s ease;

  backdrop-filter: blur(10px);

}



.hybrid-benefits .benefit-item:hover {

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(25, 135, 84, 0.3);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}



.statrss > .stat-label {

  font-size: 18px !important;

  gap: 2px;

}

.statrss > .stat-label > a {

  color: white !important;

}



@media (max-width: 768px) {

  .statrss > .stat-label {

    font-size: 12px !important;

  }

  .statrss {

  flex-direction: row !important;

  padding-top: 10px;

}

}



.hybrid-benefits .benefit-item i {

  font-size: 18px;

  color: #17a2b8;

  background: rgba(23, 162, 184, 0.1);

  padding: 8px;

  border-radius: 50%;

  min-width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

}



.hybrid-benefits .benefit-item:hover i {

  color: #fff;

  background: #17a2b8;

  transform: scale(1.1);

}



.hybrid-benefits .benefit-item span {

  font-size: 14px;

  font-weight: 500;

  color: var(--text-color);

  flex: 1;

}



/* Icon specific colors */

.hybrid-benefits .benefit-item:nth-child(1) i { color: #28a745; background: rgba(40, 167, 69, 0.1); }



.hybrid-benefits .benefit-item:nth-child(2) i { color: #6f42c1; background: rgba(111, 66, 193, 0.1); }



.hybrid-benefits .benefit-item:nth-child(3) i { color: #fd7e14; background: rgba(253, 126, 20, 0.1); }



.hybrid-benefits .benefit-item:nth-child(4) i { color: #20c997; background: rgba(32, 201, 151, 0.1); }



.hybrid-benefits .benefit-item:nth-child(5) i { color: #e83e8c; background: rgba(232, 62, 140, 0.1); }



.hybrid-benefits .benefit-item:nth-child(6) i { color: #17a2b8; background: rgba(23, 162, 184, 0.1); }



.hybrid-benefits .benefit-item:nth-child(7) i { color: #dc3545; background: rgba(220, 53, 69, 0.1); }



.hybrid-benefits .benefit-item:nth-child(8) i { color: #ffc107; background: rgba(255, 193, 7, 0.1); }



/* Responsive adjustments */

@media (max-width: 768px) {

  .hybrid-benefits {

    grid-template-columns: 1fr;

    gap: 12px;

  }

  

  .hybrid-benefits .benefit-item {

    padding: 10px 14px;

  }

  

  .hybrid-benefits .benefit-item i {

    font-size: 16px;

    min-width: 30px;

    height: 30px;

    padding: 6px;

  }

  

  .hybrid-benefits .benefit-item span {

    font-size: 13px;

  }

}



@media (max-width: 576px) {

  .hybrid-benefits {

    grid-template-columns: 1fr;

  }

  

  /* Hero buttons for very small screens */

  .hero-actions {

    gap: 12px;

    flex-direction: column;

    align-items: center;

  }

  

  .hero-actions .default-btn,

  .hero-actions .btn-light {

    width: 100%;

    max-width: 280px;

    padding: 14px 24px;

    font-size: 15px;

    min-height: 50px;

    text-align: center;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

  }

  

  /* Hero stats for very small screens */

  .hero-stats {

    gap: 30px;

    margin-bottom: 30px;

  }

  

  .stat-number {

    font-size: 2.2rem;

  }

  

  .stat-label {

    font-size: 12px;

  }

}