*{
  padding: 0;margin: 0;box-sizing: border-box;
}
body {
  margin: 0;

  font-family: Arial, sans-serif;
  background-color:#f2f2f2 ;
}

#header{
  background-color: #333;
  width: 100%;
 
}
html{
  scroll-behavior: smooth;
}

.container {
  padding: 10px 10%;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
nav h2 span {
  color: #e51d5c;
  font-size: 30px;
}
nav ul li {
  display: inline-block;
  list-style-type: none;
  margin: 2px 10px;
}
.hamburger-btn, .menu-btn, .menu-close-btn{
    display: none;
    position: absolute;
    top: 20px;
    right: 25px;    
    z-index: 100;
    color: white;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}
nav ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.5s;
}
nav ul li a:hover::after {
  width: 100%;
}
.header-text {
  margin-top: 20%;
  font-size: 25px;
}
.header-text h1 {
  margin-top: 20px;
  font-size: 40px;
} 



/* Small Screen */
@media only screen and (min-width: 768px) {
  .menu-close-btn, .menu-btn{
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column;
    background: rgb(53, 52, 52);
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 30px;
    transition: right 0.5s;
    z-index: 100;
  }
  .menu-btn{
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 100;
  }

}

@media only screen and (max-width: 600px) {
nav .fas{
    display: block;
    font-size: 25px;
    
    
  }
  
}
.slide-bar{
  background: rgb(53, 52, 52);
    position: fixed;
    top:0;
    right:0;
    transition: right 0.5s;
    z-index: 100;
    
  }







.txt-bold {
  font-weight: bold;
}
.txt-22 {
  font-size: 22px;
}
.txt-25 {
  font-size: 25px;
}
.txt-20 {
  font-size: 20px;
}
.txt-18 {
  font-size: 18px;
}

header {
  background-color: #333;
  position: sticky;
  top:0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  
}

.navbar .logo a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.navbar .logo a img {
  width: 150px;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    right: 0;
    /* background-color: #333; */
    background-color: rgba(51, 51, 51, 0.3);
    padding-left: 2rem;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }
}

/* ************************************************************ */

.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
 
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
 
}

.carousel-item {
  min-width: 100%;
  z-index: 10;
}

.carousel-item img {
  border: 1px solid #333;
  width: 100%;
 
  aspect-ratio: 5/2; /*   width/height    */
  /*   4/2 in this case 4 is width and 2 is hieght    */
  /* object-fit:cover; */
  display: inline-block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  /* z-index: 100; */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* *************************************************
 */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 10px;

  /* width: calc(33.333% - 20px); 3 cards per row with margin */
  width: calc(30% - 20px); /* 3 cards per row with margin */

  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 5px;
  height: auto;
  overflow: hidden; /* new added */
  /* padding: 2px;
    border-radius: 8px;*/
  aspect-ratio: 3/2;
}
.card img:hover {
  transform: scale(1.1);
  transition: ease-in 0.3s;
}

.card-content {
  padding: 15px;
}

.card-content h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card-content p {
  margin: 0;
  color: #666;
}

.responsive {
  width: 100%;
  height: auto;
}
/* section{
  background-color: #F8F9FA;
} */
/* .card:hover {
    transform: scale(1.03);
} */

@media (max-width: 768px) {
  .card {
    width: calc(50% - 20px); /* 2 cards per row on tablets */
  }
  /* footer */
  .company-into,
  footer {
    display: flex;
    flex-direction: column;
  }
  .company-into img {
    max-width: 400px;
  }
  .footer-col{
    width: 100% !important;
}
  /* footer */
}

@media (max-width: 480px) {
  .card {
    width: 100%; /* 1 card per row on mobile */
  }
  .social-icons {
    display: flex;
    flex-wrap: wrap;
  }
  .social-icons-item {
    margin-bottom: 10px;
  }

}

@media (max-width: 370px) {
  .social-icons {
    row-gap: 10px;
  }
}

.main-header {
  padding: 10px 30px;
  color: rgb(0, 166, 255);
  font-size: 40px;
  font-weight: bolder;
}
.main-header p {
  font-size: 30%;
  margin-top: 10px;
  margin-bottom: 0px;
}

.company-into {
  display: flex;
  padding: 0.5rem 4rem;
  /* grid-template-columns: 3fr 1fr; */
}

.col {
  padding: 10px;
  /* border: 1px solid red;s */
}

.d-flex {
  display: flex;
}
.col-gap-2 {
  column-gap: 20px;
}

#title-text {
  font-size: 7vmin;
  /* background: -webkit-linear-gradient(#99d3ee, #c3dde9, #8aeeb9); */
  background: -webkit-linear-gradient(#FF3618,#FF7627);
  background-clip: text;
  padding: 0px 20px;
  -webkit-text-fill-color: transparent;
}


footer {
  background-color: #666;
  padding: 1rem 4rem;
  color: white;
}
.footer-col{
    width: 33.33%;
}

.social-icons-item {
  padding: 8px 10px;
  background-color: #3e81a1;
  border-radius: 50%;
  margin: 0px 10px;
}
/* .social-icons-item:hover {
} */
.social-icons i {
  color: white;
  font-size: large;
}

.footer-col {
  text-wrap: wrap;
  
}

.links-col{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.imp-links-item a{
color: white;
text-decoration: none;
padding: 10px 0px;
}
.nav-links li{
  position: relative;
}
.nav-links li::after{
content: "";
background: #FF551C;
width: 0%;
height: 3px;
position: absolute;
left:0;
bottom:-8px;
margin-bottom: 3px;
transition: width 0.5s;
}
.nav-links li:hover::after{
  width: 100%;
}
.title-text{
  position: relative;
}
#title-text a::after{
content: "";  
background: #FF551C;
height: 3px;
width: 100%;
position: absolute;
bottom:0;
left: 0;
}
/* ------------------------------Contcat Page------------------------------ */
#contact-page{
  display: flex;
  padding:0 2vw;
}
#contact-page-banner{
height: 20vh;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 28px;
background-color: #FF7627;
}
.col-1,.col-2{
  width: 50%;
  
  padding: 1rem;
}
@media (max-width: 768px) {
  .col-1,.col-2{
    width: 100%;
    padding:10px 5px;
    
  }

 #contact-page{
  display: block;
  /* border: 1px solid; */
  padding:0 0;

 }

}

.col-heading{
  /* text-align: center; */
  font-size: 22px;
  color: black;
}
.btn-ani{  
  padding: 8px 16px;
  background-color: white;
  border:1px solid #FF7627;
  border-radius: 4px;
}
.btn-ani:hover{
  background-color: #FF7627;
}
.input-field{
  width: 100%;
  padding: 3px;
  /* background-color: #3e81a1; */
  
}
.input-field input[type=email],input[type=text],input[type=tel],textarea{
  width: calc(100% - 13px);
  background-color:transparent;
  outline: none;
  border: 1px solid #FF551C;
  border-radius: 3px;
  padding: 4px;
}
fieldset{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-color: #FF551C;
  padding: 2rem 20px;
  border-radius: 10px;
}

fieldset legend{
  color: #FF551C;
  font-weight: 600;
   
}
.wraper-div{
  width: 100%;
}


.iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: none;
}

