.logo-img{
    width: 100px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
  }

html {
    overflow-x: hidden;
  }

  /* Navigation Bar */
  .navbar {
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: #ffffff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 1200px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  /* Logo Section */
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-img {
    height: 40px;
    width: auto;
  }

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

  .logo-text .brand {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .logo-text .tagline {
    color: #8899a6;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* Navigation Links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: #af0505;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #af0505;
  }

  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .btn-primary {
    background-color: #af0505;
    color: #ffffff;
    border: 2px solid #af0505;
  }

  .btn-primary:hover {
    background-color: #8a0404;
    border-color: #8a0404;
    box-shadow: 0 4px 15px rgba(175, 5, 5, 0.3);
  }

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

  .btn-outline:hover {
    background-color: #af0505;
    color: #fff;
  }

  .btn-whatsapp {
    background-color: transparent;
    color: #000000;
    border: 2px solid #25d36500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-whatsapp:hover {
    background-color: transparent;
    border-color: #20ba5b00;
    color: #000000;
  }

  .btn-whatsapp svg {
    flex-shrink: 0;
    fill: #25D366;
    color: #25D366;
  }

  .btn-whatsapp:hover svg {
    fill: #25D366;
    color: #25D366;
  }

  .btn-whatsapp span {
    white-space: nowrap;
  }
.breadcrumb{
    position: relative;
    height: 10vh;  
    min-height: 250px;
    background: linear-gradient(to bottom, rgba(30, 45, 61, 0.7), rgba(30, 45, 61, 0.5)),
                url('assets/back1.jpeg');
    background-size: cover;
}
.bread-content{
    padding-top: 30px;
    align-items: center;
    justify-content: center;
}
.bread-content h1{
    color: #fff;
    padding-top: 100px;
    text-align: center;
    font-size: 28px;
}
.bread-content p{
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding-top: 10px;
}
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(to bottom, rgba(30, 45, 61, 0.7), rgba(30, 45, 61, 0.5)),
                url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .hero-content p {
    color: #c8d0d8;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #af0505;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .navbar {
      padding: 16px 24px;
    }

    .nav-links {
      gap: 20px;
    }

    .nav-links a {
      font-size: 13px;
    }

    .btn {
      padding: 10px 18px;
      font-size: 13px;
    }
  }

  @media (max-width: 768px) {
    .navbar {
      top: 10px;
      width: calc(100% - 20px);
      padding: 12px 20px;
    }

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

    .nav-links,
    .cta-buttons {
      display: none;
    }

    .navbar.active .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #efefef;
      padding: 20px;
      margin-top: 10px;
      border-radius: 20px;
      gap: 0;
    }

    .navbar.active .nav-links li {
      width: 100%;
    }

    .navbar.active .nav-links a {
      display: block;
      padding: 12px 16px;
      border-radius: 8px;
      color: #af0505;
    }

    .navbar.active .nav-links a:hover {
      background-color: #e0e0e0;
    }

    .navbar.active .cta-buttons {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: calc(100% + 280px);
      left: 0;
      right: 0;
      background-color: #efefef;
      padding: 20px;
      margin-top: 10px;
      border-radius: 20px;
    }

    .hero-content h1 {
      font-size: 32px;
      padding: 0 20px;
    }

    .hero-content p {
      font-size: 16px;
      padding: 0 20px;
    }
  }


    /* Contact Section */
    .contact-section {
        padding: 60px 20px;
        max-width: 1100px;
        margin: 0 auto;
      }
  
      .contact-container {
        display: flex;
        background-color: #fff;
        
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      }
  
      /* Left Side - Contact Info */
      .contact-info {
        background: linear-gradient(135deg, #af0505 0%, #af0505 100%);
        padding: 40px;
        width: 35%;
        min-width: 280px;
        color: white;
      }
  
      .contact-info h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
      }
  
      .contact-info .subtitle {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 40px;
        line-height: 1.6;
      }
  
      .contact-details {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
  
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
      }
  
      .contact-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
  
      .contact-icon svg {
        width: 18px;
        height: 18px;
        fill: white;
      }
  
      .contact-item-text {
        font-size: 14px;
        line-height: 1.6;
      }
  
      .contact-item-text strong {
        display: block;
        margin-bottom: 2px;
      }
  
      /* Right Side - Contact Form */
      .contact-form-container {
        padding: 40px 50px;
        flex: 1;
      }
  
      .contact-form-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 30px;
      }
  
      .form-row {
        display: flex;
        gap: 30px;
        margin-bottom: 24px;
      }
  
      .form-group {
        flex: 1;
      }
  
      .form-group label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
      }
  
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px 0;
        border: none;
        border-bottom: 1px solid #e0e0e0;
        font-size: 14px;
        color: #333;
        background: transparent;
        transition: border-color 0.3s ease;
        font-family: inherit;
      }
  
      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: #999;
      }
  
      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-bottom-color: #af0505;
      }
  
      .form-group textarea {
        resize: vertical;
        min-height: 80px;
      }
  
      .form-group.full-width {
        width: 100%;
      }
  
      .submit-btn {
        background-color: #af0505;
        color: white;
        border: none;
        padding: 14px 32px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        margin-top: 10px;
      }
  
      .submit-btn:hover {
        background-color: #af0505;
        transform: translateY(-2px);
      }
  
      /* Responsive Design */
      @media (max-width: 1024px) {
        .navbar {
          padding: 16px 24px;
        }
  
        .nav-links {
          gap: 20px;
        }
  
        .contact-form-container {
          padding: 30px;
        }
      }
  
     @media (max-width: 768px){
        .contact-container {
          flex-direction: column;
        }
  
        .contact-info {
          width: 100%;
          min-width: unset;
        }
  
        .form-row {
          flex-direction: column;
          gap: 20px;
        }
  
        .bread-content h1 {
          font-size: 28px;
        }
      }
      .shayiny{
        margin-top: 30px;
      }
       /* Footer Styles */
    .footer {
      background-color: #efefefaf;
      color: #000000;
      font-size: 14px;
    }

    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr 2fr;
      gap: 40px;
    }

    /* Footer Column Styles */
    .footer-column h3 {
      color: #000000;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 24px;
      text-transform: uppercase;
    }

    .footer-column h3 span{
color: #af0505;
    }

    .footer-brand {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }

    .footer-description {
      line-height: 1.7;
      margin-bottom: 16px;
      color: #777;
    }

    .read-more {
      color: #f5a623;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .read-more:hover {
      color: #ffbc4b;
    }

    /* Category Links */
    .category-list {
      list-style: none;
    }

    .category-list li {
      margin-bottom: 12px;
    }

    .category-list a {
      color: #000000;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 450;
    }

    .category-list a:hover {
      color: #fff;
      
    }

    /* Services List - Two Columns */
    .services-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 30px;
    }

    .services-list li {
      margin-bottom: 0;
    }

    .services-list a {
      color: #000000;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 450;
    }

    .services-list a:hover {
      color: #000000;
    }

    /* Social Links */
    .follow-title {
      color: #000;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-top: 20px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      background-color: #000;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

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

    .social-link svg {
      width: 16px;
      height: 16px;
      fill: #fff;
      transition: fill 0.3s ease;
    }

    .social-link:hover svg {
      fill: #1c1c1c;
    }

    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid #2a2a2a;
      padding: 20px;
    }

    .footer-bottom-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .copyright {
      color: #000;
    }

    .copyright a {
      color: #f5a623;
      text-decoration: none;
    }

    .copyright a:hover {
      text-decoration: underline;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 500;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
      }

      .services-list {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
      }

      .services-list {
        grid-template-columns: 1fr;
      }

      .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
    ---------------------*/
