/* Fixed Small Navbar Styling */
.small-navbar {
  background-color: #3d3d3d;
  padding: 0px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.small-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.small-nav-item {
  margin-left: 20px;
  font-size: 14px;
}

.small-nav-item:first-child {
  margin-right: auto;
  margin-left: 0;
}

.small-nav-link {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.small-nav-link:hover {
  color: #f26622;
  text-decoration: none;
}

.small-nav-link i {
  margin-right: 5px;
}

.contact-link {
  font-weight: 600;
  color: #f26622;
}

.schedule-link {
  font-weight: 500;
}

@media (max-width: 767px) {
  .small-nav-list {
    justify-content: center;
  }
  
  .small-nav-item {
    margin: 0 10px;
    font-size: 12px;
  }
  
  .small-nav-item:first-child {
    margin: 0 10px;
    order: 1;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .small-nav-link {
    justify-content: center;
  }
}

/* Mobile-Only Navbar Styling */
@media (max-width: 991px) {
  /* Make navbar transparent on mobile */
  .navbar-container.sticky-top {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 5px 0 !important;
  }
  
  /* Make logo smaller on mobile */
  .navbar-container .logo img {
    max-height: 85px !important;
  }
  
  /* Style the hamburger menu */
  .navbar-toggler {
    padding: 5px !important;
    border: none !important;
  }
  
  .icon-bar i {
    color: #fff !important;
    font-size: 22px !important;
  }
  
  /* Style the dropdown menu background */
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85) !important;
    margin-top: 5px !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }
  
  /* Social media icons */
  .header-icon li {
    margin-left: 5px !important;
  }
  
  .header-icon i {
    font-size: 12px !important;
    padding: 6px !important;
  }
  
  /* Add a semi-transparent background when scrolled */
  .navbar-container.scrolled {
    background-color: rgba(0, 0, 0, 0.5) !important;
  }
}

/* Make the script overwrite any scrolling behavior for mobile */

/* Sticky Navbar Styling */
.navbar-container.sticky-top {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Call nav link styling */
.call-nav-link {
  display: flex;
  align-items: center;
  color: #f26622 !important;
  font-weight: 500;
}

.call-nav-link i {
  margin-right: 5px;
}

/* Modern Header Styling */
.header {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* Video Container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Hero Content */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 50px 0;
}

/* Hero Text */
.hero-text {
  color: white;
  padding-top: 35px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #f26622;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #f26622;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e55b16;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: white;
  color: white;
  text-decoration: none;
}

/* Form Card */
.form-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-top: 100px;
}

.form-header {
  background: linear-gradient(135deg, #f26622, #ff8956);
  padding: 25px 30px;
  text-align: center;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.form-header span {
  color: #fff;
}

.form-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

#contact-Form {
  padding: 30px 30px 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-control:focus {
  border-color: #f26622;
  box-shadow: 0 0 0 3px rgba(242, 102, 34, 0.1);
  outline: none;
}

.form-footer {
  margin-top: 10px;
}

.submit-button {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #f26622, #ff8956);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
  transform: translateY(-3px);
}

.form-note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Form Contact Options */
.form-contact-options {
  display: flex;
  justify-content: center;
  padding: 20px 30px 20px;
  gap: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 10px;
}

.contact-option {
  flex: 1;
  max-width: 270px;
}

.contact-option a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 10 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option a:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #f26622;
}

.contact-option i {
  font-size: 14px;
  margin-right: 8px;
  color: #f26622;
}

/* Mobile CTA Box Styling */
.mobile-cta-box {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.mobile-cta-box span {
  color: #f26622;
}

.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-cta-button i {
  margin-right: 8px;
}

.mobile-cta-button.primary {
  background: linear-gradient(135deg, #f26622, #ff8956);
  color: white;
}

.mobile-cta-button.call {
  background-color: #28a745;
  color: white;
}

.mobile-cta-button.schedule {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.mobile-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.mobile-cta-button.schedule:hover {
  color: #f26622;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0 0 10px 10px;
  }
  
  .nav-item {
    margin-bottom: 10px;
  }
  
  .call-nav-link {
    display: inline-flex;
  }
  
  .hero-text h1 {
    font-size: 40px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .header {
    height: auto;
    min-height: auto;
    padding: 80px 0 30px;
  }
  
  .hero-content {
    padding: 0;
  }
  
  .hero-text {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .mobile-cta-box {
    margin-bottom: 20px;
  }
}

/* Utility classes */
.d-none {
  display: none !important;
}

.d-md-block {
  display: block;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  
  .d-none.d-md-block {
    display: block !important;
  }
}

/* Modern Why Partner Section Styling */
.why-partner-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.feature-image-container {
  position: relative;
  margin-bottom: 40px;
}

.feature-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.image-accent {
  position: absolute;
  width: 60%;
  height: 70%;
  bottom: -30px;
  left: -30px;
  background: linear-gradient(135deg, #f26622, #ff8956);
  border-radius: 12px;
  z-index: 1;
}

.partner-content {
  padding-left: 20px;
}

.section-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #f26622;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.section-title span {
  color: #f26622;
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f26622, #ff8956);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.check-icon i {
  color: white;
  font-size: 12px;
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.benefit-text p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.investment-highlights {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 4px solid #f26622;
}

.highlight-header {
  text-align: center;
  margin-bottom: 40px;
}

.highlight-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.highlight-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.highlights-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.highlight-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 20px;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(242, 102, 34, 0.2);
  transition: all 0.3s ease;
}

.highlight-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(242, 102, 34, 0.2);
}

.highlight-icon img {
  width: 45px;
  height: auto;
}

.highlight-icon i {
  font-size: 32px;
  color: #f26622;
}

.highlight-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f26622;
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.mt-5 {
  margin-top: 3rem !important;
}

@media (max-width: 991px) {
  .why-partner-section {
    padding: 70px 0;
  }
  
  .feature-image-container {
    max-width: 500px;
    margin: 0 auto 50px;
  }
  
  .partner-content {
    padding-left: 0;
  }
  
  .highlight-item {
    flex-basis: 33.33%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .highlights-row {
    flex-direction: column;
    align-items: center;
  }
  
  .highlight-item {
    flex-basis: 100%;
    max-width: 250px;
    margin-bottom: 30px;
  }
  
  .highlight-item:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .investment-highlights {
    padding: 30px 20px;
  }
}

/* Modern Benefits Section Styling */
.benefits-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(242, 101, 34, 0.05);
  border-radius: 50%;
  transform: translate(100px, -150px);
  z-index: 0;
}

.benefits-wrapper {
  position: relative;
  z-index: 1;
  margin: 30px 0 50px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f26622, #ff8956);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f26622, #ff8956);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 28px;
  color: white;
}

.benefit-content {
  flex: 1;
}

.benefit-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.benefit-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.benefits-cta {
  background: linear-gradient(135deg, #f26622, #ff8956);
  padding: 50px 30px;
  border-radius: 15px;
  color: white;
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.3);
  margin-top: 30px;
}

.benefits-cta h4 {
  color: white;
  font-size: 28px;
  margin-bottom: 15px;
}

.benefits-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 25px;
}

.benefits-cta .buten {
  background-color: white;
  color: #f26622;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.benefits-cta .buten:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 30px;
  }
  
  .benefits-cta {
    padding: 30px 20px;
  }
  
  .benefits-cta h4 {
    font-size: 24px;
  }
  
  .benefits-cta p {
    font-size: 16px;
  }
}

/* Modern Comparative Section Styling */
.comparison-wrapper {
  margin-top: 50px;
  position: relative;
}

.comparison-header {
  margin-bottom: 40px;
}

.vs-circle {
  width: 60px;
  height: 60px;
  background-color: #f26522;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.comparison-item {
  margin-bottom: 30px;
}

.comparison-box {
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comparison-box.franchise {
  background-color: #fff;
  border-left: 4px solid #e74c3c;
}

.comparison-box.partnership {
  background-color: #fff;
  border-left: 4px solid #2ecc71;
}

.comparison-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.comparison-box h5 {
  margin: 15px 0;
  font-weight: 600;
}

.comparison-box p {
  margin-bottom: 0;
  font-size: 15px;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.comparison-box.franchise .icon-wrapper {
  background-color: #fff3f3;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.comparison-box.partnership .icon-wrapper {
  background-color: #f0fff6;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.comparison-box.franchise .icon-wrapper i {
  color: #e74c3c;
  font-size: 28px;
}

.comparison-box.partnership .icon-wrapper i {
  color: #2ecc71;
  font-size: 28px;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #f26522;
}

@media (max-width: 768px) {
  .comparison-item {
    margin-bottom: 50px;
  }
  
  .comparison-box {
    margin-bottom: 20px;
  }
  
  .arrow-right {
    transform: rotate(90deg);
    margin: 15px 0;
  }
}

/* Modern Testimonials Section Styling */
.testimonials-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f26622' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.section-head h4 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-image {
  position: relative;
  margin-right: 20px;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f26622, #ff8956);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.testimonial-author {
  flex: 1;
}

.testimonial-author h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #f26622;
  display: block;
  margin-bottom: 8px;
}

.rating {
  color: #FFD700;
  font-size: 14px;
}

.testimonial-content {
  padding: 25px;
  flex: 1;
  display: flex;
  align-items: center;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
  margin: 0;
}

.testimonial-footer {
  padding: 20px 25px;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-footer h6 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-footer a {
  color: #f26622;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.testimonial-footer a i {
  margin-right: 6px;
}

.testimonial-footer a:hover {
  color: #d14e0c;
}

.mt-5 {
  margin-top: 3rem !important;
}

.join-partners-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f26622, #ff8956);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(242, 101, 34, 0.3);
}

.join-partners-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.join-partners-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(242, 101, 34, 0.4);
  color: white;
  text-decoration: none;
}

.join-partners-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .testimonials-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 70px 0;
  }
  
  .section-head h4 {
    font-size: 30px;
  }
  
  .testimonial-card {
    margin-bottom: 30px;
  }
}

