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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Layout container */
.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}
.logo1 {
 display: none;
}

/* Content (left side - smaller) */
.content {
  flex: 0.7;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: #fff;
}

/* Logo wrapper positioned top-left on desktop */
.logo-wrapper {
  position: absolute;
  top: 40px;
  left: 40px;
}

.dataTitle {
  margin-top: 55%;
}

.logo {
  width: 100px;
}

.title {
  font-size: 48px;
  color: #ff7f03;
  font-weight: bold;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  color: #333;
  margin-top: 12px;
  font-style: italic;
}

.subtitle strong {
  color: #000;
}

/* Contact icons */
.contact-icons {
  margin-top: 12%;
}

.contact-icons a {
  font-size: 24px;
  color: rgb(172 172 172);
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #e65f00;
}

/* Image Section (right side - larger) */
.image-wrapper {
  flex: 1.3;
  z-index: 1;
  background-color: white;
}

.side-image {
  width: auto;
  height: 100%;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: 0vh;
  }
  .contact-icons {
    margin-top: 10%;
  }
  .image-wrapper {
    order: -1;
    display: flex;
    width: 100%; /* or set a fixed width if needed */
    height: auto;
    /* margin: auto; */
  }
  
  .side-image {
    width: 100%;
    height: auto;
  }
  
  .logo1 {
    display: inline;
    position: absolute;
    top: 5%;         /* center vertically */
    left: 11%;        /* center horizontally */
    transform: translate(-50%, -50%); /* perfectly center it */
    width: 40px;      /* adjust size as needed */
    height: auto;
    z-index: 2;       /* ensures it's above the background image */
  }

  .logo-wrapper {
    display: none;
  }


  .dataTitle {
    margin-top: 0;
  }

  .content {
    position: relative; 
  }

  /* Logo moves to top center on mobile */
  .logo-wrapper {
    position: static;
    /* remove absolute */
    margin-bottom: 20px;
    align-self: center;
    /* center horizontally */
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }
  
}

@media (min-width: 768px) and (max-width: 1253px) {
  .dataTitle {
    margin-top: 75%;
  }

  .title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .contact-icons {
    margin-top: 12%;
  }
}

@media (min-width: 1253px) and (max-width: 1600px) {
  .dataTitle {
    margin-top: 75%;
  }

  .title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

 
}