/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mt-primary{
  margin-top: 1.5rem;
}

/* Colors */
.text-primary {
  color: #ce1b23;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #ce1b23;
  color: white;
}

.btn-primary:hover {
  background-color: #b01820;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ce1b23;
  border: 2px solid #ce1b23;
}

.btn-outline:hover {
  background-color: #ce1b23;
  color: white;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: white;
  color: #ce1b23;
}

/* .btn-white {
  background-color: white;
  color: #ce1b23;
} */

.btn-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #f3f3f3;
}

/* .btn-white:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
} */

.btn-white:hover {
  background-color: #fff3;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 60px;
  height: 60px;
  /* background-color: #ce1b23; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-img::before {
  content: "FT";
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.logo-subtitle {
  font-size: 12px;
  color: #666;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.d-flex{
  display: flex;
}
.item-center{
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  color: #ce1b23;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ce1b23;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: 80px;
}

.hero-gradient {
  background: linear-gradient(135deg, #8b1319 100%, #ce1b23 0%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

p.hero-subtitle.text-white {
  color: #ffffff !important;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input,
.email-input-white {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  min-width: 250px;
}

.email-input-white {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.email-input-white::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  margin-top: 3rem;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  font-family: sans-serif;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 14px;
  /* margin: 0 auto 10px; */
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite;
}

