.bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
}

.video-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.363) !important;
  z-index: 2 !important;
}

.video-section .container {
  position: relative !important;
  z-index: 3 !important;
}

/* Hero Content */
.hero-content {
  color: #fff !important;
  text-align: left !important;
}

/* Badge */
.client-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  margin-bottom: 25px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  letter-spacing: 0.5px !important;
}

.clients-img {
  display: flex !important;
  align-items: center !important;
}

.clients-img img {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 2px solid #FFB300 !important;
  margin-left: -10px !important;
  transition: transform 0.3s ease !important;
}

.clients-img img:first-child {
  margin-left: 0 !important;
}

.clients-img img:hover {
  transform: translateY(-3px) !important;
  border-color: #FF8F00 !important;
}

/* Title */
.hero-title {
  font-size: 64px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #E0E1DD !important;
  margin-bottom: 20px !important;
  letter-spacing: -1px !important;
}

.hero-title span {
  color: #FFB300 !important;
  background: linear-gradient(135deg, #FFB300, #FF8F00) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
}

/* Text */
.hero-text {
  margin-top: 20px !important;
  margin-bottom: 35px !important;
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 550px !important;
  line-height: 1.6 !important;
}

/* Button */
.hero-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  background: linear-gradient(135deg, #FFB300, #FF8F00) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3) !important;
  border: none !important;
  cursor: pointer !important;
}

.hero-btn:hover {
  transform: translateY(-3px) !important;
  background: linear-gradient(135deg, #FF8F00, #FF6F00) !important;
  box-shadow: 0 8px 25px rgba(255, 180, 0, 0.4) !important;
}

.hero-btn:active {
  transform: translateY(0) !important;
}

/* Animation for elements */
.hero-content {
  animation: fadeInUp 0.8s ease-out !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 48px !important;
  }
  .hero-text {
    font-size: 16px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px !important;
    letter-spacing: -0.5px !important;
  }
  .hero-btn {
    padding: 12px 28px !important;
    font-size: 14px !important;
  }
  .client-badge {
    padding: 6px 16px !important;
    font-size: 11px !important;
  }
  .clients-img img {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px !important;
  }
  .hero-text {
    font-size: 14px !important;
  }
  .hero-btn {
    padding: 10px 24px !important;
    font-size: 13px !important;
  }
}

/* ======================= logo.css ===================== */
      /* Using Root Variables */
:root {
  --ot-title-font: "Montserrat", sans-serif;
  --ot-body-font: "Noto Sans", sans-serif;
  --ot-style-font: "Montserrat", sans-serif;
  --ot-icon-font: "fontawesome";
  --ot-ripple-ani-duration: 2s;
  --ot-theme-color: #f07400;
  --ot-theme-color2: #FFB300;
  --ot-title-color: #415A77;
  --ot-title-color2: #1B263B;
  --ot-dark-color: #080C14;
  --ot-body-color: #415A77;
  --ot-stroke-color: #778DA9;
  --ot-border-color: #E0E1DD;
  --ot-smoke-color: #E8F0FE;
  --ot-smoke-color2: #1A3A5F;
  --ot-white-color: #FFFFFF;
  --ot-placeholder-color: #778DA9;
  --ot-black-color: #000000;
  --ot-gray-color: #F0F4F8;
  --ot-error-color: #DC3545;
  --ot-ecommerce-bg1: #76d8ff;
}

/* Global Styles */
.ot-about-area {
  padding: 100px 0;
  background: var(--ot-white-color);
}

.ot-service-area {
  padding: 100px 0;
  background: var(--ot-title-color);
  position: relative;
}


/* Section Tags */
.section-tag {
  display: inline-block;
  background: rgba(240, 116, 0, 0.12);
  color: var(--ot-theme-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: var(--ot-title-font);
}

.tag-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ot-theme-color2);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ot-dark-color);
  font-family: var(--ot-title-font);
}

.section-title span {
  color: var(--ot-theme-color2);
}

.text-white {
  color: var(--ot-white-color);
}

.text-white-light {
  color: rgba(255, 255, 255, 0.75);
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ot-body-color);
  font-family: var(--ot-body-font);
}

/* About Section Images */
.ot-about-imgbox {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-main-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.experience-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--ot-theme-color2), var(--ot-theme-color));
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  color: var(--ot-white-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--ot-title-font);
}

/* Info Cards */
.info-card {
  background: var(--ot-smoke-color);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ot-theme-color2);
  margin-bottom: 15px;
  font-family: var(--ot-title-font);
}

