* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--secondary-color);
}

body {
  background-color: #333333;
  overflow-x: hidden;
}

:root {
  --primary-color: #ffa500;
  --secondary-color: #fff;
}

h3 {
  text-align: center;
  padding-bottom: 20px;
}

p {
  text-align: justify;
  color: var(--secondary-color);
}

span,
small {
  color: var(--primary-color);
}

.section {
  padding: 80px 0;
}

/* -----------------------Header-Starat-------------------------- */

.logo {
  width: 54px;
}
.navbar {
  min-height: 80px;
}

.navbar .navbar-nav {gap: 10px}
.navbar-brand {
  color: var(--secondary-color);
}

header {
  background-color: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

nav ul li:hover ul {
  display: block;
}

.nav-link {
  color: var(--secondary-color);
}

.nav-link:hover {
  color: var(--primary-color);
}

.active {
  color: var(--primary-color);
}

.dropdown-menu{
  padding: 0;
  background-color: #000;
}

.dropdown-item{
  padding: 5px ;
  text-align: center;
  margin: 0;
  color: #fff;
}

.dropdown-item:hover{
  background-color: var(--primary-color);
  color: #fff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu > li {
  border-bottom: 1px solid #d5d5d5;
}

.navbar-expand-lg .navbar-nav .dropdown-menu > li:last-child {
  border: none;
}
/* -----------------------Header-End-------------------------- */

/* ----------Home-Start------------------ */

.hero-section {
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 16/9;
  background-image: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)),
    url(../images/background-img2.jpg);
}

.hero-cont {
  padding-top: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
}

.hero-cont h2 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}

.service-cont h3 {
  padding-bottom: 20px;
  text-align: left;
}

.animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation {
  position: relative;
  width: 400px;
  height: 400px;
  border: 2px solid #ccc;
  border-radius: 50%;
  animation: roted 18s infinite linear;
}

.ani-img {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: absolute;
  animation: roted 18s infinite linear;
  border: 2px solid #4b4bec;
}

.ani-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.img1 {
  top: -60px;
  left: 70px;
}

.img2 {
  top: 115px;
  left: -60px;
}

.img3 {
  top: 300px;
  left: 50px;
}

.img4 {
  top: 240px;
  right: -35px;
}

.img5 {
  top: 10px;
  right: -35px;
}

@keyframes roted {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.slick-next {
  right: 30px !important;
  z-index: 10;
}
.slick-next:before {
  background-color: var(--primary-color);
  color: #222 !important;
  font-size: 25px !important;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}
.slick-prev {
  left: 30px !important;
  z-index: 8;
}

.slick-prev::before {
  background-color: var(--primary-color);
  color: #000 !important;
  font-size: 25px !important;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.slider img {
  width: 100%;
  aspect-ratio: 8/9;

  object-fit: calc(100%, 400px);
}

.excellent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.excellent-card .card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
  transition: all 0.3s linear;
  cursor: pointer;
}

.excellent-card .card:hover {
  background-color: rgb(0, 0, 0, 0.5);
}

.excellent-card .card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.excellent-card .card h6 {
  padding-top: 20px;
}

/* -------------------Home-End----------------------------------- */

/* -----------------------------------------------Company-Profile-Start--------------------------------------- */
.company-profile {
  height: 50vh;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;

  background-image: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)),
    url(../images/img1.jpg);
}

.company-p-container h3 {
  padding-top: 140px;
}

.about-img img {
  width: 100%;
}

.about-content {
  padding: 150px 0;
}

.work-container .card {
  background-color: var(--primary-color);
  height: 200px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all 0.3s linear;
}

.work-container .card:hover {
  background-color: rgb(0, 0, 0, 0.5);
}

/* -----------------------Vision-Container-Start-------------------------------------- */

.vision-container h3 {
  text-align: left;
}

.vision-container hr {
  background-color: gray;
}

.vision-container p {
  padding-top: 20px;
}

/* -----------------------Mirror-Container-Start-------------------------------------- */

.mirror-container h3 {
  text-align: left;
}

.mirror-img {
  padding: 50px 0;
}
.mirror-img img {
  width: 100%;
  aspect-ratio: 8/9;
  object-fit: cover;
}

.mirror-container h4 {
  color: var(--primary-color);
}

.mirror-container p {
  padding-top: 20px;
}

/* -----------------------Stamped-Container-Start-------------------------------------- */

.stamped-img {
  padding: 50px 0;
}
.stamped-img img {
  width: 100%;
  aspect-ratio: 8/9;
  object-fit: cover;
}

.stamped-container h4 {
  padding-top: 20px;
  color: var(--primary-color);
}

/* -----------------------------Footer-Start--------------------------------------- */

footer {
  background-color: #000;
}
.footer-container {
  padding: 30px 0;
}
.footer-container hr {
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-color);
}

.footer-container .footer-link a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
}

.footer-container .footer-link a:hover {
  color: var(--primary-color);
}

.footer-link a i {
  margin-right: 15px;
  min-width: 35px;
  min-height: 35px;
  background-color: #ffa500;
  text-align: center;
  border-radius: 50%;
  padding: 12px;
  color: #fff;
}
.addrass {
  display: flex;
  align-items: center;
  gap: 20px;
}

.a-icon span i {
  min-width: 35px;
  min-height: 35px;
  background-color: #ffa500;
  text-align: center;
  border-radius: 50%;
  padding: 12px;
  color: #fff;
}

/* ----------------------------------Side-Table-container-Start-------------------------- */

.side-t-img img {
  width: 100%;
  aspect-ratio: 8/9;
  margin-top: 25px;
}
