@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
    
}

:root {
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #1d69a3;
    --padding-inline-section: 20px;

}
body{
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);

}
h1{
    font-size: 3rem;

}
h2{
    font-size: 6vmin;

}
h3{
    font-size: 1.5rem;
}
p{
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;

}
.p1{
    text-align: left;
}
a{
    text-decoration: none;
    display: inline-block;
}
ul{
    list-style: none;
}
.small-bold-text{
    font-size: 1rem;
    font-weight: 700;
}

.container{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    overflow:hidden;
}
.flex{
    display: flex;
    align-items: center;
}
.hover-link{
    color: var(--primary-text-color);
    transition: 0.1s ease-out;
    border-bottom: 3px solid white;
    
}
.hover-link:hover{
    color: var(--accent-color);
    /*text-decoration: underline;*/
    border-bottom: 3px solid #4fb3d4;
    transform: scale(1.2x);
    color: #4fb3d4;
    border-radius: 5px;
    
    
}
/*buttons*/

.primary-button{
   margin-top: 10px;
    background-color: var(--accent-color);
    border-radius: 6px;
    font-weight: 700;
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.2s ease-out;
}
.primary-button:hover{
    background-color: var(--accent-color-dark);
    

}
.secondary-button{
    border:0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-text-color) !important;
    padding: 6px 12px;
    transition: 0.2s ease-out;
    margin-bottom: 20px;

}
.secondary-button:hover{
    border-color: var(--accent-color);
    color: var(--accent-color-dark);
    background-color: var(--accent-color);
    

}
.productbtn{
    margin-left: 500px;
}






/* top banner */



.top-banner{
    background-color: #4fb3d4;

}

.banner-text{
    color: white;
    padding: 15px 30px;
    text-align: center;
}


/* nav */

.main-nav{
    margin-top: 20px;
    justify-content: space-between;
    position: relative;
}
.main-nav{
    overflow: visible;
    position: relative;
}

.nav-links{
    flex-basis: 730px;
}

.company-logo img{
    width: 200px;
    
}


.nav-links ul{
    justify-content: end;
    gap: 60px;
}





/*product dropdown*/
.nav-links ul ul{
    position: absolute;
    display: none;
    padding: 5px; 
    
}
.nav-links ul ul li{
    float: none;
    width: 150px;
    border-left: 5px solid white;
    box-shadow: rgba(0,0,0,0.2) 0 2px 6px 0;
    height: 50px;
    padding: 12px;
    transition: 1s all;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    
    

}
.nav-links ul ul li a{
    color: black;
}
.nav-links ul ul li:hover{
    border-left: 5px solid #4fb3d4;
    
    
    
}
.nav-links ul li:hover > ul{
    display: block;
    
}



/*hamburger*/
.nav-toggle{
    display: none;
}


/*PRODUCT*/













/*header*/

header{
    padding: 50px var(--padding-inline-section) 0;
    background: #2295ed23;
}
.header-section{
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    
    
}
.header-right img{
    width: 100%;
    
    
    
}
.header-left{
    max-width: 45vw;
}
.home1{
    
    align-items: center;   
    padding: 50px;
    justify-content: flex-start;
    position: relative;
    width: 100%;    
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    
}
.imglogo img{
    position:absolute;
    width: 700px;
    left: -3%;
    top: -5%;
    
    opacity: .4;
}
.imglogo2 img{
    position:absolute;
    width: 200px;
    left: 80%;
    top: 75%;
    
    opacity: .3;
}
.home1 p{
    color: black;

}
.header-left h1{
    margin-top: 20px; 
}
.home1 p::first-letter{
    font-size: 23px;
}
/*logistics*/


.header-section1{
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
    
}
/*feature sectioN*/


