/* 
---------------------------------------------
New SMS API Components
--------------------------------------------- 
*/

/* Main Banner - SMS Version */
.sms-banner {
  background: linear-gradient(135deg, #4b8ef1 0%, #2a5298 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.sms-banner h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.sms-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.banner-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #4b8ef1;
  color: #fff !important;
  padding: 12px 25px !important;
  border-radius: 23px;
  font-weight: 500 !important;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #3a7bd5 !important;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #4b8ef1;
    color: #055fe3 !important;
    background: transparent;
    padding: 12px 25px !important;
    border-radius: 23px;
    font-weight: 500 !important;
    transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1) !important;
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: rgb(16 16 16 / 90%);
}

.trust-badges i {
  color: #4b8ef1;
}

/* Features Section - SMS Version */
.sms-features {
  padding: 100px 0;
  position: relative;
}

.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #f5f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #4b8ef1;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.feature-box p {
  color: #afafaf;
  font-size: 15px;
}

/* Pricing Section - SMS Version */
.sms-pricing {
  padding: 100px 0;
  background: #f9fbfe;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s;
  margin-bottom: 30px;
}

.pricing-card.featured {
  border: 2px solid #4b8ef1;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #4b8ef1;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #4b8ef1;
  margin-bottom: 20px;
}

.price span {
  font-size: 16px;
  font-weight: normal;
  color: #afafaf;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2a2a2a;
}

.pricing-card ul li i {
  color: #4b8ef1;
}

/* Integration Section - SMS Version */
.sms-integration {
  padding: 100px 0;
}

.integration-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.integration-content p {
  font-size: 15px;
  color: #afafaf;
  margin-bottom: 30px;
}

.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f9ff;
  padding: 12px 20px;
  border-radius: 6px;
}

.feature-item i {
  color: #4b8ef1;
  font-size: 18px;
}

.code-sample {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}

.code-sample pre {
  margin: 0;
  overflow-x: auto;
}

.code-sample code {
  color: #f8f8f2;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .sms-banner h1 {
    font-size: 36px;
  }
  
  .integration-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .sms-banner {
    text-align: center;
    padding: 150px 0 60px;
  }
  
  .banner-buttons {
    flex-direction: column;
  }
  
  .integration-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .sms-banner h1 {
    font-size: 30px;
  }
  
  .sms-banner p {
    font-size: 16px;
  }
  
  .trust-badges {
    justify-content: center;
  }
}

section.features-section, section.pricing-section, section.integration-section {
    padding: 5%;
}
.section-header {
    margin-bottom: 21px;
}

/* Logo Carousel Styles */
.logo-carousel {
  margin-top: 60px;
  padding: 30px 0;
}
.logo-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.logo-carousel .carousel-item {
 position: relative;
    width: 100%;
    padding-bottom: 100%; /* This creates a square container */
    overflow: hidden;
  display: block !important;
}

/* .logo-carousel img {
     width: auto;
    max-height: 80px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-carousel img:hover {
  filter: grayscale(0%);
  opacity: 1;
} */

.logo-carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents distortion */
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-carousel .carousel-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    filter: grayscale(0%);
    opacity: 1;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(75, 142, 241, 0.2) !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  color: #4b8ef1 !important;
  font-size: 20px !important;
  transition: all 0.3s;
}

.owl-carousel .owl-nav button:hover {
  background: rgba(75, 142, 241, 0.5) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -50px;
}

/* Owl Carousel Dots */
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 5px;
}

.owl-carousel .owl-dots button.owl-dot.active {
  background: #4b8ef1;
}

/* Corporate Clients Section */
.corporate-clients {
  padding: 100px 0;
  
}

.corporate-clients .section-heading {
  margin-bottom: 60px;
}

.client-accordion {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.client-categories {
  display: flex;
  border-bottom: 1px solid #eee;
}

.category-item {
  flex: 1;
  text-align: center;
  padding: 25px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.category-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.category-item.active:after {
  background: linear-gradient(105deg, rgba(91,104,235,1) 0%, rgba(40,225,253,1) 100%);
}

.category-item:hover {
  background: rgba(75, 142, 241, 0.05);
}

.category-thumb h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.category-item.active .category-thumb h4 {
  color: #4b8ef1;
}

.industry {
  font-size: 14px;
  color: #7a7a7a;
  font-weight: 400;
}

.client-testimonials {
  padding: 0;
  margin: 0;
  list-style: none;
}

.client-testimonials li {
  display: none;
  padding: 40px;
}

.client-testimonials li.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.testimonial-content p:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 50px;
  color: rgba(75, 142, 241, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid #4b8ef1;
}

.client-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.client-details span {
  font-size: 14px;
  color: #7a7a7a;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .client-categories {
    flex-wrap: wrap;
  }
  
  .category-item {
    flex: 0 0 50%;
    padding: 20px 10px;
  }
}

@media (max-width: 767px) {
  .corporate-clients {
    padding: 60px 0;
  }
  
  .category-item {
    flex: 0 0 100%;
  }
  
  .client-testimonials li {
    padding: 30px 20px;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .client-info img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

 .feature-card {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.03);
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-link {
      color: #4b8ef1;
      font-weight: 500;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
    }
    .feature-link:hover {
      text-decoration: underline;
    }
    .line-dec {
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #4b8ef1, #40e1fd);
      margin: 15px auto;
    }
    .feature-cta {
      background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
      height: 100%;
    }
    .icon-square {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Styles for the "Reach Us" Form */
#reachUsForm input[type="text"],
#reachUsForm input[type="tel"],
#reachUsForm textarea {
  width: 90%;
  height: 50px; /* Standard height for inputs */
  border-radius: 25px; /* Matches the rounded corners of other inputs */
  background-color: #f8f9fa; /* Light grey background */
  outline: none;
  border: none;
  padding: 0px 20px; /* Padding inside the input */
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a; /* Dark text color */
  margin-bottom: 20px; /* Spacing between fields */
  box-shadow: none; /* Ensure no default browser shadow */
}

#reachUsForm textarea {
  height: 120px; /* Taller height for textarea */
  padding: 15px 20px; /* Adjust padding for multi-line text */
  resize: vertical; /* Allow vertical resizing only */
}

/* Style for the submit button - uses existing .main-button style */
#reachUsForm .main-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(105deg, rgb(107 107 110) 0%, rgb(158 181 185) 100%); /* Gradient background */
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
  width: auto; /* Adjust width to fit content */
}

#reachUsForm .main-button:hover {
  opacity: 0.9;
}

/* Adjustments for fieldset to remove default browser borders if any */
#reachUsForm fieldset {
    border: none;
    padding: 0;
    margin: 0;
}