/* Container and Row Styles for About Section */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }

  @media (max-width: 480px) {
    .row {
      margin: 0 -10px;
      width: calc(100% + 20px);
    }
  }

.row.align-items-center {
  align-items: center;
}

.row.justify-content-around {
  justify-content: space-around;
}

.row.flex-row-reverse {
  flex-direction: row-reverse;
}

.col-lg-5,
.col-lg-6 {
  padding: 0 15px;
  flex: 0 0 auto;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-5 {
  width: 41.666667%;
}

@media (max-width: 991px) {
  .col-lg-5,
  .col-lg-6 {
    width: 100%;
  }
  
  .row.flex-row-reverse {
    flex-direction: column;
  }
  
  .about-text {
    margin-top: 40px;
  }
}
.about-text h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .about-text h3 {
    font-size: 35px;
  }
}
.about-text h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .about-text h4 {
    font-size: 18px;
  }
}
.about-text p {
  font-size: 14px;
}
.about-text p mark {
  font-weight: 600;
  color: #3a3973;
}
.about-text .btn-bar {
  padding-top: 28px;
}
.about-text .btn-bar a {
  min-width: 150px;
  text-align: center;
  margin-right: 10px;
}

.about-list {
  padding-top: 10px;
}
.about-list .media {
  padding: 5px 0;
}
.about-list label {
  color: #3a3973;
  font-weight: 600;
  width: 88px;
  margin: 0;
  position: relative;
}
.about-list label:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  width: 1px;
  height: 12px;
  background: #3a3973;
  -moz-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  margin: auto;
  opacity: 0.5;
}
.about-list p {
  margin: 0;
  font-size: 15px;
}

.about-img {
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.06);
  padding: 10px;
  background: #ffffff;
}