/* Modern Contact Section Styling */
  
.schedule-link a {
  display: inline-flex;
  align-items: center;
  color: #f26622;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.schedule-link a i {
  margin-right: 8px;
}

.schedule-link a:hover {
  color: #d14e0c;
}
  
.contact-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-head {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-head h4 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

/* Contact Form Card Styling */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.form-header {
  background: linear-gradient(135deg, #f26622, #ff8956);
  padding: 30px;
  color: white;
  text-align: center;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.form-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Territory Features */
.territory-features {
  padding: 30px;
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item i {
  color: #f26622;
  font-size: 18px;
  margin-right: 10px;
  min-width: 18px;
}

.feature-item span {
  font-size: 15px;
  color: #555;
}

/* Form Styling */
#contact-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
  border-color: #f26622;
  outline: none;
}

.form-consent {
  margin-top: 15px;
  margin-bottom: 25px;
}

.form-consent p {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

.submit-button {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #f26622, #ff8956);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
  transform: translateY(-3px);
}

/* Form Footer with Buttons */
.form-footer {
  padding: 0 30px 30px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.buten {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #f26622;
  color: white;
  border: none;
}

.buten:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
  color: white;
  text-decoration: none;
}

.buten.secondary {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.buten.secondary:hover {
  background-color: #ebebeb;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .section-head h4 {
    font-size: 24px;
  }
  
  .form-header {
    padding: 25px 20px;
  }
  
  .territory-features {
    padding: 25px 20px;
  }
  
  #contact-form {
    padding: 25px 20px;
  }
  
  .form-footer {
    padding: 0 20px 25px;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .buten {
    width: 100%;
  }
}

/* Modern Footer Styling */
.footer {
  background-color: #222;
  color: #aaa;
  font-size: 15px;
  position: relative;
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-line {
  width: 50px;
  height: 3px;
  background: #f26622;
  margin-bottom: 20px;
}

.about-text {
  line-height: 1.8;
  margin-bottom: 25px;
  color: #aaa;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(0px);
  color: #fff;
}

.social-icon.facebook:hover {
  background-color: #3b5998;
}

.social-icon.youtube:hover {
  background-color: #ff0000;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links li:first-child {
  padding-top: 0;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links li a {
  color: #aaa;
  transition: all 0.3s ease;
  display: block;
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 12px;
  color: #f26622;
}

.footer-links li a:hover {
  color: #f26622;
  text-decoration: none;
  padding-left: 5px;
}

.footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact li:first-child {
  padding-top: 0;
}

.footer-contact li:last-child {
  border-bottom: none;
}

.footer-contact li i {
  margin-right: 12px;
  color: #f26622;
  margin-top: 5px;
}

.footer-contact li a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-contact li a:hover {
  color: #f26622;
  text-decoration: none;
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  margin-bottom: 0;
  color: #aaa;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav li {
  margin-left: 20px;
  position: relative;
}

.footer-nav li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.footer-nav li:first-child:before {
  display: none;
}

.footer-nav li a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-nav li a:hover {
  color: #f26622;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-top {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767px) {
  .footer-nav {
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright {
    text-align: center;
  }
  
  .footer-nav li {
    margin: 0 10px;
  }
  
  .footer-nav li:before {
    display: none;
  }
}

 .comparison-box.partnership {
    position: relative; /* Ensure the container is positioned relatively */
    overflow: visible; /* Allow the logo to overflow the box */
  }
  
  .partnership-logo {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    z-index: 2;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .partnership-logo img {
    padding-top: 5px;
    width: 90%;
    height: 90%;
    object-fit: cover;
  }

