
/* SLider Banner Start */


.uvadvanceslider {
  background: linear-gradient(135deg, #d72229, #a11517);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: uvadvanceslider-fadeIn 1s ease-in;
}

/* Layout */
.uvadvanceslider-content {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.uvadvanceslider-text-content {
  flex: 1;
  animation: uvadvanceslider-slideInLeft 1s ease-out;
}

.uvadvanceslider-label {
  display: inline-block;
  background: #ffffff;
  color: #d72229;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.uvadvanceslider-title {
  font-size: 50px;
  color: #ffff;
  margin: 5px 0;
  line-height: 1.2;
}

.uvadvanceslider-typewriter {
  display: inline-block;
  overflow: hidden;
  color: #ffff;
  font-weight: bold;
  font-size: inherit;
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
}

.uvadvanceslider-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.uvadvanceslider-cta-button {
  background-color: transparent;
  border: 2px solid white;
  color: #ffffff;  
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.uvadvanceslider-cta-button::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: black;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 30px;
}

.uvadvanceslider-cta-button:hover::before {
  transform: scaleX(1);
}

.uvadvanceslider-cta-button:hover {
  color: white;
  border-color: black;
}

.uvadvanceslider-cta-button span {
  position: relative;
  z-index: 1;
}

.uvadvanceslider-image-content {
  flex: 1;
  animation: uvadvanceslider-slideInRight 1s ease-out;
  display: flex;
  justify-content: center;
}

.uvadvanceslider-image-content img {
  max-width: 100%;
  height: auto;
  animation: uvadvanceslider-float 5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .uvadvanceslider-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .uvadvanceslider-text-content,
  .uvadvanceslider-image-content {
    flex: unset;
  }

  .uvadvanceslider-title {
    font-size: 28px;
  }

  .uvadvanceslider-description {
    font-size: 16px;
  }
}

/* Keyframe Animations */
@keyframes uvadvanceslider-slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes uvadvanceslider-slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes uvadvanceslider-fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes uvadvanceslider-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* SLider Banner end */



/* Our Exprtise Start */

.uvcorevaa {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  max-width: 1500px;
  margin: 0 auto;
  margin-top: 50px;
}

.uvcorevaa-header {
  margin-bottom: 30px;
}

.uvcorevaa-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.uvcorevaa-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.uvcorevaa-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.uvcorevaa-card {
  background: transparent;
  border: 2px solid #d72229;
  border-radius: 10px;
  width: 260px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uvcorevaa-card:hover {
  background-color: #d72229;
  border-color: #d72229;
}

.uvcorevaa-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.uvcorevaa-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #d72229;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.uvcorevaa-card-description {
  font-size: 15px;
  margin-bottom: 15px;
  opacity: 0.85;
  color: #4f4f4f;
}

.uvcorevaa-card-button {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  border: 2px solid #fff;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 25px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.uvcorevaa-card-button:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.uvcorevaa-card:hover .uvcorevaa-card-title,
.uvcorevaa-card:hover .uvcorevaa-card-description {
  color: #fff;
}


@media (max-width: 768px) {
  .uvcorevaa-cards {
    flex-direction: column;
    align-items: center;
  }

  .uvcorevaa-card {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Our Exprtise End */













/* About Us Section Start */
.about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f7f7f7;
    color: #333;
}

.about-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    width: 100%;
}

.about-us-image {
    flex: 1;
    max-width: 600px;
    /* Image size control */
}

.about-us-img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adding shadow for depth */
}

.about-us-text {
    flex: 1;
    padding-left: 30px;
}

.about-us-label {
    font-size: 18px;
    font-weight: bold;
    color: #d72229;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    opacity: 0.8;
}

.about-us-title {
    font-size: 36px;
    font-weight: bold;
    color: #d72229;
    margin-bottom: 20px;
    position: relative;
}

.about-us-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background-color: #d72229;
}

.about-us-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.about-us-button {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #d72229;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-us-button:hover {
    background-color: #fff;
    color: #d72229;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
        text-align: center;
    }

    .about-us-text {
        padding-left: 0;
        margin-top: 20px;
    }

    .about-us-title {
        font-size: 28px;
    }

    .about-us-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}


/* About Us Section End */