@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); 
:root {
    --bg-color: #0a0a0a;
    --second-bg-color: #121212;
    --accent-color: #1e1e1e;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --main-color: #ff1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.services-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 0;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.services-section header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-section header p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--second-bg-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1s; }
.service-card:nth-child(6) { animation-delay: 1.2s; }
.service-card:nth-child(7) { animation-delay: 1.4s; }

.service-icon {
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.learn-more-btn {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--main-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 0 0 transparent;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.btn-icon {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-section header h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.services-section {
    margin-bottom: 3rem;
}

.services-section header h1,
.services-section header p {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out forwards;
}

.services-section header h1 {
    animation-delay: 0.2s;
}

.services-section header p {
    animation-delay: 0.5s;
}

/* overview */

.overview-section {
    background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
    color: var(--text-color);
    padding: 4rem 1rem 2rem;
    border-radius: 50px;
    margin-top: 4rem;
    font-family: 'Poppins', sans-serif;
}

.overview-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.overview-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.overview-header h1 {
    font-size: 4rem;
    font-weight: 600;
}

.overview-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    text-align: right;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-grid .stat-card:nth-child(1) { animation-delay: 0.1s; }
.stats-grid .stat-card:nth-child(2) { animation-delay: 0.2s; }
.stats-grid .stat-card:nth-child(3) { animation-delay: 0.3s; }
.stats-grid .stat-card:nth-child(4) { animation-delay: 0.4s; }
.stats-grid .stat-card:nth-child(5) { animation-delay: 0.5s; }
.stats-grid .stat-card:nth-child(6) { animation-delay: 0.6s; }

.stat-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 230px;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
    z-index: 1;
}
.stat-card.dark {
    background-color: #1a1a1a;
}

.stat-card.red {
    background-color: #ff0000;
}

.stat-card.red-dark {
    background-color: #990000;
}

.stat-card.white {
    background-color: #ffffff;
    color: #000000;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 1rem;
    line-height: 1.4;
    color: inherit;
    opacity: 0.85;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #ff0000;
}

.btn-solid {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-solid:hover {
    background-color: #e60000;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .overview-header h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .overview-header p {
        text-align: left;
        margin-top: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .overview-wrapper {
        padding: 0 1rem;
    }
}

/* it solutions  */


.it-solutions-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 0;
    font-family: 'Poppins', sans-serif;
}

.it-solutions-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    animation-delay: 0.4s;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}
.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}
.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}
.feature-card:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 255, 160, 0.2);
}

.icon-container svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-container svg {
    transform: scale(1.1);
    color: var(--main-color);
}

.feature-card.highlighted {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-container {
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-light {
    font-weight: 300;
    opacity: 0.7;
}

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--main-color);
    margin: 1rem 0 1.5rem 0;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* teammembers */

.team-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 0;
    font-family: 'Poppins', sans-serif;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1rem;
    animation-delay: 0.1s;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.text-red {
    color: var(--main-color);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    opacity: 0;
    animation: zoomIn 0.8s ease forwards;
    animation-delay: 0.6s;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
.team-card:hover {
    transform: translateY(-10px);
  }
  

.member-image {
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.member-image::before {
    content: "";
    display: block;
    padding-top: 125%; 
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.team-card:hover .member-image img {
    transform: scale(1.05);
  }

.member-role {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .team-section {
      padding: 4rem 1rem;
    }
    
    .team-card {
      padding: 1rem;
    }
    
    .section-desc {
      font-size: 0.95rem;
    }
  
    .team-card h3 {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .section-header h2 {
      font-size: 1.6rem;
    }
  
    .section-desc {
      font-size: 0.9rem;
    }
  
    .team-card p {
      font-size: 0.85rem;
    }
  }

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  