@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #f37021;
  --secondary-color: #0b132b;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --footer-bg: #fbe6d4;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Typography & General */
a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* Custom Logo CSS */
.logo-text {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.logo-text b {
  color: #333;
}

.logo-ai {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 8px;
  font-size: 22px;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

/* Navbar */
.navbar {
  padding: 12px 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-link {
  color: #111;
  font-weight: 600;
  font-size: 15px;
  margin: 0 12px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active,
.navbar-nav .nav-link.active,
.nav-link.show {
  color: var(--primary-color) !important;
}

.btn-brochure {
  background-color: #555;
  color: white;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-brochure:hover {
  background-color: #333;
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
}

.hero-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 50px 0;
}

.about-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 25px;
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 50px;
}

.btn-read-more {
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
  /* box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4); */
}

.btn-read-more:hover {
  background-color: #d15a15;
  color: white;
  transform: translateY(-2px);
}

.ai-circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--secondary-color);
  padding: 50px 0;
  color: white;
}

.feature-card {
  background: white;
  color: var(--text-color);
  padding: 40px 30px;
  border-radius: 0;
  height: 100%;
  box-shadow: none;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff4d4d;
  /* Reddish orange for the outline icon look */
  font-size: 45px;
  margin-bottom: 20px;
}

.feature-title {
  color: #3b3a6e;
  /* Dark purplish blue */

  font-weight: 500;
  font-size: 25px;
  margin-bottom: 15px;
}

/* Noise Free Section */
.noise-free-section {
  background: linear-gradient(135deg, #0b132b, #1c2541, #3a506b);
  padding: 90px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.noise-free-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/noise-free-bg.png');
  opacity: 0.1;
  z-index: 1;
}

.noise-free-section .container {
  position: relative;
  z-index: 2;
}

.noise-free-title {
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.noise-free-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.cable-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.cable-item {
  width: calc(20% - 25px);
  min-width: 140px;
  transition: transform 0.3s;
}

.cable-item:hover {
  transform: scale(1.05);
}

.cable-item img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Testimonial Section */
.testimonial-section {
  padding: 90px 0;
  background-color: #fff;
  /* or transparent */
}

.testimonial-card {
  padding: 20px 10px;
  background: transparent;
  border-radius: 0;
  margin: 10px;
  box-shadow: none;
  height: auto;
  text-align: left;
}

.testimonial-card:hover {
  transform: none;
  box-shadow: none;
}

.quote-icon {
  color: #333;
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-top: none;
  padding-top: 0;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}

.testimonial-company-title {

  font-weight: 500;
  color: #222;
  font-size: 20px;
  margin-bottom: 10px;
}

.image-banner-section {
  margin-top: 60px;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  padding: 70px 0 0;
}

.footer h5 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 17px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  margin-right: 12px;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons a.facebook {
  background: #3b5998;
}

.social-icons a.twitter {
  background: #1da1f2;
}

.social-icons a.youtube {
  background: #ff0000;
}

.copyright {
  background-color: #0b132b;
  color: #ddd;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 17px;
}

.copyright span {
  color: var(--primary-color);
  font-weight: 600;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .cable-item {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 767px) {
  .cable-item {
    width: calc(50% - 20px);
  }

  .hero-title {
    font-size: 26px;
    padding: 10px 30px;
  }

  .about-title {
    font-size: 28px;
  }

  .noise-free-title {
    font-size: 32px;
  }
}

/* Custom Added Classes */
.event-main-title {
  font-size: 38px;
  color: #111;
  font-weight: 400;
  margin-bottom: 50px;
}

.event-subtitle {
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  font-size: 30px;
}

.event-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.event-video-player {
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid #eee;
  background-color: #000;
}

.gallery-img-shadow {
  object-fit: cover;
  height: 220px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-logo-img {
  max-width: 200px;
}

.footer-text-muted {
  font-size: 15px;
  line-height: 1.6;
}

.section-padding-100 {
  padding: 50px 0;
}

.badge-title-uppercase {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-main-title {
  color: #1b203c;
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 25px;
}

.text-14-lh17-mb40 {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-info-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
}

.text-13-mb0 {
  font-size: 17px;
  margin-bottom: 0;
}

.text-13-lh16-mb0 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-form-box {
  background-color: #fcfcfc;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-form-title {
  color: #1b203c;
  font-weight: 500;
}

.text-13 {
  font-size: 17px;
}

.custom-form-control {
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 12px;
  box-shadow: none;
  border-radius: 4px;
}

.custom-form-control-textarea {
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 12px;
  box-shadow: none;
  border-radius: 4px;
  resize: none;
}

.btn-white-custom {
  background-color: #fff;
  border: 1px solid #eaeaea;
  padding: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.section-title-primary {
  color: #3b3a6e;
  font-weight: 500;
  font-size: 40px;
}

.text-15 {
  color: #666;
  font-size: 17px;
}

.badge-title {
  font-weight: 600;
  font-size: 20px;
}

.about-subtitle {
  font-weight: 500;
  color: #3b3a6e;
  font-size: 32px;
  margin-bottom: 25px;
}

.mw-100-hauto {
  max-width: 100px;
  height: auto;
}

.brand-description {
  font-size: 14.5px;
  font-weight: 600;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.5px;
  border-left: 3px solid #e0e0e0;
  padding-left: 20px;
  margin-bottom: 0;
}

.list-title {
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.text-14-lh16-mb25 {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.text-10 {
  font-size: 10px;
}

.btn-orange-rounded {
  background-color: var(--primary-color);
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
}

.btn-orange-rounded:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(0);
}

.mw-250 {
  max-width: 250px;
}

.border-none-p0 {
  border: none;
  padding: 0;
}

.bg-dark-blue-section {
  background-color: #0b132b;
  padding: 80px 0;
}

.section-title-white {
  font-weight: 500;
  font-size: 36px;
}

.index-subtitle {
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  font-size: 30px;
}

.index-text-14 {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 500;
}

.section-title-dark {
  font-weight: 500;
  font-size: 36px;
}

.text-14 {
  font-size: 17px;
}

.mw-140-hauto {
  max-width: 140px;
  height: auto;
}

.list-text-dark-bold {
  color: #444;
  font-weight: 600;
}

.mvc-title {
  color: #3b3a6e;
  font-size: 32px;
  font-weight: 600;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
}

.mvc-text {
  font-size: 17px;
}

.mvc-image-box {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

/* Services Page Styles */
.letter-spacing-1 {
  letter-spacing: 1px;
}

.custom-accordion .accordion-item {
  border: none !important;
  border-radius: 4px !important;
  margin-bottom: 15px !important;
  background-color: transparent !important;
}

.custom-accordion .accordion-button {
  font-weight: 400;
  color: #222 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 20px 25px;
  font-size: 17px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #f7f7f7 !important;
}

.custom-accordion .accordion-collapse.show {
  background-color: #f7f7f7 !important;
}

.custom-accordion .accordion-body {
  padding: 0 25px 25px 25px;
  background-color: transparent;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.custom-accordion .accordion-button::after {
  background-image: none !important;
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #222;
  font-size: 16px;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068';
  color: #222;
}

/* Custom Services Design Classes */
.services-badge {
  color: #fc685e;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-main-heading,
.contact-main-title,
.about-title,
.section-title-primary,
.section-title-dark,
.about-subtitle,
.event-main-title,
.mvc-title {
  color: #2e305e !important;
  font-size: 50px !important;
  font-weight: 500 !important;
  font-family: Georgia, 'Times New Roman', Times, serif !important;
  margin-bottom: 25px;
}

.section-title-white {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 500 !important;
  font-family: Georgia, 'Times New Roman', Times, serif !important;
  margin-bottom: 25px;
}

.index-subtitle {
  color: #2e305e !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  font-family: Georgia, 'Times New Roman', Times, serif !important;
}

.service-item-icon {
  color: #fc685e;
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-block;
}

.service-item-title {
  color: #222;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-item-desc {
  color: #777;
  font-size: 17px;
  line-height: 1.8;
}

/* Blog List Page */
.blog-post-img {
  height: 400px;
  object-fit: cover;
}

.text-theme-orange {
  color: #f37021;
}

.text-theme-blue {
  color: #2e305e;
}

.blog-excerpt {
  line-height: 1.8;
  font-size: 15px;
}

.blog-read-more {
  color: #3b5998;
  font-size: 15px;
}

.blog-detail-main-img {
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.blog-meta-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-category-link {
  color: #4a90e2;
}

.blog-detail-title {
  color: #333;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.blog-quote-box {
  background-color: #fcfcfc;
}

.blog-quote-icon {
  font-size: 60px;
  color: #fc685e;
}

.blog-quote-text {
  font-size: 15px;
  font-weight: 600;
}

.blog-detail-grid-img {
  height: 250px;
  object-fit: cover;
}

.blog-detail-subtitle {
  color: #333;
  font-weight: 600;
  font-size: 25px;
}

.blog-detail-text {
  line-height: 1.8;
  font-size: 17px;
}

/* Sidebar Categories */
.sidebar-widget-title {
  color: #222;
  font-size: 19px;
}

.sidebar-category-link {
  font-size: 15px;
  color: #000000;
}

/* Custom Footer Design */
.footer-custom-bg {
  background-color: #fcd5c5;
}

.footer-desc-text {
  font-size: 13px;
  line-height: 1.7;
  color: #555 !important;
}

.footer-widget-title {
  color: #222;
  font-weight: 400;
}

.footer-link-red {
  color: #fc685e;
}

.footer-contact-link {
  color: #555;
}

.footer-contact-icon {
  color: #222;
  font-size: 18px;
  display: block;
}

.social-icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.copyright-dark {
  background-color: #000;
  color: #fff;
  font-size: 13px;
}

/* Custom Dropdown Menu */
.custom-dropdown-menu {
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0;
  margin-top: 10px;
}

.custom-dropdown-menu .dropdown-item {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #eaeaea;
  text-transform: uppercase;
}

.custom-dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}

.custom-dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* Products Page CSS */
.product-card {
  /* margin-bottom: 30px; */
}

.product-img-wrap {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  min-height: 42px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.btn-read-more {
  /* background-color: #e9ecef; */
  /* color: #444; */
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}

.review-desc{
  height: 100px;
}

.r-content{
  height: 200px;
}

.btn-read-more:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.sorting-dropdown {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  color: #555;
  outline: none;
  background-color: #fff;
}

.text-custom-red { color: var(--primary-color); }

/* Product Details Page CSS */
.custom-nav-tabs {
  border-bottom: 1px solid #eaeaea;
}

.custom-nav-tabs .nav-link {
  color: #555;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  border-top: 3px solid transparent;
  padding: 10px 25px;
  border-radius: 0;
}

.custom-nav-tabs .nav-link.active {
  background-color: #fff;
  border-color: #eaeaea #eaeaea #fff;
  border-top-color: #777;
  color: #333;
}

.product-feature-list li {
  font-size: 17px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.product-feature-list li .star {
  color: #999;
  margin-right: 8px;
  font-size: 14px;
}

.sidebar-category-list li {
  border-bottom: 1px solid #f2f2f2;
}

.sidebar-category-list li:last-child {
  border-bottom: none;
}

.sidebar-category-list a {
  display: block;
  padding: 12px 0;
  color: #666;
  font-size: 17px;
  transition: 0.3s;
  text-decoration: none;
}
.sidebar-category-list a:hover {
  color: var(--primary-color);
}

/* Product Details Inline Style Replacements */
.search-icon-wrapper {
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
  text-decoration: none;
}
.search-icon-icon {
  font-size: 16px;
}
.product-thumbnail {
  cursor: pointer;
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.product-detail-category-wrap {
  font-size: 20px;
}
.tab-content-title {
  font-weight: 500;
  font-size: 28px;
}
.related-products-title {
  font-weight: 500;
  font-size: 32px;
}
.product-card-title-sm {
  font-size: 15px;
  min-height: 50px;
}
.btn-read-more-sm {
  font-size: 15px;
  padding: 6px 14px;
}
.sidebar-box-shadow {
  border: 1px solid #fcfcfc;
  box-shadow: 0 0 15px rgba(0,0,0,0.02);
}

/* ==========================================================================
   Responsive Styles (All Screens)
   ========================================================================== */

/* Small Desktop / Tablet Landscape (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-link {
    padding-right: 0.6rem !important;
    padding-left: 0.6rem !important;
    font-size: 14px !important;
  }
  .btn-brochure {
    padding: 8px 14px !important;
    font-size: 14px !important;
  }
  .navbar-brand img {
    height: 45px;
  }
  .logo-text {
    font-size: 20px;
  }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .section-padding-100 {
    padding-top: 60px ;
    padding-bottom: 60px !important;
  }
  .product-detail-title {
    font-size: 28px;
  }
  .related-products-title {
    font-size: 28px;
  }
  .product-main-img-wrap {
    margin-bottom: 30px;
  }
  .pe-lg-5 {
    padding-right: 0 !important;
  }
  .ps-md-4 {
    padding-left: 0 !important;
    margin-top: 20px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .top-bar {
    padding: 8px 0;
    font-size: 15px;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo-ai {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
  .section-padding-100 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .product-detail-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .tab-content-title {
    font-size: 22px;
  }
  .related-products-title {
    font-size: 24px;
  }
  .product-feature-list li {
    font-size: 14px;
  }
  .footer {
    text-align: center;
  }
  .footer-links {
    padding-left: 0;
  }
  .product-thumbnail {
    width: 60px;
    height: 60px;
  }
  .social-icons {
    justify-content: center;
  }
  .ps-lg-5 {
    padding-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    padding-top: 15px;
    text-align: left;
    align-items: flex-start;
  }
  .navbar-nav .btn-brochure {
    display: block;
    width: max-content;
    margin: 15px 0;
  }
}