@keyframes wheelMove {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 16px;
    opacity: 0.5;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

.arrow {
  color: #fff;
  font-size: 24px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.bg-light-grey {
  background-color: #f9fafb;
}

/* Stats */
.stats-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stat-icon .text-primary {
  width: 2rem;
  height: 2rem;
}

.stat-number {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #ce1b23;
  /* margin-bottom: 0.5rem; */
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stats-grid {
  /* display: grid; */
  display: block;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */
 .stat-item {
      text-align: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    border-width: thick;
    border: 1px solid;
    border-color: #dbe0e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(5px);
    margin-bottom: 2rem;
 }

 .stat-item:hover {
    transform: translateY(0px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: transparent;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #dbe0e6;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(358 39% 95% / 1);
    border-radius: 50px;
}

.value-card .value-card-icon-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.value-text {
  color: #666;
  line-height: 1.6;
}

.value-card:hover .value-icon {
    background: #ce1b23;
    transition: background-color 0.3s ease;
}
.value-card:hover .value-icon svg{
    color: #ffffff;
}

/* Feature List */
.feature-list {
  list-style: none;
  /* margin: 2rem 0; */
}

.feature-list li {
  padding: 0.5rem 0;
  color: #666;
  font-size: 1rem;
}

/* Vision Mission */
.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vm-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vm-card h3 {
  color: #ce1b23;
  margin-bottom: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid;
  border-color: #dbe0e6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
}

/* .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
} */
svg{
  width: 2rem;
  height: 2rem;
}
.service-icon {
  width: 4rem;
  height: 4rem;
   margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(358 39% 95% / 1);
  border-radius: 10px;
}
.service-card:hover .service-icon {
    background: #ce1b23;
    transition: background-color 0.3s ease;
}
.service-card:hover .service-icon svg{
    color: #ffffff;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-text {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: #ce1b23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #b01820;
}

/* Services Detailed */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detailed-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
}

.service-detailed-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-detailed-icon {
  font-size: 2.5rem;
}

.service-detailed-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.service-detailed-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-detailed-features {
  list-style: none;
  /* margin-bottom: 2rem; */
}

.service-detailed-features li {
  padding: 0.25rem 0;
  color: #666;
}

/* Products */
.product-section {
  background: white;
  /* padding: 3rem; */
  /* border-radius: 12px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border: 1px solid;
  border-color: #dbe0e6;
}
.product-section .col-lg-6{
  padding: 3rem;
}

.product-section .col-lg-12{
  padding: 3rem;
}

/* .product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
} */

.product-icon {
  font-size: 3rem;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-left: 12px;
}

.product-description {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  /* margin-bottom: 2rem; */
}

.product-item h4 {
  color: #ce1b23;
  margin-bottom: 1rem;
}

.product-item ul {
  list-style: none;
}

.product-item li {
  /* padding: 0.25rem 0;
  color: #666; */
  background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.product-highlight {
  padding: 1.5rem;
  border-radius: 8px;
  /* margin-bottom: 2rem; */
  background: hsl(358 39% 95% / 1);
}

.product-highlight h4 {
  color: #ce1b23;
  margin-bottom: 1rem;
}

/* Clients */
.client-stats .stats-row {
  margin-bottom: 4rem;
}

.industry-section {
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    border-width: thick;
    border: 1px solid;
    border-color: #dbe0e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(5px);
    margin-bottom: 3rem;
}
.industry-section:hover {
    transform: translateY(0px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.industry-icon {
  font-size: 2.5rem;
}

.industry-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.client-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #666;
}

.client-item strong {
  color: #333;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
}

/* Why Choose */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: transparent;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-icon {
  /* font-size: 3rem;
  margin-bottom: 1rem; */
  font-size: 3rem;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(358 39% 95% / 1);
    border-radius: 50px;
}

.why-choose-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.why-choose-text {
  color: #666;
  line-height: 1.6;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: transparent;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #dbe0e6;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  /* font-size: 3rem;
  margin-bottom: 1rem; */
  width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(358 39% 95% / 1);
    border-radius: 50px;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.advantage-text {
  color: #666;
  line-height: 1.6;
}

/* Contact */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ce1b23;
}

.contact-info-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: fit-content;
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  /* margin-bottom: 2rem; */
}

.contact-info-icon {
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(358 39% 95% / 1);
    border-radius: 10px;
  /* margin-top: 0.25rem; */
}

.contact-info-icon svg{
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-content h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-info-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* .social-links-contact {
  margin-top: 2rem;
} */

.social-links-contact h4 {
  margin-bottom: 1rem;
  color: #333;
}

/* Map */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h4 {
  margin: 0;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ce1b23;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, #ce1b23 0%, #8b1319 100%); */
  background: linear-gradient(135deg, hsl(358, 76%, 45%), hsl(210, 50%, 50%));
  color: white;
  text-align: center;
  padding: 90px;
}

.cta-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */

.flex-item
{
  display: flex;
  align-items: flex-start;
}
.ml-footer-contact-info{
  margin-left: 12px;
}
.contact-info svg{
  width: 1.25rem;
  height: 1.25rem;
}
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  background-color: #ce1b23;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.footer-logo-img::before {
  content: "FT";
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-logo-subtitle {
  font-size: 12px;
  color: #ccc;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ce1b23;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.small-svg svg{
  width: 1rem;
  height: 1rem;
}

.social-link:hover {
  background-color: #ce1b23;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ce1b23;
}

.footer-bottom-links span {
  color: #ccc;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-list {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions .phone {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .col-lg-4,
  .col-lg-6,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .email-input,
  .email-input-white {
    min-width: auto;
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
  .header-actions-desktop{
    display: none;
  }
  .header-actions-mobile{
    display: block !important;
  }
  .stats-card-center{
    aspect-ratio: auto !important;
    margin-bottom: 1.5rem;
  }
  .section{
    padding: 40px 0;
  }

  .product-section.row {
    margin: 2rem auto;
  }
  .product-section .col-lg-6{
    padding: 1rem !important;
  }
  .product-section .col-lg-12{
    padding: 1rem !important;
  }
  .product-title{
    font-size: 1.5rem !important;
  }
  .feature-list svg{
    flex-shrink: 0;
  }
  .stat-item{
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .services-grid,
  .why-choose-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-section{
    padding: 25px !important;
  }
  .about-actions{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 1025px) and (min-width: 769px) {
    /* Your CSS here */
    .nav-list {
        gap: 1.4rem !important;
    }

    .header-actions-desktop .btn{
      padding: 6px 10px !important;
    }
    .logo{
      gap: 4px;
    }
    .logo-img{
      width: 60px;
      height: 60px;
    }
    .logo-name{
      font-size: 16px;
    }
    .logo-subtitle{
      font-size: 10px;
    }
    .header-actions{
      gap: 0.4rem;
    }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #ce1b23;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta-section {
    display: none;
  }

  .hero {
    margin-top: 0;
  }

  * {
    color: black !important;
    background: white !important;
  }
}


/* custome css */
.stats-card-center{
  display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 16;
    background-image: linear-gradient(to bottom right, hsl(210deg 50% 50% / 10%), hsl(358deg 76% 45% / 10%));
}

.stats-card-center .stat-icon svg{
  width: 4rem;
  height: 4rem;
}

.feature-list svg{
  width: 1.5rem;
  height: 1.5rem;
}
.feature-list div{
  display: flex;
  align-items: center;
}
.feature-list span{
  margin-left: 12px;
}

.shadow-box{
  border: 1px solid;
  border-color: #dbe0e6;
}

.shadow-box:hover .shadow-box-icon {
    background: #ce1b23;
    transition: background-color 0.3s ease;
}
.shadow-box:hover .shadow-box-icon svg{
    color: #ffffff;
}

.shadow-box-icon{
  width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(358 39% 95% / 1);
    border-radius: 10px;
}

.shadow-box ul .service-points{
  list-style-type: disc;
}

.shadow-box ul .service-points::marker{
  color: #ce1b23;
}

.shadow-box ul{
  padding-left: 1rem;
}

.card-icon-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item ul{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card{
  background: transparent;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #dbe0e6;
    transition: transform 0.3s ease;
}
.stat-number-rating{
  font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #ce1b23;
}

.testimonial-rating svg{
  width: 1.5rem;
  height: 1.5rem;
  fill: #FACC15;
  stroke: #FACC15;
}

.clients-list-points{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.clients-list-points-icon {
    background: rgb(206, 27, 35);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}
.clients-list-points span{
  color: #333;
  font-weight: 500;
}

.text-decoration-none{
  text-decoration: none;
}

.ptc-shadow-box{
    background: transparent;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbe0e6;
    transition: transform 0.3s ease;
}

.ptc-shadow-box:hover{
  transform: translateY(-5px);
}
.ptc-shadow-box .ptc-points:not(:last-child) {
  margin-bottom: 2rem;
}

.ul-ml{
  margin-left: 2rem;
}

.header-actions-mobile{
  display: none;
}

.elv-it{
  background: hsl(358 39% 95% / 1);
}

.elv-it .product-title{
  font-size: 1.4rem;
}

.close{
  display: none;
}

.view{
  display: block;
}