.info-card p {
  font-size: 14px;
  color: var(--ot-body-color);
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: var(--ot-body-font);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-size: 13px;
  color: var(--ot-body-color);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-family: var(--ot-body-font);
}

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ot-theme-color2);
  font-weight: bold;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--ot-theme-color2);
  color: var(--ot-theme-color2);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--ot-title-font);
}

.btn-primary:hover {
  background: var(--ot-theme-color2);
  color: var(--ot-white-color);
  transform: translateY(-3px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--ot-theme-color2), var(--ot-theme-color));
  border: none;
  color: var(--ot-white-color);
  box-shadow: 0 4px 15px rgba(240, 116, 0, 0.3);
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--ot-theme-color), var(--ot-theme-color2));
  color: var(--ot-white-color);
  box-shadow: 0 8px 25px rgba(240, 116, 0, 0.4);
}

/* Team Info */
.team-info {
  background: var(--ot-gray-color);
  padding: 8px 20px 8px 8px;
  border-radius: 60px;
}

.team-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--ot-theme-color2);
}

.team-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--ot-title-color);
  font-family: var(--ot-title-font);
}

.team-info span {
  font-size: 12px;
  color: var(--ot-stroke-color);
  font-family: var(--ot-body-font);
}

/* Stats Box */
.stats-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--ot-theme-color2);
  font-family: var(--ot-title-font);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-family: var(--ot-body-font);
}

/* Service Cards */
.service-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 116, 0, 0.3);
}

.service-img {
  flex-shrink: 0;
  margin-right: 20px;
}

.service-img img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.service-content {
  flex: 1;
}

.service-content h3 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--ot-theme-color2);
  text-decoration: none;
  font-family: var(--ot-title-font);
}

.service-content h3 a:hover {
  color: var(--ot-theme-color);
}

.service-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 8px 0;
  font-family: var(--ot-body-font);
}

.read-more {
  display: inline-block;
  color: var(--ot-theme-color2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--ot-title-font);
}

.read-more:hover {
  color: var(--ot-theme-color);
  transform: translateX(5px);
}

.service-icon {
  flex-shrink: 0;
  margin-left: 15px;
}

.service-icon i {
  font-size: 40px;
  color: var(--ot-theme-color2);
  opacity: 0.6;
}

.service-card-item:hover .service-icon i {
  opacity: 1;
  color: var(--ot-theme-color);
}
/* ======================= RESPONSIVE LOGO STYLES ===================== */

/* Default logo styling */
.logo,
.navbar-brand,
.site-logo {
  display: inline-block;
  max-width: 100%;
}

.logo a,
.navbar-brand a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Text-based logo (like VoltEdge Energies) */
.logo-text {
  font-family: var(--ot-title-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--ot-dark-color);
  line-height: 1.2;
}

.logo-text span {
  color: var(--ot-theme-color);
}

.logo-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--ot-stroke-color);
  letter-spacing: 2px;
}

/* Image based logo */
.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
  .logo-text {
    font-size: 24px;
  }
  
  .logo img {
    max-height: 50px;
  }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
  .logo-text {
    font-size: 20px;
  }
  
  .logo-sub {
    font-size: 10px;
  }
  
  .logo img {
    max-height: 42px;
  }
}

