/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #333;
  }

  .strategy-service-box h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #333;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin: 10px 0;
    cursor: pointer;
  }
  
  /* ==========================================================================
     HERO SECTION
     ========================================================================== */
  .background-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/strategy9.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 60vh;
  }
  
  .hero-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: none;
  }
  
  .hero-overlay {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 10;
  }
  
  .breadcrumb {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    opacity: 0.8;
  }
  
  .page-title {
    font-size: 2.5rem;
    text-transform: capitalize;
    margin: 0;
  }
  
  /* Spacing below hero */
  section.hero-banner + .about-us {
    margin-top: 20px;
  }

  .animate-left,
  .animate-right {
    opacity: 0;
  }

  .animate-now.animate-left {
    animation: slideInLeft 1s ease-out forwards;
  }

  .animate-now.animate-right {
    animation: slideInRight 1s ease-out forwards;
  }

  
  /* ==========================================================================
     STRATEGY CONSULTING SECTION
     ========================================================================== */
  .strategy-consulting-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    gap: 40px;
  }
  
  .left-content {
    width: 70%;
  }
  
  .main-image,
  .secondary-image {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .left-content p {
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 18px;
  }
  
  .strategy-services-title {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .strategy-services li {
    background: #f5f5f5;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
  }
  
  /* STRATEGY SERVICE BOXES */
  .main-box {
    background-color: rgb(246, 241, 241);
    padding: 40px;
    width: 100%;
    max-width: 1000px;
  }
  
  .strategy-service-box {
    background-color: rgb(246, 241, 241);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgb(246, 241, 241);
  }
  
  .icon {
    font-size: 30px;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .strategy-service-box h3 {
    text-align: left;
  }
  
  .toggle {
    color: red;
    font-weight: bold;
    margin-right: 5px;
  }
  
  .desc {
    display: none;
    margin-top: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .cta {
    display: block;
    text-align: left;
    font-weight: bold;
    color: red;
    text-decoration: none;
    margin-top: 10px;
  }
  
  /* ==========================================================================
     RIGHT SIDE - SERVICES AND FORMS
     ========================================================================== */
  .right-content {
    width: 30%;
  }
  
  .strategy-services-box {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .service-item {
    padding: 15px;
    border: 1px solid rgb(195, 199, 208);
    color: rgb(53, 59, 70);
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    align-items: center;
  }
  
  .service-item:hover,
  .service-item.active {
    background: red;
    color: white;
    border: none;
  }
  
  .arrow {
    font-size: 14px;
  }
  
  .quote-contact {
    margin-top: 20px;
  }
  
  /* ==========================================================================
     QUOTE BOX & CONTACT BOX
     ========================================================================== */
  .quote-box,
  .contact-box {
    padding: 20px;
    border-radius: 5px;
    margin: 0 20px 50px 20px;
  }
  
  .quote-box {
    border: 1px solid rgb(195, 199, 208);
  }
  
  .quote-title {
    padding: 10px 0;
    font-weight: bold;
    font-size: 24px;
  }
  
  .quote-box input,
  .quote-box select,
  .quote-box textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid rgb(195, 199, 208);
    border-radius: 5px;
    font-size: 16px;
  }
  
  .quote-box textarea {
    height: 100px;
  }
  
  .quote-box button {
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    background-color: rgb(208, 43, 47);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.5s;
    font-weight: bold;
    text-align: center;
  }
  
  .quote-box button:hover {
    background-color: rgb(53, 59, 70);
  }
  
  /* ================================
   Contact Us Section
  ================================= */
  .contact-box {
    background-color: rgb(53, 59, 70);
    color: white;
  }
  
  .contact-title {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    text-align: center;
    width: 50%;
  }
  
  .get-in-touch-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
  }

  .get-in-touch-title-2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .contact-box-address,
  .contact-box-tel,
  .contact-box-time {
    padding-left: 60px;
    font-size: 1rem;
  }
  
  .contact-box .icon {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  .biz,
  .contact-us-tel,
  .working-time {
    font-size: 18px;
    font-weight: bold;
  }
  
  .contact-box button {
    width: 100%;
    padding: 20px;
    background-color: white;
    color: rgb(53, 59, 70);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
  }
  
  /* ==========================================================================
     CALL TO ACTION
     ========================================================================== */
  .strategy-cta {
    padding: 60px 20px;
    text-align: center;
  }
  
  .strategy-cta h2 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  
  .strategy-cta p {
    font-size: 20px;
    padding-bottom: 40px;
  }
  
  .cta-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    background-color: #d62828;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
  }
  
  .cta-button:hover {
    background-color: #b71c1c;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #c40000;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    z-index: 1000;
  }
  
  /* ==========================================================================
     RESPONSIVE STYLES
     ========================================================================== */
  
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .animate-left {
      animation: slideInLeft 1s ease-out forwards;
    }
    
    .animate-right {
      animation: slideInRight 1s ease-out forwards;
    }
  
  
     @media (max-width: 1024px) {
    .strategy-consulting-section {
      flex-direction: column;
      padding: 40px 40px;
    }
  
    .left-content,
    .right-content {
      width: 100%;
    }
  
    .contact-title {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .hero-banner {
      height: 200px;
    }
  
    .breadcrumb {
      font-size: 0.9rem;
    }
  
    .page-title {
      font-size: 1.8rem;
    }
  
    .strategy-consulting-section {
      padding: 30px 20px;
    }
  
    .quote-box,
    .contact-box {
      margin-left: 0;
      margin-right: 0;
    }
  
    .strategy-cta h2 {
      font-size: 24px;
    }
  
    .strategy-cta p {
      font-size: 16px;
    }
  
    .cta-button {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .breadcrumb {
      font-size: 0.8rem;
    }
  
    .page-title {
      font-size: 1.5rem;
    }
  
    .quote-box button,
    .contact-box button {
      padding: 15px;
    }
  
    .strategy-cta h2 {
      font-size: 20px;
    }
  
    .strategy-cta p {
      font-size: 14px;
    }
  
    .cta-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }