@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    
    color: #ededed;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
     background: transparent; /* keeps logo visible */
    color: #ededed;
}

.logo{
    display: flex;
    align-items: center;
    text-decoration: none; /* remove underline */
    color: #E63946;
    font-size: 28px;
    font-weight: 700;
    gap: 10px; /* space between logo image and text */
}

.logo-img {
    width: 100px; /* adjust size as needed */
    height: auto;
}



.navbar a {
    font-size:18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active{
    color: #00abf0;

}
.home {
    position: relative;
    background: #000000; /* black base */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.home::before, 
.home::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: transparent;
    border: 2px solid #E63946; /* dragon red lines */
    border-radius: 50%; /* makes them curved */
    opacity: 0.1; /* subtle effect */
    animation: rotateLines 20s linear infinite;
    z-index: 0;
}

.home::after {
    border-width: 1px;
    opacity: 0.15;
    animation-duration: 35s;
}

@keyframes rotateLines {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.home-content {
    position: relative;
    z-index: 1; /* stays above the animated red lines */
    max-width: 600px;
}


.home-content h1{
     font-size: 56px;
    font-weight: 800;
    color: #E63946;
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    font-size: 32px;
    color: #FF5C5C;
}

.home-content p{
    font-size: 16px;
    margin: 20px 0 40px;
}

.home-content .btn-box{
    display: flex;
    justify-content:space-between ;
    width: 345px;
    height: 50;
}

.btn-box a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover{
    color: #00abf0;
}

.btn-box a:nth-child(2){
    background: transparent;
    color: #00abf0;
}

.btn-box a:nth-child(2):hover{
    color: #081b29;
}

.btn-box a:nth-child(2)::before{
    background: #00abf0;
}

.btn-box a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #081b29;
    z-index: -1;
    transition:.5s;
}

.btn-box a:hover::before{
    width: 100%;
}

.home-sci{
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
position: relative;
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height:40px;
background: transparent;
border: 2px solid #00abf0;
border-radius: 50%;
font-size: 20px;
color: #00abf0;
text-decoration: none;
z-index: 1;
overflow: hidden;
}

.home-sci a:hover{
    color: #081b29;
}
.home-sci a::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: #00abf0;
z-index: -1;
transition: .5s;
}

.home-sci a:hover::before{
   width: 100%; 
}

.scroll-down {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    color: #ededed;
    text-decoration: none;
    transition: .3s;
    color: #E63946;
}

.scroll-down:hover {
      color: #FF5C5C;
}

.team {
    min-height: 100vh;
    padding: 100px 10%;
    background: #112128; /* dark gray, matches theme */
    color: #ededed;
}

.team h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #E63946; /* dragon red */
}

.team p {
    max-width: 600px;
    margin-bottom: 40px;
    color: #CCCCCC; /* softer text for descriptions */
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #1A2A3D; /* slightly lighter than section */
    padding: 25px;
    border-radius: 12px;
    transition: .3s;
}

.team-member:hover {
    transform: translateY(-5px);
    background: #112B40; /* subtle hover effect */
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #E63946; /* name in red */
}

.team-member span {
    color: #FF5C5C; /* role text in lighter red */
    font-size: 14px;
    font-weight: 600;
}

.team-member p {
    font-size: 14px;
    margin-top: 10px;
    color: #CCCCCC; /* description text soft white */
}

.highlights {
    padding: 100px 10%;
    background: #081218; /* match hero dark for balance */
    color: #ededed;
}

.highlights h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #E63946;
}

.highlights p {
    max-width: 700px;
    margin-bottom: 50px;
    color: #CCCCCC;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #112128;
    padding: 25px;
    border-radius: 12px;
    transition: .3s;

    display: flex;
    flex-direction: column; 
    gap: 15px; 
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: #1A2A3D; /* subtle hover */
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #E63946;
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #CCCCCC;
}

.highlight-card img {
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

