/********** Template CSS **********/
:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.top-bar {
    height: 75px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}




.dropdown-submenu:hover .sub-menu {
  display: block;
  top: 0;
      left: 100%;
      margin-left: 0.1rem;
      margin-right: 0.1rem;

}    
.dropdown-submenu .sub-menu {
  display: none;
  top: 0;
      left: 100%;
      margin-left: 0.1rem;
      margin-right: 0.1rem;

}  
.dropdown-toggle::after {
      margin-left: 0.4rem;
    }

    @media (max-width: 768px) {
  .dropdown-submenu:hover .sub-menu {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-submenu .sub-menu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-toggle::after {
    margin-left: 0.3rem;
  }
}


 .dropdown-menu {
            display: none;
            top: 100%;
            left: 0;
          }
          
        .dropdown-menu:hover{
        color: #f9f9f9;
        display: block;
        }


.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}





/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}
.container1{
   position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;

}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

/*** About Us ***/


.about-section {
  padding: 40px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background-color: #fff;
}

.about-image {
  flex: 1 1 40%;
  position: relative;
  border: 4px solid var(--light);
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--secondary);
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
}

.experience h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.experience span {
  font-size: 0.9rem;
  line-height: 1.2;
}


/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .experience {
    bottom: 10px;
    left: 10px;
    padding: 10px 15px;
  }

  .experience h2 {
    font-size: 2rem;
  }

  .experience span {
    font-size: 0.8rem;
  }
}

/*** vision Start ***/

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.vision-section {
  background-color: #fff;
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.vision-image {
  flex: 1 1 40%;
  text-align: center;
}

.vision-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vision-text {
  flex: 1 1 55%;
}

.vision-text h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.vision-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-content {
    flex-direction: column;
  }

  .vision-image,
  .vision-text {
    flex: 1 1 100%;
  }

  .vision-text h2 {
    font-size: 1.5rem;
  }
}


/*** Mision Start ***/

.mission-section{
  background-color: var(--primary);
}

.container1 {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;

}

.mission-section .sub-heading {
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-size: 20px;
  position: relative;
  margin-bottom: 10px;
}

.mission-section .sub-heading::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--secondary);
  margin-right: 10px;
  vertical-align: middle;
}

.mission-section h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  flex: 1 1 calc(33.333% - 30px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border-bottom: 3px solid var(--secondary);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card .icon {
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
}

.card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.card p {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }

  .mission-section h2 {
    font-size: 1.6rem;
  }
}


/*** Service ***/
:root {
  --primary: #1E60AA;
  --secondary: #FF4917;
  --light: #EDF1FC;
  --dark: #17224D;
}

.industry-section {
  padding: 60px 20px;
  background-color: var(--light);
}

