:root {
    /* Main Color */
    --color-primary: #46B1B1;
    /* Variations */
    --color-primary-light: #DFF5F3;
    --color-primary-dark: #2A7F7F;
    /* Accent Color */
    /* Neutral and Text Colors */
    --color-neutral: #ECECEC;
    --color-text-dark: #2E2E2E;
    /* Optional: Gradients */
    --gradient-primary: linear-gradient(135deg, #46B1B1, #2A7F7F);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0 !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    /* You can change this to 1400px, etc. */
    margin: 0 auto;
    padding: 0 15px;
    /* Padding for mobile spacing */
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Training Section */
.training-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.training-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, #029eaa08 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #029eaa05 0%, transparent 50%);
}

.training-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.1);
    color: #029eaa;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 158, 170, 0.3);
}

.training-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.training-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(2, 158, 170, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #029eaa, #0abcd6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training-card:hover {
    transform: translateY(-3px);
    background: rgba(2, 158, 170, 0.05);
    border-color: rgba(2, 158, 170, 0.4);
    box-shadow: 0 10px 20px rgba(2, 158, 170, 0.15);
}

.training-card:hover::before {
    transform: scaleX(1);
}

.training-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .training-card {
        padding: 15px 10px;
        min-height: 70px;
    }

    .training-name {
        font-size: 0.85rem;
    }

    .training-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .training-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .training-card {
        padding: 18px 15px;
        min-height: 60px;
    }

    .training-name {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, #029eaa08 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, #029eaa05 0%, transparent 50%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.1);
    color: #029eaa;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 158, 170, 0.3);
}

.services-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default: 2 cards on big screens */
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(2, 158, 170, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #029eaa, #0abcd6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(2, 158, 170, 0.05);
    border-color: rgba(2, 158, 170, 0.4);
    box-shadow: 0 20px 40px rgba(2, 158, 170, 0.15);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    background: rgba(2, 158, 170, 0.05);
    border: 1px solid rgba(2, 158, 170, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(2, 158, 170, 0.1);
    border-color: rgba(2, 158, 170, 0.4);
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #029eaa;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.4;
}

@media (max-width: 768px) {
   
    .services-content {
        grid-template-columns: 1fr; /* Single card on screens 768px and smaller */
    }


    .services-section {
        padding: 60px 0;
    }
   
    .service-item {
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* About Section Styles */
.about-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, #029eaa08 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, #029eaa05 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(2, 158, 170, 0.15);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(2, 158, 170, 0.25);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    margin-bottom: 3%;

}


.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #029eaa;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text {
    padding-left: 20px;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.1);
    color: #029eaa;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 158, 170, 0.3);
}

