
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: rgb(35, 35, 35);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    justify-content: center;

}

header {
    background: linear-gradient(rgb(17, 16, 16), #d01238);
    color: white;
    padding: 2rem 0;
    text-align: center;
}
/* Animation styles */
.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .logo-animation {
    font-size: 15vw; /* Changed from fixed to viewport width units */
    font-weight: bold;
    text-align: center;
  }
  
  .red-text {
    color: #8f0d27;
    display: inline-block;
  }
  
  .iva-text {
    color: #716a6a;
    display: inline-block;
  }
  
  /* Animation keyframes */
  @keyframes moveRed {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-5vh); opacity: 0; } /* Using vh instead of fixed pixels */
  }
  
  @keyframes moveIva {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(5vh); opacity: 0; } /* Using vh instead of fixed pixels */
  }
  
  @keyframes fadeIn {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
  }
  
  /* Animation for appearing text */
  .container-new h2.section-title {
    color: #d01238;
    opacity: 0;
    font-size: 6vw; /* Changed from em to vw */
    animation: fadeInContainer 3s ease forwards;
    animation-delay: 1.7s;
  }
  
  @keyframes fadeInContainer {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Media queries for different screen sizes */
  @media screen and (max-width: 768px) {
    .logo-animation {
      font-size: 20vw; /* Larger on small screens */
    }
    
    .container-new h2.section-title {
      font-size: 8vw;
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo-animation {
      font-size: 25vw; /* Even larger on very small screens */
    }
    
    .container-new h2.section-title {
      font-size: 10vw;
    }
  }
  .hire-us-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1000;
    text-decoration: none;
  }
  
  .hire-us-button:hover {
    transform: scale(1.25);
  }
  
  .outer-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(red 0%, darkRed 50%, rgb(42, 22, 22) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(25, 4, 4, 0.2);
    transition: box-shadow 0.3s ease;
  }
  
  .hire-us-button:hover .outer-circle {
    box-shadow: 0 10px 20px rgba(34, 30, 30, 0.25);
  }
  
  .inner-circle {
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background-color: rgb(20, 17, 17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hire-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #de1616;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-decoration: none;
  }
  
  .us-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d40f0f;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-decoration: none;
  }
  
/* Header Container */
.container-header {
    margin: 0 auto;
    max-width: 1200px;
    padding: clamp(2rem, 5vw, 7rem); /* Responsive padding */
    display: flex;
    justify-content: center;
    flex-direction: column; /* Stack elements on small screens */
}

/* Tagline Container */
.tagline-container {
    position: relative;
    min-height: 80px; /* Reduced from 140px for better mobile display */
    width: 100%;
    overflow: hidden;
}

/* Tagline Text */
.tagline {
    color: darkgray;
    font-size: clamp(1.5rem, 5vw, 50px); /* Responsive font size */
    opacity: 0.9;
    text-align: center;
    margin-inline: auto;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 3px solid;
    animation: delay 5s step-end forwards,
        typing 3s steps(31) forwards 2s,
        blink 1s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.tagline.complete {
    border-right: none;
}

/* Media queries for different screen sizes */
@media screen and (max-width: 768px) {
    .tagline {
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
    
    .tagline-container {
        min-height: 60px;
    }
    
    #HireUs {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container-header {
        padding: 1.5rem;
    }
    
    .tagline {
        white-space: normal; /* Allow text to wrap on very small screens */
        height: auto;
        animation: none; /* Disable typing animation on very small screens */
        width: 100%;
        border-right: none;
    }
    
    .tagline-container {
        min-height: auto;
    }
}
.text{
    text-align: Left;
    margin-bottom: 2rem;
    color: rgb(255, 255, 255);
    position: relative;
    
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.container-leader {
    margin: 0 auto;
    max-width: 1200px;
    place-items: center;
    padding: 2rem 1rem;
}


.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: gold;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: gold;
    margin: 0.5rem auto;
}
/* Team Leader section */
.team-leader-card {
    border-radius: 10px;
    background: #00071070;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}
.team-leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(3, 0, 0);
}

/* Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    border-radius: 10px;
    background: #00071070;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgb(3, 0, 0);
}

.member-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: silver;
}

.member-role {
    color: teal;
    font-weight: 500;
    margin-bottom: 1rem;
}
.member-position{
    color:rgb(109, 109, 109);
    font-weight: 500;
    margin-bottom: 1rem;
}
.member-bio {
    font-size: 0.9rem;
    color: teal;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    color: #4361ee;
    text-decoration: none;
    padding: 0.3rem;
}

.social-link:hover {
    color: #3a0ca3;
}
.social-icon {
    width: 24px;  /* Adjust size as needed */
    height: 24px;
    vertical-align: middle;
}

/* You might need to adjust your social-link styling */
.social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-right: 10px;
}

/* Footer */
footer {
    background: linear-gradient(#d01238,rgb(17, 16, 16));
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
