/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Global Styles */
body {
    
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.LOGOOFCYBER {
    width: 60px;
    height: 60px;
}

/* Navigation Bar Styles */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    background-color: rgb(12, 224, 239); 
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
}
.dropbtn {
    background-color:rgb(12, 224, 239);
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    }
    
    .dropdown {
    position: relative;
    display: inline-block;
    border:none;
    width:100px;
    }
    
    .dropdown-content {
    display: none;
    position: absolute;
    background-color:white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    }
    
    .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    }
    
    .dropdown-content a:hover {background-color: rgb(12, 224, 239);}
    
    .dropdown:hover .dropdown-content {
    display: block;
    }
    
    .dropdown:hover .dropbtn {
    background-color:rgb(17, 233, 253);
    }
    
.right {
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 2px 4px 4px gray;
    height: fit-content;
    color: #fff;
}

.left {
    font-size: 1.1rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

nav ul li a {
    color: rgb(41, 105, 161);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
}

nav ul li a:hover{
  color: #ffffff;
}

.btomj li {
    list-style: none;
}

.btomj li a {
    text-decoration: none;
    color: rgb(12, 88, 155);
    font-size: 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: rgb(210, 241, 245);
    border: 1px solid #f7f5f5;
    padding: 12px 50px;
    border-radius: 6px;
    transition: background 0.5s;
}

.btn:hover {
    background: rgb(138, 232, 232);
}

/* Hero Section Styles */
.hero {
    background-color: rgb(221, 240, 243);
    /* background-color: #cde5e6; */
    overflow: hidden;
}

.heading h1 {
    color: #1db2b2;
    font-size: 55px;
    text-align: center;
    margin-top: 35px;
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
    /* background-color: #cde5e6; */
    background-color: rgb(221, 240, 243);
}

.hero-content {
    flex: 1;
    width: 600px;
    margin: 0px 25px;
    animation: fadeInUp 2s ease;
}

.hero-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #333;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.5;
}

.hero-content button {
    display: inline-block;
    background-color: #21b2b7;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-content button:hover {
    background-color: #ff6347;
    transform: scale(1.1);
}

.hero-image {
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {
    .heading h1 {
        font-size: 45px;
        margin-top: 30px;
    }
    .hero {
        margin: 0;
    }
    .container {
        width: 100%;
        flex-direction: column;
        margin: 0;
        padding: 0 40px;
    }
    .hero-content {
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .hero-image {
        width: 100%;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
/* Team Details  */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Space Grotesk', sans-serif;
	text-decoration: none;
}
.team{
	position: relative;
	width: 100%;
	height: 100vh;
	/* background: radial-gradient(#06dcf4,#0f051d); */
	/* background-color: rgb(125, 190, 190); */
    background-color: rgb(221, 240, 243);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.team-content{
	width: 1100px;
	margin-top: 3%;
	/* margin: 0 auto; */
	display: flex;
    flex-direction: row;
	justify-content: center;
	align-items: center;
    padding-left: 35px;
    padding-right: 35px;
	
	text-align: center;
	/* margin-top: 4rem; */
}
.team-content1{
	width: 650px;
	margin-top: 5px;
	margin: 0 auto;
	display: flex;
    flex-direction: row;
	justify-content: space-around;
	align-items: center;
    
	
	text-align: center;
	/* margin-top: 4rem; */
} 



.team-content img,.team-content1 img{
	width: 175px;
	height: 200px;
	border-radius: 15px;
	margin-bottom: 15px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.center h1{
	/* color: #d91818; */
    color: #1db2b2;
	font-size: 4rem;
	text-align: center;
}
.box{
	padding: 16px;
	
    background: transparent;
	border-radius: 15px;
	transition: all .38s ease;
	
	
}

.box h3{
    width: 200px;
	font-size: 20px;
	font-weight: 600;
	color: black;
	margin-bottom: 8px;
}
.box h5{
	font-size: 15px;
	font-weight: 600;
	color: #b7b4bb;
	margin-bottom: 15px;
	letter-spacing: 2px;
}
/* .icons i{
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}
.icons i:hover{
	transform: scale(1.2);
} */
.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
}

@media(max-width: 1240px){
	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
	.center h1{
		font-size: 3.2rem;
	}

/*@media screen and ( min-width: 200px) and (  max-width: 450px) {*/

   
    nav {
    flex-direction: column;
    align-items: left;
    height:138px;
    width:auto;
    
  }
  nav ul {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: rgb(105, 220, 228);
  }
  
  nav ul li {
  margin: 10px 0;
  }

  h2{
    font-size:29px;
    margin-left:0px;
    margin-right:90px;
    text-align: center;
  }
  p{
    font-size:12px;
    margin-right:90px;
    
  }
  h1{
    
    margin-right:80px;
    font-size:23px;
    text-align: center;
    
  }
  .hero-image{
    display: none;
  }
  .heading{
    font-size: 12px;
  }
  .btomj{
    margin-right: 80px;
  }

}
 
