
  /* Container for the entire section */
  .contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    
    margin-bottom: 80px;
    padding: 0  20px 80px 0;
  }

  /* Left side orange block container */
  .image-wrapper {
    position: relative;
    flex: 0 0 360px;
    height: 540px;
  }

  /* The orange square behind the image */
  .orange-block {
    position: absolute;
    width: 250px;
    height: 640px;
    top: 0;
    left: 0;
    background-color: #FF5A00; /* exact orange from the image */
    z-index: 1;
  }

  /* Image container with rounded corners and on top of orange block */
  .image-wrapper img {
    position: relative;
    top: 50px;
    left: 100px;
    width: 300px;
    height: 540px;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
  }

  /* Right side content */
  .contact-info {
    flex: 1;
    max-width: 480px;
    align-items: end;
    display: flex;
    padding-right: 80px;
    flex-direction: column;
  }

  /* Heading */
  .contact-info h2 {
    color: #FF5A00;
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 40px 0;
  }

  /* Contact item container */
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    max-width: 250px;
    width: 100%;
  }

  /* Icon circle */
  .icon-circle {
    background-color: #FF5A00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }

  /* SVG icon inside the circle */
  .icon-circle svg {
    fill: white;
    width: 30px;
    height: 30px;
  }

  /* Text content within contact item */
  .contact-text {
    flex: 1;
  }
  /* Label title */
  .contact-text strong {
    display: block;
    font-weight: 700;
    font-size: 20   px;
    color: #000000;
  }

  /* Body text */
  .contact-text span {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1;
    white-space: pre-line;
  }

  /* Email container */
  .email-section {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  /* Black mail icon */
  .email-icon {
    width: 48px;
    height: 38px;
    margin-right: 15px;
  }
  
  /* Email links */
  .email-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .email-links a {
    color: #FF5A00;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
  }

  .email-links a:hover {
    text-decoration: underline;
  }
.contactLinksSection{
    width: 100%;
    padding: 100px 50px;
    font-family: Arial, sans-serif;
}

.contactLinksContainer{
    max-width: 1400px;
    margin: auto;
    display: flex;
    
    justify-content: space-between;
    align-items: center;
}

.contactText h2{
    color: #ff5722;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
}

.contactIcons{
    display: flex;
    flex-wrap: wrap;
    gap: 58px;
    align-items: center;
    justify-content: space-evenly;
}

.contactIcons a{
    font-size: 26px;
    transition: 0.3s ease;
}

/* Icon Theme Colors */
.contactIcons a .fa-facebook{ color: #1877F2; transform: scale(2); }       /* Facebook Blue */
.contactIcons a .fa-linkedin{ color: #0A66C2; transform: scale(2); }       /* LinkedIn Blue */
.contactIcons a .fa-square-whatsapp{ color: #25D366; transform: scale(2); }/* WhatsApp Green */
.contactIcons a .fa-square-instagram{ 
  transform: scale(2);
  color: #E4405F;                                   /* Instagram main tone */
}
.contactIcons a .fa-envelope{ color: #D44638; transform: scale(2); }       /* Email Red */

.contactIcons a:hover{
    transform: scale(2.2);
}

/* Responsive */
@media(max-width: 600px){
    .contactLinksContainer{
        flex-direction: column;
        gap: 50px;
    }
}

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-section {
      margin: 40px 20px;
    }
    .image-wrapper {
      display: none;
    }
    .orange-block {
      width: 320px;
      height: 480px;
      left: 0;
      top: 0;
    }
    .image-wrapper img {
      width: 320px;
      height: 480px;
    }
    .contact-info {
      padding-left: 0;
      max-width: 100%;
      text-align: start;
      align-items: center;
    }
    .contact-item {
      gap: 10px;
    }
    .icon-circle {
      margin-right: 0;
      margin-bottom: 12px;
    }
    .contact-text strong,
    .contact-text span {
      text-align: start;
    }
    .email-section {
      justify-content: center;
      flex-direction: row;
      gap: 12px;
    }
    .email-links {
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
  }