.features-section {
    padding: 80px var(--padding-inline-section) 0;
}
.features-header{
    text-align: center;
    
}
.line{
    width: 150px;
    height: 4px;
    background: #4fb3d4;
    margin: 10px auto;
    border-radius: 5px;
}
.lineh{
    width: 350px;
    height: 4px;
    background: #4fb3d4;
    margin: 8px;
    margin-left: 15%;
    border-radius: 5px;
}
.features-heading-text {
    margin-bottom: 20px;

}
.features-area{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.features-card{
    
     flex-direction: column;
     gap: 50px;
     max-width: 30%;
     gap: 20px;
     text-align: center;
     justify-self: auto;
}
.features-card img{
    width: 40vh;
    margin: 0 10px;
    
}

/*big feature*/

.big-container{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
}   
.big-feature-section {
    padding: 80px var(--padding-inline-section) 0;
}
.big-feature-header{
    text-align: center;
    
}
.big-feature-heading-text {
    margin-bottom: 20px;

}
.big-feature-area{
    flex-wrap: wrap;
    justify-content: space-between;
}
.big-feature-card{
     flex-direction: column;
     gap: 20px;
     max-width: 30%;
     text-align: center;
     margin-top: 50px;
    

}
/*example*/
.example-container{
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
}   
.example-section {

    padding: 80px var(--padding-inline-section) 0;
}
.example-header{
    text-align: center;
    flex-direction: column;
    margin: 50px;
  

}
.home-ex{
    background: #2295ed23;
}

.example-card{

    width: 40%;
    position: relative;
    min-height: 180px;
    color: white;
    justify-content: center;
    
    
}   
.example-area{
    justify-content: space-between;  
}
.card-text{
    justify-content: center;
    text-align: center;
    color: white;
}
.card-text p{
    color: white;
}
.n1{
    color: black;
}
.n1 p{
    color: black;
}
.example-card:nth-child(1){
    background-color: #2294ed;
}
.example-card:nth-child(2){
    background-color: black;
}
.example-card:nth-child(3){
    background-color: rgb(207, 229, 241);
}
.example-card:nth-child(4){
    background-color: #3e4ab8;
}

/*product*/
#btn{
    background-color: var(--accent-color);
    color: white;
    padding: 10px 15px;
    margin: 15px;
    border-radius: 5px;
    border-color: #2294ed;
}
#btn:hover{
    background-color: var(--accent-color-dark);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}


/*product sample*/
.container1{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}
.box1{
    width:30%;
    float: left;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 7px 7px grey;
    margin: 40px 20px;


}
.box1 img{
    width: 100%;
    height: 200px;
    border-radius: 5px 5px 0 0;

}
.box1 h3{
    margin-left: 15px;
}
.box1 p{
    margin-left: 10px;
    margin-right: 10px;
}
.box2 img{
    width: 80%;
    height: 350px;
}






    
/*about us*/
*{
    padding: 0;
    margin: 0;
}
.about{
    background: #2295ed23;

}
.about-1{
    margin: 30px;
    padding: 5px;
}

.about-1 h1{
    text-align: center;
    color: black;
    font-weight: 300;
}
.about-1 p{
    text-align:center;
    padding: 3px;
    color: black;
    font-size: 16.5px;
}

.about-2{
    background: #2295ed23;
}
.about2 p{
    text-align: left;
    padding: 3px;
    margin: 0 30px;
    color: black;
    font-size: 16.5px;
}

.about2 h1{
    text-align: center;
    color: black;
    font-weight: 300;
}

.circle img{
    position: absolute;
    width: 750px;
    top: 89%;
    left: 20%;
    opacity: .3;
}
.circle2 img{
    position: absolute;
    top: 150%;
    left: 82%;
}

/*===========================
 adding style to about items 
============================*/

.row{
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items:center;
    margin: 75px 20px;
    text-align: center;
}
.about-item{
    margin-bottom: 20px;
    margin-top: 20px;
    margin-right: 15px;
    background-color: rgba(255, 255, 255, 0.973)smoke;
    padding: 80px 30px;
    box-shadow: 0 0 9px rgba(0,0,0.6);
    
}

/*======================================
adding style to the icons(book,globe,pencil)
=========================================*/
.about-item i{
    font-size: 43px;
    margin: 0;
}

/*======================================
adding style to h3(heading 3) of each item 
=========================================*/
.about-item h3{
    font-size: 25px;
    margin-bottom: 10px;
}

/*======================================
styling the hr (the blue line in between)
=========================================*/
.about-item hr{
    width: 46px;
    height: 3px;
    background-color: #5fbff9;
    margin: 0 auto;
    border: none;
    text-align: center;
}

/*========================================
hover means when you put your cursor over it
=========================================*/
.about-item:hover{
    background-color: #5fbff9;
}
.about-item:hover i,
.about-item:hover h3,
.about-item:hover p{
    color: #fff;
}
.about-item:hover hr{
    background-color: #fff;
}

/*==============================================================================
translate Y: move along the Y axis, negative(-20) moves it up, while positive(20) moves in down by  
================================================================================*/
.about-item:hover i{
    transform: translateY(-20px);
}
.about-item:hover i,
.about-item:hover h3,
.about-item:hover hr{
    transition: all 400ms ease-in-out;
}