.about-title {
    font-size: clamp(2rem, 2vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(2, 158, 170, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(2, 158, 170, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(2, 158, 170, 0.1);
    border-color: rgba(2, 158, 170, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: .8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.7rem;
    color: #cccccc;
    line-height: 1.5;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-secondary {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #029eaa;
    color: #029eaa;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #029eaa;
    color: #000;
    transform: translateY(-2px);
}

.cta-primary {
    padding: 15px 30px;
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    border: none;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(2, 158, 170, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 158, 170, 0.4);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        padding-left: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-secondary,
    .cta-primary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .overlay-content {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }
}
 

/* Mobile Styles */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        margin-top: 20px;
    } 
}

/* Services Section Styles */
.services-section {
    background: linear-gradient(180deg, #000 0%, #111 50%, #000 100%);
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, #029eaa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
}

.services-grid {
    display: grid;
    gap: 60px;
}

.service-category {
    background: rgba(2, 158, 170, 0.05);
    border: 1px solid rgba(2, 158, 170, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: #029eaa;
    box-shadow: 0 20px 40px rgba(2, 158, 170, 0.1);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(2, 158, 170, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    color: #000;
    font-weight: bold;
}

.category-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #029eaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(2, 158, 170, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 158, 170, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #029eaa;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(2, 158, 170, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-stack span {
    background: rgba(2, 158, 170, 0.2);
    color: #029eaa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(2, 158, 170, 0.4);
    transition: all 0.2s ease;
}

.tech-stack span:hover {
    background: #029eaa;
    color: #000;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .services-grid {
        gap: 40px;
    }

    .service-category {
        padding: 25px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }
}



.header {
    position: relative;
    height:120vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    

}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, #029eaa15 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #029eaa10 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, #029eaa08 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(45deg, #029eaa, #ffffff, #029eaa);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-top: 40px;
    text-shadow: 0 0 30px rgba(2, 158, 170, 0.3);
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #029eaa;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
    letter-spacing: 1px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 1s ease-out 1s forwards;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.tech-item {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #029eaa;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.tech-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-item:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.tech-item:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

.tech-item:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.tech-item:nth-child(5) {
    top: 15%;
    left: 60%;
    animation-delay: 4s;
}

.tech-item:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.5);
    }
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 1s ease-out 1.2s forwards;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(2, 158, 170, 0.1);
    border: 1px solid #029eaa;
    border-radius: 25px;
    color: #029eaa;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-tag:hover {
    background: #029eaa;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 158, 170, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, transparent, #029eaa, transparent);
    border: 2px solid #029eaa;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideUp 1s ease-out 1.8s forwards;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 158, 170, 0.3);
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #029eaa;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-node 3s ease-in-out infinite;
}

.node:nth-child(1) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 45%;
    left: 25%;
    animation-delay: 0.5s;
}

.node:nth-child(3) {
    top: 35%;
    left: 75%;
    animation-delay: 1s;
}

.node:nth-child(4) {
    top: 65%;
    left: 85%;
    animation-delay: 1.5s;
}

.node:nth-child(5) {
    top: 75%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes pulse-node {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px;
        height: auto;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .services {
        gap: 8px;
        margin-bottom: 30px;
    }

    .service-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Training Section Styles */
.training-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);

    position: relative;
    overflow: hidden;
}

.training-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, #029eaa12 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, #029eaa08 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #029eaa06 0%, transparent 50%);
    animation: pulse-bg 6s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.1);
    color: #029eaa;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(2, 158, 170, 0.3);
    backdrop-filter: blur(10px);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(2, 158, 170, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(2, 158, 170, 0.4);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, #029eaa, #ffffff, #0abcd6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(2, 158, 170, 0.3);
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Training Program Items */
.training-programs {
    position: relative;
    z-index: 2;
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

    position: relative;
}

.program-item:nth-child(even) {
    direction: rtl;
}

.program-item:nth-child(even)>* {
    direction: ltr;
}

.program-image {
    position: relative;
   
    border-radius: 25px;
   
}


.program-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    transition: transform 0.4s ease;
}




.overlay-badge {
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.program-content {
    padding: 20px 0;
}

.program-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.2);
    color: #029eaa;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 158, 170, 0.4);
}