.industry-section h6 {
  color: var(--secondary);
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.industry-section h1 {
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.industry-card {
  background-color: #fff;
  border-bottom: 4px solid var(--secondary);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 350px;
  flex: 1 1 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h1 {
  font-size: 25px;
  color: var(--primary);
  margin: 15px 0 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--dark);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industry-section h1 {
    font-size: 28px;
  }

  .industry-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .industry-section h1 {
    font-size: 24px;
  }

  .industry-card img {
    height: 160px;
  }
}




/*** Booking ***/
:root {
  --primary: #1E60AA;
  --secondary: #FF4917;
  --light: #EDF1FC;
  --dark: #17224D;
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background-color: var(--light);
}

.card {
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 12px;
  width: 280px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(30, 96, 170, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-title {
  background-color: var(--light);
  padding: 15px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary);
  border-top: 1px solid var(--primary);
}

@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}
/*** Logos ***/

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logos {
  overflow: hidden;
  background: var(--primary); /* or use any background */
  white-space: nowrap;
  position: relative;
  margin: 0 40px;
  height: 150px;
}

.logos-slide {
  display: inline-block;
  white-space: nowrap;
  animation: slide 35s linear infinite;
}


.logos-slide img {
  height: 90px;
  margin: 0 40px;
}
.logos p{
			color: white;
			font-size: 28px;
			font-weight: 700;
		}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 8px 8px 0px 0px;
	padding: 8px 12px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
	width:100%;
}


.footer .copyright a {
    color: var(--light);
}


		* {
   			 margin: 0px;
    			 padding: 0px;
		}
		*, ::after, ::before {
   			 box-sizing: border-box;
	}

		h6{
			padding: 60px 0 0 20px;
		}
		
		.main_container{
			width: 100%;
			display: flex;
			padding: 60px 0;
		}
	
		.sub_container{
			width: 35%;
			color: black;
		}
		
		.pdfbtn{
			border: 1px solid #ed5858;
			margin: 40px 20px;;
		}
        
		.pdf{
			background-color: #f3e7e7;
			padding: 17px;
			margin: 20px;
			
			color: midnightblue;
			font-size: 13px;
			
		}
		.pdfbtn span{
			font-weight: 600;
			margin-left: 5px;
			padding: 5px;
			color: white;
			background-color: #1E60AA;
		}

		.pdfbtn h5{
			margin: 35px 0px 0px 39px;
			font-size: 20px;
			font-weight: 500;
			color: midnightblue;
		}
		
		.btn-one{
			font-size: 14px;
			z-index: 1;
			border: none;
			overflow: hidden;
			height: 50px;
			width: 150px;
			color: white;
			position: relative;
			background-color: #1E60AA;
		}

		.btn-one::before{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			background-color: #02185a;
    	color: #FFF;
			width: 100%;
			height: 100%;
			transform: translateX(-100%);
			transition: all 0.3s linear;
		}
		
		.btn-one:hover:before{
			transform: translateX(0);
			z-index: -1;
		}

		.help_box{
			border: 1px solid #ed5858;	
			margin: 40px 20px;
			padding: 30px;
		}

		.help_box p{
			padding-bottom: 15px;
		}
		.help_box h5{
			color: midnightblue;
    			padding: 20px 0;
		}

		.sub_container_1{
			width: 65%;
			padding-top: 40px;
		}

		.overview{
			color: midnightblue;
			font-size: 24px;
			padding-bottom: 20px;
		}
		.min-box{
			margin: 60px 20px;
		}	
        .min-box a{
			text-decoration: none;
		}	


    .about, .product{
			position: relative;
			display:block;
		}
		.sub_about{
			top: 37px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
                border-bottom: 2px solid #1E60AA;
		}
		.sub_about li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			
		}
		.about:hover .sub_about{
			background-color: white;
    			display: block;
			cursor: pointer;
		}
		.sub_about li:hover{
		background-color: midnightblue;
			color: white;
		}
		.sub_about li a:hover{
			color: white;
		}
        .sub_product{
			top: 55px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
                border-bottom: 2px solid #1E60AA;
		}

		.sub_product li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			
		}
		.product:hover .sub_product{
			background-color: white;
    			display: block;
			cursor: pointer;
		}
		.sub_product li:hover{
		background-color: midnightblue;
		color: white;
		}
        .manual_pro {
			top: -8px;
			left: 201px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
                border-bottom: 2px solid #1E60AA;
		}
		.manual_pro li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			
		}
		.manual:hover .manual_pro{
			background-color: white;
			color: black;
    		display: inline-block;
			cursor: pointer;
		}
		.manual_pro li:hover{
		background-color: midnightblue;
			color: white;
		}
		.manual_pro li a:hover{
		
			color: white;
		}
        .navigation{
            font-family:'poppins', sans-serif;
            font-size: 16px;
            color: #212529;
            text-decoration: none;
        }
        .forged a:hover{
			background-color: midnightblue;
			color: white;
        }
        .automated_pro {
			top: 33px;
			left: 201px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
		}
		.automated_pro li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			border-bottom: 2px solid #1E60AA;
		}
		.automated:hover .automated_pro{
			background-color: white;
			color: black;
    			display: block;
			cursor: pointer;
		}
		.automated_pro li:hover{
		background-color: midnightblue;
			color: white;
		}
		.automated_pro li a:hover{
		
			color: white;
		}
		.pharma_pro {
			top: 75px;
			left: 201px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
		}
		.pharma_pro li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			border-bottom: 2px solid #1E60AA;
		}
		.pharma:hover .pharma_pro{
			background-color: white;
			color: black;
    			display: block;
			cursor: pointer;
		}
		.pharma_pro li:hover{
		background-color: midnightblue;
		color: white;
		}
		
        .resource{
			position: relative;
			display: block;
		}
		.resource_pro{
			    top: 35px;
    			display: none;
    			position: absolute;
    			z-index: 1;
    			padding-left: 0px;	
                border-bottom: 2px solid #1E60AA;
		}
		.resource_pro li{
            list-style: none;
			width: 200px;
			padding-left: 0;
			padding: 10px 15px;
			transition: .5s;
			
		}
		.resource:hover .resource_pro{
			background-color: white;
    			display: block;
			cursor: pointer;
		}
		.resource_pro li:hover{
		background-color: midnightblue;
			color: white;
		}
		.resource_pro li a:hover{
		color: white;
		}
        .head{
			background-image: url('images/banner_image.jpg');
			background-repeat: no-repeat;
            background-position: center;
			color: white;
		}
		.head h1{
	text-align: center;
}
.head p{
	text-align: center;
}

		.background{
			background-color: #120808ba;	 
  			padding: 90px;	
			font-weight: bold;
		}

		* {
   			 margin: 0px;
    			 padding: 0px;
		}
		*, ::after, ::before {
   			 box-sizing: border-box;
	}

		h6{
			padding: 60px 0 0 20px;
		}
		
		.main_container{
			width: 100%;
			display: flex;
			padding: 60px 0;
		}
	
		.sub_container{
			width: 35%;
			color: black;
		}
		
		.pdfbtn{
			border: 1px solid #ed5858;
			margin: 40px 20px;;
		}
        
		.pdf{
			background-color: #f3e7e7;
			padding: 17px;
			margin: 20px;
			
			color: midnightblue;
			font-size: 13px;
			
		}
		.pdfbtn span{
			font-weight: 600;
			margin-left: 5px;
			padding: 5px;
			color: white;
			background-color: #1E60AA;
		}

		.pdfbtn h5{
			margin: 35px 0px 0px 39px;
			font-size: 20px;
			font-weight: 500;
			color: midnightblue;
		}
		
		.btn-one{
			font-size: 14px;
			z-index: 1;
			border: none;
			overflow: hidden;
			height: 50px;
			width: 150px;
			color: white;
			position: relative;
			background-color: #1E60AA;
		}

		.btn-one::before{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			background-color: #02185a;
    			color: #FFF;
			width: 100%;
			height: 100%;
			transform: translateX(-100%);
			transition: all 0.3s linear;
		}
		
		.btn-one:hover:before{
			transform: translateX(0);
			z-index: -1;
		}

		.help_box{
			border: 1px solid #ed5858;	
			margin: 40px 20px;
			padding: 30px;
		}

		.help_box p{
			padding-bottom: 15px;
		}
		.help_box h5{
			color: midnightblue;
    			padding: 20px 0;
		}

		.sub_container_1{
			width: 65%;
			padding-top: 40px;
		}

		.overview{
			color: midnightblue;
			font-size: 24px;
			padding-bottom: 20px;
		}
		.min-box{
			margin: 60px 20px;
		}	
        .min-box a{
			text-decoration: none;
		}	