.abt{
    font-size: 30px;
    color: black;
}
.about2 .p{
    align-content:flex-start ;
    
    
}


/*contact us*/



.c
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #112d42;
}
.c::before
{
  content: '';
  position: absolute;
  top: 85px;
  left: 0;
  width: 50%;
  height: 100%;
  background: #03a9f4;
}
.c .container
{
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  
}
.c .container .contactInfo
{
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background: #0f3959;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0,0,0,0.15);
}
.c .container .contactInfo h2
{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.c .container .contactInfo ul.info
{
  position: relative;
  margin: 20px 0;
}
.c .container .contactInfo ul.info li
{
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}
.c .container .contactInfo ul.info li span:nth-child(1)
{
  width: 30px;
  min-width: 30px;
}
.c .container .contactInfo ul.info li span img
{
  max-width: 100%;
  filter: invert(1);
}
.c .container .contactInfo ul.info li span:nth-child(2)
{
  color: #fff;
  margin-left: 10px;
  font-weight: 300;
}
.c .container .contactInfo ul.sci
{
  position: relative;
  display: flex;
}
.c .container .contactInfo ul.sci li
{
  list-style: none;
  margin-right: 15px;
}
.c .container .contactInfo ul.sci li a
{
  list-style: none;
}
.c .container .contactInfo ul.sci li a img
{
  filter: invert(1);
}
.c .container .contactForm
{
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: #fff;
  box-shadow: 0 50px 50px rgba(0,0,0,0.25);
}
.c .container .contactForm h2
{
  color: #2294ed;
  font-size: 24px;
  font-weight: 500;
}
.c .container .contactForm .formBox
{
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}
.c .container .contactForm .formBox .inputBox
{
  position: relative;
  margin: 0 0 35px 0;
}
.c .container .contactForm .formBox .inputBox.w50
{
  width: 47%;
}
.c .container .contactForm .formBox .inputBox.w100
{
  width: 100%;
}
.c .container .contactForm .formBox .inputBox input,
.c .container .contactForm .formBox .inputBox textarea
{
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 1px solid #777;
}
.c .container .contactForm .formBox .inputBox textarea
{
  min-height: 120px;
}
.c .container .contactForm .formBox .inputBox span
{
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}
.c .container .contactForm .formBox .inputBox input:focus ~ span,
.c .container .contactForm .formBox .inputBox input:valid ~ span,
.c .container .contactForm .formBox .inputBox textarea:focus ~ span,
.c .container .contactForm .formBox .inputBox textarea:valid ~ span
{
  transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #2294ed;
  font-weight: 500;
}
.c .container .contactForm .formBox .inputBox input[type="submit"]
{
  position: relative;
  cursor: pointer;
  background: #0f3959;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
}
.c .container .contactForm .formBox .inputBox input[type="submit"]:hover
{
  background: #2294ed;
}

@media (max-width: 1200px)
{
  .c .container
  {
    
    max-width: 90%;
    min-width: auto;
    margin: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }
  .c .container .contactInfo
  {
    position: relative;
    top: 0;
    height: 550px;
    box-shadow: none;
  }
  .c .container .contactForm
  {
    position: relative;
    width: calc(100% - 30px);
    height: 550px;
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    box-shadow: none;
  }
}


@media (max-width: 991px)
{
  .c 
  {
    background: #03a9f4;
  }
  .c ::before
  {
    display: none;
  }
  .c .container
  {
    display: flex;
    flex-direction: column-reverse;
  }
  .c .container .contactInfo
  {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
  .c .container .contactInfo ul.sci
  {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c .container .contactForm
  {
    width: 100%;
  }
}

@media (max-width: 600px)
{
  .c .container .contactForm
  {
    height: auto;
    padding: 25px;
  }
  .c .container .contactForm .formBox .inputBox.w50
  {
    width: 100%;
  }
  .c .container .contactInfo
  {
  
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .c .container .contactInfo ul.sci
  {
    margin-top: 40px;
  }
}











/*map*/
.map{
    padding: 1px;
}
.map iframe{
    width: 100%;
    height: 100%;
}


/*product*/
.product1{
    padding: 20px var(--padding-inline-section);
    
}
.product1 img{
    width: 200px;
    border-radius: 20px;
}



/*sub footer*/

.subfooter{
    background:whitesmoke;
    padding: var(--padding-inline-section);
    height: 60px;
    
}
.subfooter-container{
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
   

}

/*footer*/
footer 
{

    
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px 100px;
	background: #a8cae6;
    padding-bottom: 20px
}
footer .container 
{
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	grid-gap: 20px;
}
footer .container .sec h2 
{
	position: relative;
	color: #333;
	font-weight: 600;
	margin-bottom: 15px;
    font-size:larger;
}
.sec .brand{
    align-items:center;
    padding: 20px;
}
.sec img{
    max-width: 40%;
}
.sec p{
    font-size:medium;
}
footer .container .sec p 
{
	color: #555;
    font-weight: 100;
}
footer .container .sci 
{
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(4,50px);
}
footer .container .sci  li 
{
	list-style: none;
}
footer .container .sci  li a 
{
	display: inline-block;
	width: 36px;
	height: 36px;
	padding-left: 10px;
    padding-bottom: 50px;
	display: grid;
	align-content: center;
	justify-content: center;
	text-decoration: none;
    font-weight: 300;
}
footer .container .sci  li a i 
{
	color: black;
	font-size: 25px;
}
footer .container .quicklinks
{
	position: relative;
}

footer .container .quicklinks ul li
{
	list-style: none;
}
footer .container .quicklinks ul li a 
{
	color: black;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}
footer .container .contact1 .info 
{
	position: relative;
}
footer .container .contact1 .info li 
{
	display: grid;
	grid-template-columns: 30px 1fr;
	margin-bottom: 16px;
}
footer .container .contact1 .info li span 
{
	color: black;
	font-size: 20px;
}
footer .container .contact1 .info li a 
{
	color: #555;
	text-decoration: none;
}
.copyrightText 
{
	width: 100%;
    height: 30px;
	background: #fff;	
	text-align: center;
    align-items: center;
	color: #555;
	border: 1px solid rgba(0,0,0,0.15);
    background: #112d42;
}
.copyrightText p{
    font-size: small;
    color: whitesmoke;
}

@media (max-width: 991px)
{
	footer 
	{
    padding: 40px;
	}
	footer .container
	{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
	}
	.copyrightText
	{
		padding: 20px 40px 30px;
	}	
}
@media (max-width: 768px) 
{
	footer .container
	{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 20px;
	}
}








/*product page*/
.productname{
    font-size: 50px;
    box-sizing: border-box;
    background-color: rgb(235, 232, 232);
    padding: 20px;
    padding-left: 150px;
}
.productnameq{
    font-size: 40px;
    box-sizing: border-box;
    background-color: rgb(235, 232, 232);
    padding: 20px;
    padding-left: 20px;
}

/*PRODUCT CARD*/



@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');



.container3 
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 100px 50px;
	padding: 100px 50px;
    margin-top: 65px;
}
.container3 .card3 
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 340px;
	height: 300px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 35px 80px rgba(0,0,0,0.15);
	transition: ease 0.2s;
    
}
.container3 .card3:hover 
{
	height: 400px;
}
.container3 .card3 .imgBx
{
	position: absolute;
	top: 20px;
	width: 220px;
	height: 150px;
	background: #333;
	border-radius: 12px;
	overflow: hidden;
	transition: ease 0.2s;
}
.container3 .card3:hover .imgBx
{
	top: -100px;
	scale:.80;
	box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}
.container3 .card3 .imgBx img 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.container3 .card3 .content3 
{
	position: absolute;
	top: 252px;
	width: 100%;
	padding: 0 30px;
	height: 35px;
	overflow: hidden;
	text-align: center;
	transition: 0.5s;
}
.container3 .card3:hover .content3 
{
	top: 130px;
	height: 250px;
}
.container3 .card3 .content3 h2 
{
	font-size: 1.5em;
	font-weight: 700;
	color: var(--clr);
}
.container3 .card3 .content3 p 
{
	color: #333;
}
.container3 .card3 .content3 a 
{
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 12px 25px;
	background: var(--clr);
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
}
.mapm{

    margin: 20px 20px;
}






/*home page product slider*/
.carousel{
    padding:20px;    
}


.carousel-cell {
    width: 40%;
    
    
    }
    .w3-image{
        border-radius: 10px;
    }

    /* cell number */
    .carousel-cell:before {
      display: block;
    }
    .p-text{
        position: absolute;
        top: 60%;
        padding: 20px;
        left: 34%;
        color: black;
        
          
    }
    .p-text p{
        left: 10%;
    }



    /*home page maps*/

    .MAPS img{
        box-sizing: border-box;
        margin-left: 60px;
        border-radius: 30px;
    }
    .map-text{
        position:static;
        font-weight: 30px;
        left: 5%;
    }
  
  
      
  