.about-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .about-img {
    margin-top: 30px;
  }
}

.counter-section {
  padding: 40px 20px;
}
.counter-section .count-data {
  margin-top: 10px;
  margin-bottom: 10px;
}
.counter-section .count {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.counter-section p {
  font-weight: 500;
  margin: 0;
  color: #fe4f6c;
}
.theme-color {
    color: #fe4f6c;
}

.section {
    padding: 100px 0;
    position: relative;
}

.about-section {
    padding-bottom: 60px;
}
.stara{
  padding-left: 50px;
  padding-right: 50px;
}
.gray-bg {
    background-color: #ffffff;
}
.px-btn.theme a{
  text-decoration: none;
}
.px-btn.theme {
    background: #af0505;
    color: #ffffff;
    border: 2px solid #af0505;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    text-decoration: none;
}
.px-btn {
    padding: 0 20px;
    line-height: 42px;
    border: 2px solid transparent;
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.px-btn.theme-t {
    background: transparent;
    border: 2px solid #fe4f6c;
    color: #fe4f6c;
}
.wrapper {
  width: 100%;
  padding: 60px 0;
  background-color: #f8f2f24d;
  
}

.container-fostrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wrapper .content {
  margin-top: 40px;
}
.fostrap-logo {
  width: 100px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
h1.heading {
  color: #505050;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  text-align: center;
}
@media (min-width: 450px) {
  h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
} 
.card {
  display: block; 
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
    transition: box-shadow .25s; 
}
.card:hover {
  box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.img-card {
  width: 100%;
  height:200px;
  border-top-left-radius:2px;
  border-top-right-radius:2px;
  display:block;
    overflow: hidden;
}
.img-card img{
  width: 100%;
  height: 200px;
  object-fit:cover; 
  transition: all .25s ease;
}

.img-card:hover img {
  transform: scale(1.05);
} 
.card-content {
  padding:15px;
  text-align:left;
}
.card-title {
  margin-top:0px;
  font-weight: 700;
  font-size: 20px;
}
.card-title a {
  color: #000;
  text-decoration: none !important;
}
.card-read-more {
  border-top: 1px solid #D4D4D4;
}
.card-read-more a {
  text-decoration: none !important;
  padding:10px;
  font-weight:600;
  text-transform: uppercase;
  color: #af0505;
  display: block;
  transition: background-color 0.3s ease;
}

.card-read-more a:hover {
  background-color: #f5f5f5;
  color: #8a0404;
}

/* Responsive Column Classes */
/* Responsive Column Classes for Card Section */
.col-xs-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.col-sm-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Button Link Styles */
.btn-link {
  background: none;
  border: none;
  color: inherit;
  text-decoration: none;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.tarem{
  font-size: 14px;
}
.head-about{
  font-size: 25px;
}
.head-about span{
  color: #af0505; 
}

/* Utility Classes for Services Page */
.text-center {
  text-align: center !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.text-reset {
  color: inherit !important;
  text-decoration: none;
  text-align: left;
}

/* Services Page Specific Styles */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.w-lg-50 {
  width: 100%;
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50%;
  }
}

.text-success {
  color: #28a745 !important;
}

.text-muted {
  color: #6c757d !important;
}

.position-absolute {
  position: absolute !important;
}

.end-0 {
  right: 0 !important;
}

.top-0 {
  top: 0 !important;
}

.bg-danger {
  background-color: #af0505 !important;
}

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

.small {
  font-size: 0.875rem;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.lh-1 {
  line-height: 1 !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fs-6 {
  font-size: 1rem;
}

.stretched-link {
  position: relative;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* Card Styles for Services Page - More specific than about page cards */
.container .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem 1.5rem;
}

/* Keep existing card styles for about page wrapper */
.wrapper .card {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  transition: box-shadow .25s;
}

/* Link styles for services cards */
.container .card a {
  color: #af0505;
  text-decoration: none;
}

.container .card a:hover {
  color: #8a0404;
  text-decoration: underline;
}

/* text-reset should inherit color */
a.text-reset {
  color: inherit !important;
  text-decoration: none;
  text-align: left;
}

a.text-reset:hover {
  color: inherit !important;
}
.taye{
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 60px;
  padding-bottom: 60px;
  justify-content: center;
}

/* Read More Button Styles */
.read-more-btn {
  background: none;
  border: none;
  color: #af0505;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
  margin-top: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
  text-align: left;
  display: block;
  width: 100%;
}

.read-more-btn:hover {
  color: #8a0404;
  text-decoration: underline;
}

.read-more-content {
  display: none;
  font-size: 14px;
}

.read-more-content.show {
  display: inline;
}
.service-text{
  font-size: 14px;
  text-align: left;
}

/* Override text-center for headings and buttons in service cards */
.container .card h3,
.container .card .fs-6 {
  text-align: left !important;
}

.container .card .read-more-btn {
  text-align: left !important;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slides wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--transition-smooth), visibility 1s var(--transition-smooth);
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Background image */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.slide.active .slide-bg img {
  transform: scale(1);
}

/* Dark overlay for text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* Decorative grain texture */
.slide-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0 60px;
}

.slide-text {
  max-width: 650px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s var(--transition-smooth) 0.4s;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s var(--transition-smooth) 0.6s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateX(0);
}

.slide-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.slide-title {
  font-family: 'montserrat';
  font-size: clamp(20px, 45px, 45px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slide-title span {
  color: var(--accent);
  
}

.slide-description {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
}

.slide-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 197, 71, 0.3);
}

.slide-cta:hover::before {
  left: 100%;
}

.slide-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.slide-cta:hover svg {
  transform: translateX(5px);
}

/* Navigation dots - Side positioned */
.nav-dots {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-dot {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-inactive);
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-dot::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.4s var(--transition-smooth);
}

.nav-dot:hover::before {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.nav-dot.active::before {
  background: var(--dot-active);
  transform: scale(1);
  box-shadow: 0 0 20px rgba(232, 197, 71, 0.5);
}

.nav-dot.active::after {
  border-color: #fff;
  transform: scale(1.6);
}

/* Progress line between dots */
.nav-dot-progress {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 0;
  background: var(--accent);
  transform: translateX(-50%);
  margin-top: 2px;
  border-radius: 1px;
}

.nav-dot.active .nav-dot-progress {
  animation: progressLine 5s linear forwards;
}

@keyframes progressLine {
  from { height: 0; }
  to { height: 20px; }
}

/* Navigation arrows */
.nav-arrows {
  position: absolute;
  bottom: 80px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.nav-arrow {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--transition-smooth);
}

.nav-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #0a0a0a;
  transform: scale(1.1);
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
}

/* Bottom gradient */
.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .slide-content {
      padding: 40px 40px;
  }

  .nav-dots {
      right: 30px;
  }

  .nav-arrows {
      right: 40px;
      bottom: 40px;
  }
}

@media (max-width: 768px) {
  .slide-content {
      padding: 0 24px;
      align-items: flex-end;
      padding-bottom: 140px;
  }

  .slide-overlay {
      background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.85) 0%,
          rgba(0, 0, 0, 0.4) 50%,
          rgba(0, 0, 0, 0.2) 100%
      );
  }

  .nav-dots {
      right: 20px;
      gap: 18px;
  }

  .nav-arrow {
      width: 50px;
      height: 50px;
  }

  .nav-arrows {
      right: 24px;
      bottom: 30px;
  }

  .slide-cta {
      padding: 16px 32px;
  }
}

:root {
  --accent: #af0505;
  --accent-hover: #af0505;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --dot-inactive: rgba(255, 255, 255, 0.3);
  --dot-active: var(--accent);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  /* Core Values Section Variables */
  --yellow-primary: #af0505;
  --yellow-dark: #af0505;
  --black: #000000;
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #999999;
  --white: #ffffff;
  --bg-light: #fafafa;
  /* Hero Banner Variables */
  --hero-yellow: #F5B800;
  --hero-gray-medium: #888888;
}
.commitment-section {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  padding: 40px 20px;
  margin: -50px auto 0 auto;
  padding-top: 40px;
  position: relative;
  z-index: 5;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Left side */
.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

.experience-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.years-container {
  position: relative;
  flex-shrink: 0;
}

/* Halftone dot pattern */
.halftone-pattern {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 100px;
  height: 80px;
  background-image: radial-gradient(circle, #d0d0d0 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse 60% 50% at 70% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 70% 40%, black 0%, transparent 70%);
  z-index: 0;
}

.years-number {
  position: relative;
  font-size: 5rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  z-index: 1;
}

.experience-text {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.7;
  padding-top: 8px;
}

.services-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #af0505;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.services-link:hover {
  color: #af0505;
}

/* Divider */
.divider {
  width: 4px;
  height: 140px;
  background: #af0505;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Right side */
.right-content {
  flex: 1.2;
}

.headline {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}

.headline strong {
  font-weight: 700;
  color: #af0505;
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-section {
      flex-direction: column;
      gap: 30px;
      text-align: center;
      padding: 30px 20px;
      margin: -30px auto 0 auto;
  }

  .left-content {
      padding-left: 0;
      align-items: center;
      gap: 20px;
  }

  .experience-block {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
  }

  .years-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .years-number {
      font-size: 4rem;
      text-align: center;
  }

  .experience-text {
      text-align: center;
      padding-top: 0;
      max-width: 100%;
  }

  .services-link {
      justify-content: center;
      margin-top: 10px;
  }

  .divider {
      width: 80px;
      height: 4px;
      margin: 0 auto;
  }

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

  .headline {
      text-align: center;
      font-size: 1.75rem;
  }

  .halftone-pattern {
      left: 50%;
      transform: translateX(-50%);
  }
}

.services-section {
  padding: 40px 0;
  background: #fcf9f9;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.header-content {
  max-width: 500px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #af0505;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #af0505;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.service-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding-left: 140px;
  padding-top: 30px;
}

.service-tabs-header .label {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.service-tabs-header .label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-title {
  font-size: clamp(30px, 45px, 35px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.scroll-controls {
  display: flex;
  gap: 12px;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  border-color: #af0505;
  background: #af0505;
  color: #ffffff;
}

.scroll-btn svg {
  width: 20px;
  height: 20px;
}

/* Scrollable container */
.services-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.services-scroll {
  display: flex;
  gap: 24px;
  padding: 10px 40px 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

/* Service card */
.service-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #af0505;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #af0505;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #af0505 0%, #af0505 100%);
  color: #ffffff;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  margin-top: 15px;
}

.service-description {
  font-size: 13px;
  color: #18191a;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #af0505;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  width: 18px;
  height: 18px;
}

/* Scroll progress indicator */
.scroll-progress-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.scroll-progress {
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.scroll-progress-bar {
  height: 100%;
  background: #af0505;
  width: 20%;
  border-radius: 2px;
  transition: transform 0.1s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
      padding: 60px 0;
  }

  .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      padding: 0 24px;
  }

  .section-title-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }

  .service-tabs-header {
      gap: 8px;
      padding-left: 1px;
  }

  .service-tabs-header .label {
      font-size: 10px;
      padding: 8px 16px;
  }

  .services-scroll {
      padding: 10px 24px 30px;
      gap: 16px;
  }

  .service-card {
      flex: 0 0 280px;
      padding: 24px;
  }

  .scroll-progress-container {
      padding: 0 24px;
  }
}
.newsletter-section {
  position: relative;
  background: linear-gradient(135deg, #af0505 0%, #af0505 50%, #af0505 100%);
  
  padding: 50px 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.tando{
  margin-top: 90px;
  margin-bottom: 70px;
}
/* Decorative elements */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

/* Dot pattern */
.dot-pattern {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 120px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.6;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.newsletter-text {
  flex: 1;
  max-width: 480px;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 24px;
  color: #ffffff;
}

.newsletter-icon svg {
  width: 28px;
  height: 28px;
}

.newsletter-title {
  font-size: clamp(30px, 30px, 30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.newsletter-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.newsletter-form {
  flex: 1;
  max-width: 450px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-input {
  flex: 1;
  border: none;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: transparent;
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-button {
  flex-shrink: 0;
  padding: 18px 32px;
  background: #af0505;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-button:hover {
  background: #af0505;
  transform: translateY(-2px);
}

.form-button svg {
  width: 18px;
  height: 18px;
}

.form-note {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Success state */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-success.show {
  display: flex;
}

.form-wrapper.hide {
  display: none;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}

.success-icon svg {
  width: 24px;
  height: 24px;
}

.success-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.success-text p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .newsletter-content {
      flex-direction: column;
      text-align: center;
  }

  .newsletter-text {
      max-width: 100%;
  }

  .newsletter-form {
      max-width: 100%;
      width: 100%;
  }

  .form-note {
      justify-content: center;
  }

  .dot-pattern {
      display: none;
  }
}

@media (max-width: 550px) {
  .newsletter-section {
      padding: 50px 28px;
  }

  .form-wrapper {
      flex-direction: column;
  }

  .form-button {
      justify-content: center;
  }

  .form-success {
      flex-direction: column;
      text-align: center;
  }
}

/* Floating Feedback Button */
.feedback-btn {
  position: fixed;
  bottom: 390px;
  right: 1px;
  z-index: 999;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 60px;
  min-height: 120px;
  letter-spacing: 1px;
}

.feedback-btn:hover {
  background-color: #000000;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.feedback-btn:active {
  transform: translateY(0);
}

.feedback-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feedback-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

/* Feedback Modal */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feedback-modal.active {
  opacity: 1;
  visibility: visible;
}

.feedback-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.feedback-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.feedback-modal.active .feedback-modal-content {
  transform: scale(1) translateY(0);
}

.feedback-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1002;
}

.feedback-modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.feedback-modal-close svg {
  width: 20px;
  height: 20px;
  color: #374151;
}

.feedback-form-container {
  padding: 40px;
}

.feedback-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feedback-form-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.feedback-form-group input,
.feedback-form-group select,
.feedback-form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: border-color 0.2s ease;
  color: #1a1a1a;
}

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

.feedback-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback-rating-label {
  margin-bottom: 8px;
}

.feedback-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.feedback-rating input[type="radio"] {
  display: none;
}

.feedback-rating .rating-star {
  font-size: 32px;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.feedback-rating .rating-star:hover,
.feedback-rating .rating-star.active {
  color: #fbbf24;
  transform: scale(1.1);
}

.feedback-rating input[type="radio"]:checked ~ .rating-star,
.feedback-rating .rating-star:hover ~ .rating-star {
  color: #fbbf24;
}

.feedback-submit-btn {
  background-color: #af0505;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 8px;
}

.feedback-submit-btn:hover {
  background-color: #8a0404;
  box-shadow: 0 4px 15px rgba(175, 5, 5, 0.3);
  transform: translateY(-1px);
}

.feedback-submit-btn:active {
  transform: translateY(0);
}

.feedback-submit-btn svg {
  width: 20px;
  height: 20px;
}

.feedback-success {
  text-align: center;
  padding: 40px 20px;
}

.feedback-success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  margin: 0 auto 24px;
}

.feedback-success-icon svg {
  width: 32px;
  height: 32px;
}

.feedback-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feedback-success p {
  font-size: 15px;
  color: #6b7280;
}

/* Responsive Feedback Modal */
@media (max-width: 768px) {
  .feedback-btn {
    bottom: 20px;
    right: 15px;
    padding: 14px 8px;
    font-size: 11px;
    min-width: 48px;
    min-height: 140px;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .feedback-btn svg {
    width: 18px;
    height: 18px;
  }

  .feedback-btn span {
    font-size: 11px;
  }

  .feedback-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .feedback-form-container {
    padding: 32px 24px;
  }

  .feedback-form-title {
    font-size: 24px;
  }

  .feedback-form-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .feedback-btn {
    bottom: 15px;
    right: 10px;
    padding: 12px 6px;
    font-size: 10px;
    min-width: 45px;
    min-height: 130px;
    gap: 8px;
  }

  .feedback-btn svg {
    width: 16px;
    height: 16px;
  }

  .feedback-btn span {
    font-size: 10px;
  }

  .feedback-form-container {
    padding: 24px 20px;
  }

  .feedback-form-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .feedback-form-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .feedback-form {
    gap: 20px;
  }

  .feedback-form-group {
    gap: 6px;
  }

  .feedback-rating .rating-star {
    font-size: 28px;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR SMALL DEVICES
   ============================================ */

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
  /* General Page Spacing */
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Navigation */
  .navbar {
    padding: 10px 15px;
    width: calc(100% - 20px);
    top: 10px;
  }

  .logo-img {
    width: 80px;
    height: auto;
  }

  .navbar.active {
    border-radius: 20px;
  }

  .navbar.active .nav-links {
    padding: 15px;
    gap: 0;
  }

  .navbar.active .nav-links li {
    margin-bottom: 8px;
  }

  .navbar.active .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
  }

  .navbar.active .cta-buttons {
    top: calc(100% + 240px);
    padding: 15px;
    gap: 10px;
  }

  .navbar.active .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .btn-whatsapp span {
    font-size: 12px;
  }

  /* Breadcrumb */
  .breadcrumb {
    min-height: 200px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bread-content {
    width: 100%;
    padding: 0 20px;
  }

  .bread-content h1 {
    font-size: 22px;
    padding-top: 0;
    margin-bottom: 10px;
  }

  .bread-content p {
    font-size: 12px;
    padding-top: 0;
  }

  /* Slider */
  .slider-container {
    margin-bottom: 0;
    height:80vh;
  }

  .slide-content {
    padding: 40px 20px !important;
    text-align: center;
  }

  .slide-text {
    max-width: 100%;
    padding-top: 60px;
  }

  .slide-tag {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .slide-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    text-align: center;
  }

  .slide-description {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
    text-align: center;
  }

  .slide-cta {
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 10px;
    justify-content: center;
  }

  .nav-dots {
    bottom: 15px;
  }

  .nav-arrows {
    display: none;
  }

  /* Commitment Section */
  .commitment-section {
    margin: -20px auto 0 auto;
    padding: 25px 15px;
    border-radius: 16px;
    gap: 25px;
  }

  .left-content {
    gap: 15px;
    padding-left: 0;
  }

  .experience-block {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .years-number {
    font-size: 3.5rem;
    text-align: center;
  }

  .experience-text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.6;
    padding-top: 0;
    max-width: 100%;
  }

  .services-link {
    justify-content: center;
    margin-top: 8px;
    font-size: 0.75rem;
  }

  .divider {
    width: 60px;
    height: 3px;
    margin: 0 auto;
  }

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

  .headline {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3;
  }

  /* About Section */
  .about-section {
    padding: 40px 0;
  }

  .stara {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin: 0 -10px;
  }

  .col-lg-5,
  .col-lg-6 {
    padding: 0 10px;
  }

  .about-text {
    margin-top: 30px;
    text-align: center;
  }

  .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .about-img {
    margin-top: 20px;
    text-align: center;
  }

  .about-img img {
    max-width: 100%;
    height: auto;
  }

  /* Services Section */
  .services-section {
    padding: 30px 0;
  }

  .section-header {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-tabs-header {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .service-tabs-header .label {
    font-size: 9px;
    padding: 6px 12px;
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .services-scroll-wrapper {
    padding: 0 15px;
  }

  .service-card {
    min-width: 100%;
    padding: 20px;
    margin-right: 15px;
  }

  .service-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  /* Services Page Cards */
  .container-fluid {
    padding: 0;
  }

  .container.taye {
    padding: 20px 10px;
  }

  .row {
    margin: 0 -10px;
  }

  .col-lg-3 {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .card {
    margin-bottom: 20px;
    width: 100%;
  }

  .card .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .card .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .service-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .read-more-btn {
    font-size: 12px;
    padding: 8px 16px;
    margin-top: 10px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-container {
    flex-direction: column;
    gap: 0;
  }

  .contact-info {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact-info .subtitle {
    margin-bottom: 25px;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .contact-item-text {
    font-size: 13px;
    text-align: center;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-container h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
    margin-bottom: 15px;
  }

  .form-group label {
    margin-bottom: 8px;
    display: block;
  }

  .submit-btn {
    width: 100%;
    margin-top: 10px;
  }

  /* Footer */
  .footer {
    padding: 0;
  }

  .footer-main {
    padding: 40px 15px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-column h3 {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-brand img {
    width: 120px;
    margin: 0 auto;
  }

  .follow-title {
    text-align: center;
    margin-bottom: 15px;
  }

  .social-links {
    gap: 12px;
    justify-content: center;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .category-list,
  .services-list {
    text-align: center;
    gap: 12px;
  }

  .category-list li,
  .services-list li {
    margin-bottom: 10px;
  }

  .footer-bottom {
    padding: 20px 15px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .copyright {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .footer-links {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding: 40px 20px;
  }

  .newsletter-content {
    gap: 25px;
    text-align: center;
  }

  .newsletter-text {
    text-align: center;
    max-width: 100%;
  }

  .newsletter-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .newsletter-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .form-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .form-input {
    width: 100%;
  }

  .form-button {
    width: 100%;
    justify-content: center;
  }

  /* Corporate Statements Cards */
  .wrapper {
    padding: 30px 15px;
  }

  .container-fostrap {
    padding: 0;
  }

  .head-about {
    font-size: 20px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .content {
    padding: 0;
  }

  .row {
    margin: 0 -10px;
  }

  .col-xs-12,
  .col-sm-4 {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .card {
    margin-bottom: 20px;
  }

  .card-content {
    padding: 20px 15px;
    text-align: center;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .tarem {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
  /* Navigation */
  .navbar {
    padding: 12px 18px;
  }

  /* Slider */
  .slide-content {
    padding: 40px 20px;
  }

  .slide-title {
    font-size: 28px !important;
  }

  .nav-dots {
    bottom: 20px;
  }

  /* Commitment Section */
  .commitment-section {
    padding: 30px 18px;
    gap: 30px;
  }

  .left-content {
    gap: 18px;
  }

  .experience-block {
    gap: 18px;
  }

  .years-number {
    font-size: 4rem;
  }

  .experience-text {
    font-size: 0.9rem;
  }

  .headline {
    font-size: 1.6rem;
  }

  /* About Section */
  .about-text h3 {
    font-size: 28px;
  }

  /* Services Section */
  .section-header {
    padding: 0 25px;
  }

  .section-title {
    font-size: 26px;
  }

  /* Contact Section */
  .contact-info {
    padding: 35px 25px;
  }

  .contact-form-container {
    padding: 35px 25px;
  }

  /* Footer */
  .footer-main {
    padding: 50px 20px;
  }
}

/* Medium Devices (tablets, 768px and down) */
@media (max-width: 768px) {
  /* Navigation improvements */
  .navbar.active .nav-links {
    padding: 15px;
    margin-top: 8px;
  }

  .navbar.active .cta-buttons {
    padding: 15px;
    margin-top: 8px;
  }

  /* Slider */
  .slide-title {
    font-size: 25px !important;
  }

  .slide-description {
    font-size: 15px !important;
  }

  /* Commitment Section */
  .commitment-section {
    margin: -5px auto 0 auto;
    padding: 35px 20px;
    gap: 35px;
  }

  .left-content {
    padding-left: 0;
    gap: 20px;
    align-items: center;
  }

  .experience-block {
    gap: 18px;
  }

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

  .services-link {
    justify-content: center;
  }

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

  .headline {
    text-align: center;
  }

  /* About Section */
  .stara {
    padding-left: 25px;
    padding-right: 25px;
  }

  .about-text {
    margin-top: 30px;
  }

  /* Services Section */
  .services-scroll-wrapper {
    padding: 0 20px;
  }

  .scroll-controls {
    gap: 10px;
  }

  .scroll-btn {
    width: 36px;
    height: 36px;
  }

  /* Services Page */
  .container.taye {
    padding: 30px 15px;
  }

  .card img {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Contact Section */
  .contact-section {
    padding: 50px 20px;
  }

  .contact-info {
    padding: 40px 30px;
  }

  .contact-form-container {
    padding: 40px 30px;
  }

  .form-row {
    gap: 20px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 50px 25px;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .form-button {
    width: 100%;
    justify-content: center;
  }
}

/* Large Devices (tablets landscape, 992px and down) */
@media (max-width: 992px) {
  /* Services Page - 2 columns */
  .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
  }
}

/* Utility: Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Utility: Show only on mobile */
.show-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .show-mobile {
    display: block !important;
  }
}

/* ============================================
   Core Values Section (from test.html)
   ============================================ */

/* Core Values Section */
.core-values-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Left Content */
.content-side {
  padding: 40px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.label {
  display: inline-flex;
  align-items: center;
  background-color: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-bottom: 32px;
  position: relative;
  width: fit-content;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--yellow-primary);
}

.main-heading {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.intro-text {
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 480px;
}

/* Value Items */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid #e8e8e8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover .icon-box {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.3);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: var(--black);
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.value-description {
  font-size: 13px;
  color: #000;
  line-height: 1.6;
}

/* Right Image Side */
.image-side {
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-left: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.badge-top {
  font-size: 7px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.badge-icon svg {
  fill: var(--yellow-primary);
}

.badge-main {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.badge-sub {
  font-size: 6px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Responsive for Core Values Section */
@media (max-width: 1024px) {
  .core-values-section {
    grid-template-columns: 1fr;
  }

  .content-side {
    padding: 60px 40px;
    order: 2;
  }

  .image-side {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    order: 1;
  }

  .badge {
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 640px) {
  .content-side {
    padding: 40px 24px;
  }

  .main-heading {
    font-size: 32px;
  }

  .value-item {
    gap: 16px;
    padding: 20px 0;
  }

  .icon-box {
    width: 48px;
    height: 48px;
  }

  .icon-box svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Hero Banner Section (from test.html)
   ============================================ */

/* Hero Banner Section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
              url('https://images.unsplash.com/photo-1518709766631-a6a7f45921c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Yellow Label with arrow shape */
.section-label {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  margin-bottom: 20px;
}

.section-label-text {
  background-color: var(--hero-yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px 10px 20px;
  position: relative;
}

/* Arrow/triangle on the right side */
.section-label-text::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 12px solid var(--hero-yellow);
}

/* Hero Heading */
.hero-heading {
  
  font-size: clamp(32px, 35px, 48px);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  line-height: 1.25;
  max-width: 1200px;
  text-transform: uppercase;
}

/* Yellow dot accent */
.yellow-dot {
  position: absolute;
  top: 50%;
  right: 220px;
  width: 6px;
  height: 6px;
  background-color: var(--hero-yellow);
  border-radius: 50%;
}

/* Breadcrumb Container */
.breadcrumb-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
}

.hero-banner .breadcrumb {
  display: flex;
  align-items: center;
  position: relative;
  padding: 14px 40px;
  gap: 10px;
  background-color: var(--white);
  height: auto;
  min-height: auto;
  background-image: none;
}

/* Left arrow point */
.hero-banner .breadcrumb::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 20px solid var(--white);
}

/* Right arrow point */
.hero-banner .breadcrumb::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 20px solid var(--white);
}

.breadcrumb-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--hero-gray-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: var(--black);
}

.breadcrumb-item.current {
  color: var(--black);
  font-weight: 600;
}

/* Yellow separator dash */
.breadcrumb-separator {
  width: 18px;
  height: 2px;
  background-color: #af0505;
}

/* Responsive for Hero Banner */
@media (max-width: 768px) {
  .hero-banner {
    padding: 40px 24px;
    height: 280px;
  }

  .hero-banner .breadcrumb {
    padding: 12px 32px;
  }

  .breadcrumb-item {
    font-size: 12px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .yellow-dot {
    display: none;
  }
}