/*####################### for responsive layout ####################*/

	/*####################### for mobile responsive ####################*/

		@media only screen and (max-width: 650px) {
 		    .socialicon, .time {
        		display: none !important;
    		}
		
		.phone, .mail, .time{
			padding: 0px 20px;
			border-right: none;
		}
		.mobnav{
			display: flex;
			flex-direction: column;
		}
		
		
		.bigbox{
			display: flex;
			flex-direction: column;
		}
		
		.container{
			width: 100%;
		}

		.foot{
			display: flex;
			flex-direction: column;
		}
		
		.foot_logo{
			width: 100%;
		}

		.contactbox{
			display: flex;
			flex-direction: column;
			width: 100%;
			padding-left: 10px;
		}

		.call{
			width: 100%;
			border: none;
		}		

		.mail_2{
			width: 100%;
			border: none;
			padding: 10px 0px;
		}
		.add{
			width: 100%;
			padding: 0px;
		}

		.copyright{
			display: flex;
			flex-direction: column;
		}

		.copy_text {
    			padding: 20px 0px 0px 0px;
		}
		.form {
    			width: 100%;
		}
		
		.main_container {
    			width: 100%;
    			display: flex;
    			padding: 60px 0;
    			flex-direction: column;
		}

		.sub_container {
    			width: 100%;
    			color: black;
		}

		.sub_container_1 {
    			width: 100%;
    			padding: 40px;
		}


}