/* Small Mobile (up to 576px) */
@media (max-width: 576px) {
  .logo-text {
    font-size: 18px;
  }
  
  .logo img {
    max-height: 36px;
  }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }
  
  .logo-sub {
    font-size: 8px;
    display: block; /* Optional: move subtext to next line */
  }
  
  .logo img {
    max-height: 32px;
  }
  
  /* If logo is too long, stack vertically */
  .logo a {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .ot-about-area, .ot-service-area {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .service-card-item {
    flex-direction: column;
    text-align: center;
  }
  .service-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .service-icon {
    margin-left: 0;
    margin-top: 10px;
  }
  .stats-box {
    justify-content: center;
  }
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .experience-card {
    padding: 12px 20px;
  }
  .experience-number {
    font-size: 32px;
  }
}
/* ========================= form css with index  ==============================*/
.ot-testimonial-area {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

/* Left Side Form */
.testimonial-form-wrapper {
  background: var(--ot-white-color, #fff);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ot-title-color, #415A77);
  margin-bottom: 10px;
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.form-title span {
  color: var(--ot-theme-color2, #FFB300);
}

.form-subtitle {
  color: var(--ot-body-color, #415A77);
  margin-bottom: 30px;
  font-family: var(--ot-body-font, "Noto Sans", sans-serif);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--ot-border-color, #E0E1DD);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  font-family: var(--ot-body-font, "Noto Sans", sans-serif);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ot-theme-color2, #FFB300);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.1);
}

/* Star Rating Styles */
.rating-group {
  margin-bottom: 10px;
}

.rating-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ot-title-color, #415A77);
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.star-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.star {
  font-size: 32px;
  cursor: pointer;
  color: #ccc;
  transition: all 0.2s ease;
  user-select: none;
}

.star:hover,
.star.active {
  color: var(--ot-theme-color2, #FFB300);
  transform: scale(1.1);
}

.rating-text {
  display: inline-block;
  font-size: 14px;
  color: var(--ot-body-color, #415A77);
  margin-left: 10px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--ot-theme-color2, #FFB300), var(--ot-theme-color, #f07400));
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 116, 0, 0.2);
}

.success-message {
  margin-top: 20px;
  padding: 12px;
  background: #d4edda;
  color: #155724;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
}

/* Right Side */
.testimonial-right-content {
  height: 100%;
}

.section-header {
  margin-bottom: 30px;
}

.section-tag {
  display: inline-block;
  background: rgba(240, 116, 0, 0.12);
  color: var(--ot-theme-color, #f07400);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ot-title-color, #415A77);
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.section-title span {
  color: var(--ot-theme-color2, #FFB300);
}

.feedbacks-container {
  max-height: 550px;
  overflow-y: auto;
  padding-right: 10px;
}

.feedbacks-container::-webkit-scrollbar {
  width: 5px;
}

.feedbacks-container::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.feedbacks-container::-webkit-scrollbar-thumb {
  background: var(--ot-theme-color2, #FFB300);
  border-radius: 10px;
}

.testimonial-card {
  background: var(--ot-white-color, #fff);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ot-theme-color2, #FFB300), var(--ot-theme-color, #f07400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.client-details h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--ot-title-color, #415A77);
}

.client-details span {
  font-size: 12px;
  color: var(--ot-stroke-color, #778DA9);
}

.rating-badge {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--ot-theme-color2, #FFB300);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ot-body-color, #415A77);
  margin-bottom: 12px;
}

.testimonial-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-tag,
.location-tag {
  font-size: 11px;
  padding: 4px 12px;
  background: var(--ot-smoke-color, #E8F0FE);
  border-radius: 50px;
  color: var(--ot-theme-color, #f07400);
}

/* New Testimonial Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card.new {
  animation: slideIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .ot-testimonial-area {
    padding: 60px 0;
  }
  .testimonial-form-wrapper {
    padding: 25px;
  }
  .form-title {
    font-size: 24px;
  }
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title {
    font-size: 28px;
  }
  .star {
    font-size: 28px;
  }
}
 /* ================================== why choose us section css with index.css ========================================= */
 
.ot-choose-area {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

/* Image Wrapper */
.choose-img-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.choose-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.choose-img-wrapper:hover img {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--ot-theme-color2, #FFB300), var(--ot-theme-color, #f07400));
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.exp-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.exp-text {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--ot-body-font, "Noto Sans", sans-serif);
}

/* Content Wrapper */
.choose-content-wrapper {
  padding: 20px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(240, 116, 0, 0.12);
  color: var(--ot-theme-color, #f07400);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ot-title-color, #415A77);
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.section-title span {
  color: var(--ot-theme-color2, #FFB300);
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ot-body-color, #415A77);
  font-family: var(--ot-body-font, "Noto Sans", sans-serif);
}

/* Feature Points */
.choose-features {
  margin-top: 25px;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: rgba(240, 116, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ot-theme-color, #f07400);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--ot-title-color, #415A77);
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
}

.feature-text p {
  font-size: 13px;
  margin: 0;
  color: var(--ot-body-color, #415A77);
  font-family: var(--ot-body-font, "Noto Sans", sans-serif);
}

.signature-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--ot-theme-color, #f07400);
  font-family: var(--ot-title-font, "Montserrat", sans-serif);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(240, 116, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .ot-choose-area {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .experience-badge {
    padding: 12px 18px;
  }
  .exp-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .ot-choose-area {
    padding: 50px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .choose-content-wrapper {
    padding: 0;
  }
  .feature-point {
    padding: 10px 0;
  }
  .signature-text {
    font-size: 16px;
  }
}