* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to right, #001f3f, #004080);
}


   
   
    /* Google Translate Styling */
    .translate-container {
      display: flex;
      align-items: center;
    }

    .goog-te-banner-frame.skiptranslate {
      display: none !important;
    }

    body {
      top: 0px !important;
    }

    .goog-te-gadget {
      font-size: 0.9rem;
      color: white;
    }


.servicepage-banner {
      background: linear-gradient(rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.6)),
                  url('images/services-banner11.jpg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      position: relative;
      text-align: center;

    }

    .servicepage-banner h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 2px;
      animation: slideIn 1s ease-out forwards;
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }


.experience-section {
  padding: 60px 20px;
  background-color: #d3ba2f;
  
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  
}

.text-area {
  flex: 1 1 500px;
  max-width: 600px;
  
}

.text-area .intro {
  color: #008080;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.text-area .title {
  color: #031d5b;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-area .description {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.call-button {
  background-color: #008080;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 2px;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.call-button i {
  margin-right: 8px;
}

.call-button:hover {
  background-color: #74d0fa;
}

.image-area {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  height:400px;
 width:auto;
}

.top-image {
  width: 300px;
  height: auto;
  border: 5px solid #008080;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bottom-image {
  height:300px;
 width:auto;
  position: absolute;
  top: 140px;
  left: 60px;
  border: 5px solid #008080;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
  .content-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-area {
    margin-top: 30px;
    position: static;
  }

  .bottom-image {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
  }
}