/*####################### for tablets and laptop responsive ####################*/
/* Large devices (laptops/desktops, 992px and up) */

	@media only screen and (min-width: 650px) and (max-width:900px){
 		.phone, .mail, .time {
    				padding: 0px 13px;
		}
		.socialicon{
		    padding: 0px;
    		    display: flex;
		}
	
		.pdf {
		margin: 0;
		}
		.min-box {
    			margin: 60px 3px;
		}
	}

/*####################### for large size desktop responsive ####################*/

	@media only screen and (min-width: 1200px) {
		.socialicon{
		    padding-left: 470px;
		}
		.copy_text {
    		padding-left: 350px;
		}
		
	}

/*----------testpressures-----------------*/
table {
    			border-collapse: collapse;
		}
    		td, th {
    			padding: 10px;
    			border: 1px solid;
    			color: #000000;
		}		
		b, strong {
    			font-weight: bolder;
		}
		.tab_container{
			width: 100%;
			padding: 20px;
			overflow: scroll;
		}

/*####################### for responsive layout ####################*/

	/*####################### for mobile responsive ####################*/

		@media only screen and (max-width: 650px) {
 		    .socialicon, .time {
        		display: none !important;
    		}
		
		.phone, .mail, .time{
			padding: 0px 20px;
			border-right: none;
		}
		.mobnav{
			display: flex;
			flex-direction: column;
		}
		
		
		.bigbox{
			display: flex;
			flex-direction: column;
		}
		
		.container{
			width: 100%;
		}

		.foot{
			display: flex;
			flex-direction: column;
		}
		
		.foot_logo{
			width: 100%;
		}

		.contactbox{
			display: flex;
			flex-direction: column;
			width: 100%;
			padding-left: 10px;
		}

		.call{
			width: 100%;
			border: none;
		}		

		.mail_2{
			width: 100%;
			border: none;
			padding: 10px 0px;
		}
		.add{
			width: 100%;
			padding: 0px;
		}

		.copyright{
			display: flex;
			flex-direction: column;
		}

		.copy_text {
    			padding: 20px 0px 0px 0px;
		}
		.form {
    			width: 100%;
		}
		
		


}


/*####################### for tablets and laptop responsive ####################*/
/* Large devices (laptops/desktops, 992px and up) */

	@media only screen and (min-width: 650px) and (max-width:900px){
 		.phone, .mail, .time {
    				padding: 0px 13px;
		}
		.socialicon{
		    padding: 0px;
    		    display: flex;
		}
		
		.pdf {
		margin: 0;
		}
		.min-box {
    			margin: 60px 3px;
		}
		
	}

/*####################### for large size desktop responsive ####################*/

	@media only screen and (min-width: 1200px) {
		.socialicon{
		    padding-left: 470px;
		}
		.copy_text {
    		padding-left: 350px;
		}
		



	}

/*---------career----------------*/
.head{
			background-image: url("banner_appl_296.jpg");
			background-repeat: no-repeat;
			color: white;
		}
