@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	/* user-select: none; */ /* Disable text selection for the whole body */
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
/* .row{
	display: flex;
	flex-wrap: wrap;
} */

ul{
	list-style: none;
}

.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
    .footer-col{
		width: 50%;
		margin-bottom: 30px;
	}
}
@media(max-width: 574px){
    .footer-col{
		width: 100%;
	}
}

/* ================== header ==================== */

.site-identity a {
	text-decoration: none;
	/* color: aliceblue; */
	color: #bbbbbb;
}

.site-header {
	background-color: #24262b;
	border-bottom: 1px solid #ccc;
	padding: .5em 1em;
}
 
.site-header::after {
	content: "";
	display: table;
	clear: both;
}
  
.site-identity {
	/* float: left; */
	display: flex;
	justify-content: space-between;
	align-items: center;
}
  
.site-identity h1 {
	font-size: 1.5em;
	/* margin: .7em 0 .5em 0; */
	margin-top: 10px;
	display: inline-block;
	color: #bbbbbb;
}
  
.site-identity img {
	/*width: 150px;*/
	float: left;
	/* padding-top: 18px; */
	/* margin: 0 20px 0 0; */
}

.site-navigation {
	float: right;
}

.site-navigation ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}

.site-navigation ul li a:hover{
	color: #ffffff;
	transform: translateX(8px);
	/* padding-left: 8px; */
}

.site-navigation li {
	/* display: inline-block; */
	display: inline-flex;
	margin: 1.4em 1em 1em 1em;
	/* color: aliceblue; */
}

/* ================== */

main {
	background-color: white;
	/* background-color: rgb(206, 228, 232); */
	/* background-image: url("D:/VINAY CHOWDARY/PROJECT/websites/footer1/images/iot_background.jpg"); */
	/* background-image: url("../images/iot_background.jpg"); */
	/* background-repeat: no-repeat; */
    /* background-size: fill; */
}

#about {
	/* color: #999; */
	color: #000;
	padding-top: 80px;
	padding-bottom: 80px;
}

#about ul {
	list-style: disc;
	list-style-position: inside;
	font-family: 'Roboto';
}

#about h2 {
	color: #000;
	font-size: xx-large;
	padding-bottom: 20px;
}
  
#about img {
	width: 100%;
	height: auto; /* Adjust height to maintain aspect ratio */
	object-fit: cover;
	object-position: center;
	border: 2px solid white; /* Add border properties */
    border-radius: 8px; /* Optional: add border radius for rounded corners */
	padding: 8px;
}

#about p {
	/* font-family: Arial, sans-serif; */
	/* font-family: 'Roboto' !important; */
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 16px;
	transition: transform 0.3s ease-in-out; /* Smooth transition */
	/* text-align: center; */
}

/* #about p:hover {
    transform: translateX(10px); Move 20px to the right on hover
  } */
  
.container {
	max-width: 1140px; /* Adjust as needed */
}
  
.row {
	display: flex; /* Ensure flexbox layout */
	margin-bottom: 40px;
}

.row div {
	padding: 10px;
}

.col-md-6 {
	flex: 1; /* Allow columns to grow and shrink */
	/* padding: 10px; */
}

/* ======================== banner ========================= */

.banner {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
}
  
.slider {
	position: relative;
	width: 100%;
	height: 100%;
}
  
.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 300%; /* 100% per image */
	height: 100%;
}
  
.slide {
	width: 100%;
	height: 100%;
	position: relative;
}
  
.slide img {
	width: 100%;
	object-fit: fill;
	object-position: center;
	background: content-box;
	border: 2px solid white; /* Add border properties */
	border-radius: 8px; /* Optional: add border radius for rounded corners */
}
  
/* .slide-text {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 8px;
} */


.slide-text {
	font-family: 'Robot';
	position: absolute;
	white-space: pre-wrap;
	top: 50%;
	right: 50px;
	transform: translateY(-70%);
	font-size: 20px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 8px;
	width: 300px;
	word-spacing: normal;
	hyphens: auto;
	max-height: 200px;
}
  
button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	padding: 10px;
	cursor: pointer;
	font-size: 24px;
	z-index: 10;
}
  
.prev {
	left: 10px;
}
  
.next {
	right: 10px;
}
 
/* Optional: Style for the navigation buttons */
.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 10;
}

/* ======================================================================================== */

