@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Ubuntu Sans",Arial;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.header {
    width: 100%;
    height: 64px;
    background: linear-gradient(45deg, #ffffff, #dddddd);
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 1px 1px 2px #888888;
}
.header:hover {
    background-color: white;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
.logo img {
    height: 48px;
}


.nav ul {
  list-style-type: none;
  display: flex;
}
.nav ul li {
    position: relative;
    align-self: center;
}
.nav ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}
.nav ul li a:hover {
    color: #0071e3;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.dropdown-content a {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}
.dropdown-content a:hover {
    background-color: #0071e3;
    color: #fff !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}



.menu-icon {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

@media (max-width: 1024px) {
    .nav .at, .nav .link {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 64px;
        left: 0;
        background: linear-gradient(45deg, #ccc, #aaa);
    }

    .nav ul {
        flex-direction: column;
        padding: 20px 40px;
    }
    .nav ul li {
        text-align: right;
        width: 100%;
    }
.companyvideo iframe {
    width: 100%;
    height: 56vw;
    margin-top: 20px;
}
  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .menu-icon {
    display: block;
  }
	.header:hover {
	  background-color:none;
	}
	.logo .logo-default {
	  display: none; 

	}

	.logo .logo-hover {
	  display: block; 

	}

}



.nav.active {
  display: block;
}
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    clear: both;
    z-index: 9;
    margin: 64px auto 0;
}
 
.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
 
.carousel-images img {
    width: 100%;
    height: auto;
    display: block;
}
 


.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px; 

    cursor: pointer;
    z-index: 10;
    user-select: none;
    font-size: 1.5rem; 

    border-radius: 0; 

}
 
.carousel-button.prev {
    left: 10px;
}
 
.carousel-button.next {
    right: 10px;
}
 


@media screen and (max-width: 768px) {
    .carousel-button {
        padding: 8px; 

        font-size: 1.25rem; 

    }
}

.home-container {
    background-color: #ddd;
    max-width: 1920px;
    margin: 0 auto;
}
.containers {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}
.whoweare {
    display: flex;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    padding: 20px;
}
.whoweare h2, .whoweare p {
    text-align: left;
}
.section-title {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-title h2 {
    color: #333;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0px 1px 1px black;
}
.section-title p {
    font-size: 20px;
    line-height: 1.5;
    color: #444444;
    margin-top: 20px;
}
.companyvideo {
    align-content: center;
    text-align: center;
}
.companyvideo iframe {
    border-radius: 12px;
}
.business-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1400px;
}
.whyus {
    text-align: center;
    margin: 0 auto;
}
.business-item {
    width: 25%;
    padding: 20px;
    margin-bottom: 30px;
}

.business-link {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}



.item-image {
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-info p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.business-link:hover .item-info {
    opacity: 1;
}



@media screen and (max-width: 768px) {
    .business-item {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .business-item {
        width: 100%;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .item-info h3 {
        font-size: 18px;
    }

    .item-info p {
        font-size: 13px;
    }
}






.about-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 1920px;
    margin: 0 auto;
    gap: 0;
}
.ourstrength {
    background-color: #ddd;
    padding: 40px 20px;
    text-align: center;
}
.about-content {
    display: flex;
    flex-direction: column-reverse;
    background-color: #ddd;
}

.about-image {
    width: 100%;
    overflow: hidden;
}
.about-image img {
    width: 100%;
}

.about-image:hover img {
}
.about-data {
    background-color: #ddd;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.data-item {
    padding: 20px;
    width: 15%;
    background: none;
    text-align: center;
}
.data-item:hover h3 {
    color: #0071e3;
}
.data-item h3 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.data-item p {
    font-size: 1rem;
    color: #444444;
}

.contact-section {
    max-width: 1920px;
    margin: 0 auto;
}


.about-section:hover .about-data {
	display: flex;
}


@media (max-width: 1400px) {
.whoweare {
    flex-direction: column;
}
.section-title h2 {
    text-align: center;
}
}


@media (max-width: 767px) {
.section-title {
    padding: 0;
}
    .about-image img {
        padding-top: 40px;
    }
    .data-item {
        width: 33%;
        padding: 20px;
    }
    .data-item h3 {
        font-size: 20px;
    }
	.about-section:hover .about-data {
		isplay: flex;
		flex-wrap: wrap;
		align-items: stretch;
		flex-direction: row;
		gap: 0.5rem;
	}
.ourstrength {
    padding: 20px;
}
.business-list {
    padding: 20px;
}
.business-item {
    padding: 10px;
    margin-bottom: 0;
}
}

@media (max-width: 480px) {
.whoweare {
    padding: 0;
}
    .data-item h3 {
        font-size: 16px;
    }
    .data-item p {
    font-size: 12px;
    line-height: 1.5;
}
    .data-item {
        width: 40%;
        padding: 20px;
    }
}