.head h1{
	text-align: center;
}
.head p{
	text-align: center;
}

		.background{
			background-color: #120808ba;	 
  			padding: 90px;	
			font-weight: bold;
		}

		* {
   			 margin: 0px;
    			 padding: 0px;
		}
		*, ::after, ::before {
   			 box-sizing: border-box;
	}

		.form_container, .box-container{
			
			padding: 20px;
			border: 1px solid #f3dfdf;
			margin: 20px;	
		}
		.box_0{
			display: flex;
		}
		.box-1, .box-2, .box-3{
			border: 1px solid #f3dfdf;
			width: 45%;
			padding: 30px;
			margin: 20px;
		}
		
		.redbox{
			background-color: #1E60AA;
			color: white;
			font-weight: 500;
			font-size: 12px;
			padding: 7px 10px;
		}
		.topic h5{
			
			color: midnightblue;
		}
		.fa-check{
		color: #1E60AA;
		}
		.applybtn{
			color: midnightblue;
			font-size: 12px;
			font-weight: 700;
			border-bottom: 2px solid #f3dfdf;	
		}
		.applybtn:hover {
			border-bottom: none;
    			color: #1E60AA;
    			transition: 0.6s;
    			margin-left: 20px;
		}
		.applybtn:hover .fa-arrow-right{
			display: none;
		}
		
		.mb-3{
			
    			margin: 0 20px 0 0;
			
		}
		.f_row, .s_row{
			display: flex;
			width: 100%;
		}
		.form-select, .form-control{
			height: 50px;
		}
		.s_row{
			padding: 30px 0px;
		}
		.s_row .mb-3 {
   			 padding: 0;
			}

		.btn-one{
			font-size: 14px;
    			font-weight: 500;
            		margin: 30px 0px;
			z-index: 1;
			border: none;
			overflow: hidden;
			height: 50px;
			width: 150px;
			color: white;
			position: relative;
			background-color: #1E60AA;
		}

		.btn-one::before{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			background-color: #02185a;
    			color: #FFF;
			width: 100%;
			height: 100%;
			transform: translateX(-100%);
			transition: all 0.3s linear;
		}
		
		.btn-one:hover:before{
			transform: translateX(0);
			z-index: -1;
		}



/*####################### for responsive layout ####################*/

	/*####################### for mobile responsive ####################*/

		@media only screen and (max-width: 650px) {
 		    .socialicon, .time {
        		display: none !important;
    		}
		
		.phone, .mail, .time{
			padding: 0px 20px;
			border-right: none;
		}
		.mobnav{
			display: flex;
			flex-direction: column;
		}
		
		
		.bigbox{
			display: flex;
			flex-direction: column;
		}
		
		.container{
			width: 100%;
		}

		.foot{
			display: flex;
			flex-direction: column;
		}
		
		.foot_logo{
			width: 100%;
		}

		.contactbox{
			display: flex;
			flex-direction: column;
			width: 100%;
			padding-left: 10px;
		}

		.call{
			width: 100%;
			border: none;
		}		

		.mail_2{
			width: 100%;
			border: none;
			padding: 10px 0px;
		}
		.add{
			width: 100%;
			padding: 0px;
		}

		.copyright{
			display: flex;
			flex-direction: column;
		}

		.copy_text {
    			padding: 20px 0px 0px 0px;
		}
		.form {
    			width: 100%;
		}
		
		.box-1, .box-2, .box-3 {
    			border: 1px solid #f3dfdf;
    			width: 100%;
    			padding: 30px;
    			margin: 20px 0;
		}

		.box_0 {
    			display: flex;
    			flex-direction: column;
		}

		.f_row, .s_row {
    			display: flex;
    			width: 100%;
    			flex-direction: column;
		}
		.mb-3 {
    			width: 100%;
			}
	
		



}


/*####################### for tablets and laptop responsive ####################*/
/* Large devices (laptops/desktops, 992px and up) */

	@media only screen and (min-width: 650px) and (max-width:900px){
 		.phone, .mail, .time {
    				padding: 0px 13px;
		}
		.socialicon{
		    padding: 0px;
    		    display: flex;
		}
	
		
		
	}

/*####################### for large size desktop responsive ####################*/

	@media only screen and (min-width: 1200px) {
		.socialicon{
		    padding-left: 470px;
		}
		.copy_text {
    		padding-left: 350px;
		}
		
	}

	/* General Styling */
.shop {
  padding-bottom: 70px;
}

.img-product img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}

.product-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.product-info p {
  font-size: 16px;
  line-height: 1.6;
}

.product-info .btn {
  margin-top: 15px;
}

/* Tabs */
.nav-tabs h5 {
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 10px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table td {
  padding: 10px;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
}

table td:first-child {
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
  .box-single-product {
    flex-direction: column;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-info p,
  .nav-tabs h5 {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .product-info h3 {
    font-size: 18px;
  }

  .product-info p {
    font-size: 14px;
  }

  .nav-tabs h5 {
    font-size: 16px;
  }

  table td {
    display: block;
    width: 100%;
  }

  table tr {
    display: block;
    margin-bottom: 15px;
  }

  table td:first-child {
    font-weight: bold;
  }

  .btn {
    width: 29%;
    text-align: center;
  }
}