.program-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-highlight {
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-subtitle {
    font-size: 1.1rem;
    color: #029eaa;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(2, 158, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(2, 158, 170, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(2, 158, 170, 0.1);
    border-color: rgba(2, 158, 170, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.tech-tag {
    background: rgba(0, 0, 0, 0.8);
    color: #029eaa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(2, 158, 170, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #029eaa;
    color: #000;
    transform: scale(1.05);
}

.program-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 35px;
    background: linear-gradient(45deg, #029eaa, #0abcd6);
    border: none;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(2, 158, 170, 0.3);
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2, 158, 170, 0.4);
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #029eaa;
    color: #029eaa;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: #029eaa;
    color: #000;
    transform: translateY(-3px);
}

/* Internship Section */
.internship-section {
    background: linear-gradient(180deg, #111 0%, #000 50%, #111 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.internship-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, #029eaa10 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #029eaa08 0%, transparent 50%);
}

.internship-programs {
    position: relative;
    z-index: 2;
}

.internship-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.internship-item:nth-child(even) {
    direction: rtl;
}

.internship-item:nth-child(even)>* {
    direction: ltr;
}

.internship-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(2, 158, 170, 0.15);
    transition: all 0.4s ease;
}

.internship-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(2, 158, 170, 0.25);
}

.internship-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.internship-image:hover img {
    transform: scale(1.05);
}

.internship-content {
    padding: 20px 0;
}

.internship-badge {
    display: inline-block;
    background: rgba(2, 158, 170, 0.2);
    color: #029eaa;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 158, 170, 0.4);
}

.internship-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.internship-type {
    font-size: 1rem;
    color: #029eaa;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.internship-details {
    background: rgba(2, 158, 170, 0.05);
    border: 1px solid rgba(2, 158, 170, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.95rem;
}

.detail-label {
    color: #888;
    font-weight: 500;
}

.detail-value {
    color: #ffffff;
    font-weight: 600;
}

.highlight-value {
    color: #029eaa !important;
    font-weight: 700;
}

.internship-cta {
    display: flex;
    gap: 20px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #029eaa;
    border-radius: 50%;
    opacity: 0.4;
    animation: float-random 8s linear infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.floating-element:nth-child(5) {
    top: 40%;
    left: 40%;
    animation-delay: 1s;
}

.floating-element:nth-child(6) {
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float-random {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }

    75% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {

    .training-section,
    .internship-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .program-item,
    .internship-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        direction: ltr !important;
    }

    .program-content,
    .internship-content {
        order: 2;
    }

    .program-image,
    .internship-image {
        order: 1;
    }

    .program-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program-cta,
    .internship-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .program-item,
    .internship-item {
        gap: 20px;
        margin-bottom: 40px;
    }

    .program-image img,
    .internship-image img {
        height: 250px;
    }

    .tech-stack {
        gap: 8px;
    }

    .tech-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

 /* IT Services Section Styles */
        .it-services-section {
            background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .it-services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, #029eaa12 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, #029eaa08 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #029eaa06 0%, transparent 50%);
            animation: pulse-bg 6s ease-in-out infinite alternate;
        }

        @keyframes pulse-bg {
            0% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: rgba(2, 158, 170, 0.1);
            color: #029eaa;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            border: 1px solid rgba(2, 158, 170, 0.3);
            backdrop-filter: blur(10px);
            animation: glow-pulse 3s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { box-shadow: 0 0 10px rgba(2, 158, 170, 0.2); }
            50% { box-shadow: 0 0 20px rgba(2, 158, 170, 0.4); }
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(45deg, #029eaa, #ffffff, #0abcd6);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 30px rgba(2, 158, 170, 0.3);
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #cccccc;
            font-weight: 300;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
            margin-top: 60px;
        }

        .service-card {
            background: rgba(2, 158, 170, 0.05);
            border: 1px solid rgba(2, 158, 170, 0.2);
            border-radius: 25px;
            padding: 35px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(2, 158, 170, 0.1), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: #029eaa;
            box-shadow: 0 25px 50px rgba(2, 158, 170, 0.2);
            transform: translateY(-10px);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #029eaa, #0abcd6);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(2, 158, 170, 0.3);
        }

        .card-icon svg {
            width: 35px;
            height: 35px;
            color: #000;
            stroke-width: 2;
        }

        .service-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(2, 158, 170, 0.4);
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .card-description {
            font-size: 1rem;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .card-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.95rem;
            color: #ffffff;
            font-weight: 500;
        }

        .feature-bullet {
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, #029eaa, #0abcd6);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }

        .tech-tag {
            background: rgba(2, 158, 170, 0.2);
            color: #029eaa;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(2, 158, 170, 0.4);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: #029eaa;
            color: #000;
            transform: scale(1.05);
        }

        .card-cta {
            margin-top: auto;
        }

        .btn-discover {
            display: inline-block;
            padding: 12px 28px;
            background: transparent;
            border: 2px solid #029eaa;
            color: #029eaa;
            text-decoration: none;
            font-weight: 600;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .btn-discover:hover {
            background: #029eaa;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(2, 158, 170, 0.3);
        }

        /* Special Featured Cards */
        .service-card.featured {
            background: rgba(2, 158, 170, 0.1);
            border: 2px solid #029eaa;
        }

        .service-card.featured .btn-discover {
            background: linear-gradient(45deg, #029eaa, #0abcd6);
            color: #000;
            border: none;
        }

        .service-card.featured .btn-discover:hover {
            background: linear-gradient(45deg, #0abcd6, #029eaa);
            transform: translateY(-2px) scale(1.05);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #029eaa;
            border-radius: 50%;
            opacity: 0.3;
            animation: float-random 12s linear infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 70%; left: 25%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 30%; left: 85%; animation-delay: 4s; }
        .floating-element:nth-child(4) { top: 80%; left: 75%; animation-delay: 6s; }
        .floating-element:nth-child(5) { top: 50%; left: 10%; animation-delay: 1s; }
        .floating-element:nth-child(6) { top: 20%; left: 60%; animation-delay: 3s; }
        .floating-element:nth-child(7) { top: 60%; left: 90%; animation-delay: 5s; }
        .floating-element:nth-child(8) { top: 40%; left: 40%; animation-delay: 7s; }

        @keyframes float-random {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
            25% { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
            50% { transform: translateY(-40px) scale(1.6); opacity: 1; }
            75% { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .it-services-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 40px;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            .card-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .card-icon {
                width: 60px;
                height: 60px;
            }
            
            .card-icon svg {
                width: 30px;
                height: 30px;
            }
            
            .card-title {
                font-size: 1.4rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .card-features {
                margin-bottom: 20px;
            }
            
            .tech-stack {
                gap: 6px;
            }
            
            .tech-tag {
                font-size: 0.75rem;
                padding: 5px 10px;
            }
        }




.container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Expert Team Section Styles */
        .team-section {
            background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, #029eaa12 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, #029eaa08 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #029eaa06 0%, transparent 50%);
            animation: pulse-bg 6s ease-in-out infinite alternate;
        }

        @keyframes pulse-bg {
            0% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: rgba(2, 158, 170, 0.1);
            color: #029eaa;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 20px;
            border: 1px solid rgba(2, 158, 170, 0.3);
            backdrop-filter: blur(10px);
            animation: glow-pulse 3s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { box-shadow: 0 0 10px rgba(2, 158, 170, 0.2); }
            50% { box-shadow: 0 0 20px rgba(2, 158, 170, 0.4); }
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            background: linear-gradient(45deg, #029eaa, #ffffff, #0abcd6);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 0 30px rgba(2, 158, 170, 0.3);
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-subtitle {
            font-size: 1rem;
            color: #cccccc;
            font-weight: 300;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
            margin-top: 60px;
        }

        .team-card {
            background: rgba(2, 158, 170, 0.05);
            border: 1px solid rgba(2, 158, 170, 0.2);
            border-radius: 25px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(2, 158, 170, 0.1), transparent);
            transition: left 0.6s;
        }

        .team-card:hover::before {
            left: 100%;
        }

        .team-card:hover {
            border-color: #029eaa;
            box-shadow: 0 25px 50px rgba(2, 158, 170, 0.2);
            transform: translateY(-10px);
        }

        /* Team Member Photo - Full Width */
        .member-photo {
            width: 100%;
            height: 250px;
            border-radius: 15px;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
            background: linear-gradient(45deg, #029eaa, #0abcd6);
            padding: 3px;
            transition: all 0.4s ease;
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            object-fit: cover;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 3rem;
            transition: transform 0.4s ease;
        }

        .team-card:hover .member-photo {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(2, 158, 170, 0.4);
        }

        .team-card:hover .member-photo img {
            transform: scale(1.03);
        }

        /* Placeholder for missing photos */
        .photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #333, #444);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #029eaa;
            font-size: 2.5rem;
            font-weight: bold;
        }

        .member-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .member-role {
            font-size: 0.9rem;
            color: #029eaa;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .member-description {
            font-size: 0.85rem;
            color: #cccccc;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .member-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .skill-tag {
            background: rgba(2, 158, 170, 0.2);
            color: #029eaa;
            padding: 5px 12px;
            border-radius: 18px;
            font-size: 0.7rem;
            font-weight: 500;
            border: 1px solid rgba(2, 158, 170, 0.4);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: #029eaa;
            color: #000;
            transform: scale(1.05);
        }

        .member-stats {
            background: rgba(2, 158, 170, 0.1);
            border: 1px solid rgba(2, 158, 170, 0.3);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.4rem;
            font-weight: 800;
            color: #029eaa;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.7rem;
            color: #cccccc;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            justify-content: start;
            margin-top: 15px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background: rgba(2, 158, 170, 0.1);
            border: 1px solid rgba(2, 158, 170, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #029eaa;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #029eaa;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(2, 158, 170, 0.3);
        }

        /* Leadership Team - Featured Cards */
        .team-card.leadership {
            background: rgba(2, 158, 170, 0.1);
            border: 2px solid #029eaa;
            transform: scale(1.02);
        }

        .team-card.leadership .member-photo {
            height: 220px;
            border-width: 4px;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #029eaa;
            border-radius: 50%;
            opacity: 0.3;
            animation: float-random 12s linear infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 70%; left: 25%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 30%; left: 85%; animation-delay: 4s; }
        .floating-element:nth-child(4) { top: 80%; left: 75%; animation-delay: 6s; }
        .floating-element:nth-child(5) { top: 50%; left: 10%; animation-delay: 1s; }
        .floating-element:nth-child(6) { top: 20%; left: 60%; animation-delay: 3s; }
        .floating-element:nth-child(7) { top: 60%; left: 90%; animation-delay: 5s; }
        .floating-element:nth-child(8) { top: 40%; left: 40%; animation-delay: 7s; }

        @keyframes float-random {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
            25% { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
            50% { transform: translateY(-40px) scale(1.6); opacity: 1; }
            75% { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
        }

        /* Team Stats Section */
        .team-stats {
            background: rgba(2, 158, 170, 0.1);
            border: 1px solid rgba(2, 158, 170, 0.3);
            border-radius: 25px;
            padding: 35px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .stats-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .stats-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .stats-subtitle {
            font-size: 0.85rem;
            color: #cccccc;
        }

        .team-overview-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
        }

        .overview-stat {
            text-align: center;
            padding: 18px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 1px solid rgba(2, 158, 170, 0.2);
            transition: all 0.3s ease;
        }

        .overview-stat:hover {
            background: rgba(2, 158, 170, 0.1);
            border-color: #029eaa;
            transform: translateY(-5px);
        }

        .overview-number {
            font-size: 2rem;
            font-weight: 800;
            color: #029eaa;
            display: block;
            line-height: 1;
            margin-bottom: 6px;
        }

        .overview-label {
            font-size: 0.8rem;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .team-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
                margin-top: 40px;
            }
            
            .team-card.leadership {
                transform: none;
            }
            
            .team-card {
                padding: 25px 20px;
            }
            
            .member-photo {
                height: 180px;
            }
            
            .team-card.leadership .member-photo {
                height: 200px;
            }
            
            .team-overview-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .team-card {
                padding: 20px 18px;
            }
            
            .member-name {
                font-size: 1.2rem;
            }
            
            .member-photo {
                height: 160px;
            }
            
            .team-card.leadership .member-photo {
                height: 180px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .team-overview-stats {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }









.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  font-size: 20px;
  color: #555;
  transition: color 0.3s;
}

.social-link:hover {
  color: #21d0b3; /* your brand primary */
}
