/* ================================
   GLOBAL STYLES
================================== */
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  p {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 50px;
    padding-bottom: 10px;
  }
  
  
  /* ================================
     BACKGROUND & HERO SECTION
  ================================== */
  .background-container {
    position: relative;
    width: 100%;
    background-image: url(../images/company-history3.avif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 60vh;
  }
  
  .hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50vh;
    background: none;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
  }
  
  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;
}

  
  /* ================================
     COMPANY HISTORY - LAYOUT
  ================================== */
  .company-history-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    gap: 40px;
  }
  
  .left-content {
    width: 30%;
  }
  
  .right-content {
    width: 70%;
  }
  
  
  /* ================================
     LEFT SIDE - ABOUT US MENU & CONTACT
  ================================== */
  .about-us-box {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .about-us-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;
    transition: 0.3s ease;
  }
  
  .about-us-item:hover,
  .about-us-item.active {
    background: red;
    color: white;
    border: none;
  }
  
  .arrow {
    font-size: 14px;
  }
  
  .quote-contact {
    margin-top: 20px;
  }
  
  .contact-box {
    background-color: rgb(53, 59, 70);
    color: white;
    margin: 20px;
    padding: 20px;
  }
  
  .contact-title {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    font-weight: bold;
    text-align: center;
    width: 50%;
    margin: 40px auto 20px;
  }
  
  .get-in-touch-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
    margin-left: -50px;
  }
  
  .contact-box-address,
  .contact-box-tel,
  .contact-box-time {
    padding-left: 110px;
  }
  
  .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;
  }
  
  .contact-box button {
    width: 100%;
    padding: 20px;
    background-color: white;
    color: rgb(53, 59, 70);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    margin: 20px 0;
  }
  
  
  /* ================================
     RIGHT SIDE - CONTENT TEXT
  ================================== */
  .right-content h1,
  .right-content h2,
  h3 {
    padding-left: 30px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .right-content h1 {
    padding-top: 20px;
    padding-left: 70px;
    font-size: 24px;
  }
  
  .right-content h2 {
    font-size: 20px;
    color: #d62828;
  }
  
  .right-content p {
    margin-left: 20px;
    font-size: 18px;
  }
  
  
  /* ================================
     IMAGE SECTION
  ================================== */
  .sculpting-image-container {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
  }
  
  .sculpting-image-container img {
    width: 100%;
    height: auto;
    padding-left: 70px;
  }
  
  
  /* ================================
     TIMELINE
  ================================== */
  .milestones-and-achievements h1 {
    margin: 40px 0;
  }
  
  .timeline-container {
    max-width: 800px;
    margin: auto;
  }
  
  .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 0;
    padding-left: 60px;
  }
  
  .timeline-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgb(212, 208, 208);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: transparent;
    margin-left: 60px;
  }
  
  .timeline-icon i {
    font-size: 24px;
    color: red;
  }
  
  .timeline-content {
    padding: 15px;
    width: 100%;
    margin-left: 60px;
    position: relative;
  }
  
  .timeline-content h2 {
    font-size: 20px;
    margin-left: -30px;
    position: relative;
  }
  
  .timeline-content h2::before {
    content: "";
    width: 40px;
    height: 3px;
    background-color: red;
    position: absolute;
    top: -10px;
    left: 70px;
  }
  
  .timeline-content p {
    font-size: 16px;
    color: #333;
    margin-left: -10px;
  }
  
  
  /* ================================
     FUTURE VISION SECTION
  ================================== */
  .future-vision-container {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
  }
  
  .future-vision-container h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .future-vision-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .vision-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .vision-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .vision-content {
    padding: 20px;
    background: #fff;
    text-align: left;
  }
  
  .vision-content h2 {
    font-size: 22px;
    color: rgb(208, 46, 46);
    margin-bottom: 10px;
    padding-left: 0;
  }
  
  .vision-content p {
    font-size: 18px;
    color: #666;
    margin-left: -10px;
  }
  
  
  /* ================================
     ANIMATIONS
  ================================== */
  .timeline-item,
  .vision-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .timeline-item.appear,
  .vision-item.appear {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  /* ================================
     CALL TO ACTION SECTION
  ================================== */
  .about-section-cta {
    padding: 80px 20px;
    text-align: center;
  }
  
  .about-section-cta h2 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  
  .about-section-cta p {
    font-size: 20px;
    padding-bottom: 60px;
  }
  
  .button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    background-color: #d62828;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .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;
}
  
  /* ================================
     MEDIA QUERIES (Grouped)
  ================================== */
 
  @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) {
    .company-history-section {
      flex-direction: column;
      padding: 40px 30px;
    }
  
    .left-content,
    .right-content {
      width: 100%;
    }
  
    .sculpting-image-container img {
      padding-left: 0;
    }
  
    .contact-box-address,
    .contact-box-tel,
    .contact-box-time {
      padding-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .hero-banner {
      height: 200px;
    }
  
    .breadcrumb {
      font-size: 0.9rem;
    }
  
    .page-title {
      font-size: 1.8rem;
    }
  
    .vision-grid {
      grid-template-columns: 1fr;
    }
  
    .timeline-content h2::before {
      left: 30px;
    }
  
    .vision-content p,
    .timeline-content p {
      margin-left: 0;
    }
  
    .right-content p {
      margin-left: 0;
    }
  }
  