@charset "utf-8";

/*

TemplateMo 592 glossy touch

https://templatemo.com/tm-592-glossy-touch

*/
  :root {
      --primary-color: #5e69dc;
      --secondary-color: #a64fc9; /* second colour */
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg,
            #53211f 0%,
            #0e4d91 25%,
            #53211f 50%,
            /* Dark Blue */
            #1a345b 75%,
            /* Blue */
            /* #bea94c 100%    Yellow */
            #53211f 100%
            /* Red */
        );
    min-height: 100vh;
    overflow-x: hidden;

}

/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}

.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}

.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}

.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}

.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}

.card {
    /* position: relative;
            width: 320px;
            height: 400px;
            background: rgba(transparent, 1);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer; */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--clr) 0%, transparent 60%);
    width: 700px;
    height: 700px;
    opacity: 0;
    transition: opacity 0.5s, top 0s, left 0s;
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.5;
}

.card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
}

/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Header styles */
header {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

@media (max-width:768px){
 .menu-toggle {
        display: block;
        color: white;
        position: absolute;
        right: 45px;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
   

    .nav-links {
        display: none;
        flex-direction: column;
     
        top: 100%;
        right: 0;
        /* background: rgba(30, 40, 80, 0.95); */
      
        width: 200px;
        /* padding: 15px 0; */
        border-radius: 10px;
        /* box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); */
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        /* margin-top: 80px; */
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        text-align: left;
        transition: background 0.3s, color 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
} 

/* Page system */
.page {
    display: none;
    min-height: 100vh;
    padding: 40px 20px 20px;
}

.page.active {
    display: block;
}

/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}

/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 10px; */
    align-items: center;
    padding: 20px 20px;
    margin-bottom: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.about-text {
    padding: 40px;
    color: white;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Team section styles */
.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    color: white;
    text-align: left;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}

    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .particle {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      will-change: transform, top, opacity;
      animation-name: cometMove;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      filter: blur(1px);
      /* Default colour (fallback) */
      background: var(--primary-color);
      box-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color);
      color: var(--primary-color);
    }

    .particle:nth-child(even) {
      background: var(--secondary-color);
      box-shadow: 0 0 15px var(--secondary-color), 0 0 25px var(--secondary-color);
      color: var(--secondary-color);
    }

    .particle::after {
      content: "";
      position: absolute;
      bottom: -16px;
      left: 50%;
      width: 6px;
      height: 23px;
      background: linear-gradient(to top, transparent, currentColor);
      transform: translateX(-50%);
      opacity: 0.8;
      border-radius: 50%;
    }

    @keyframes cometMove {
      0% {
        top: 100%;
        opacity: 0;
        transform: translateX(0) translateY(0);
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        top: -10%;
        opacity: 0;
        transform: translateX(50px) translateY(-30px);
      }
    }
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-map-section {
    margin-top: 40px;
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.contact-info {
    padding: 40px;
    color: white;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}

.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}

.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}

/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}

.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }

    .content-wrapper {
        min-height: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero{
        padding: 13px 7px;
    }
    .hero p{
        font-size: 1rem;
    }
    p{
        font-size: 1rem !important;
    }
    h1 {
        font-size: 2rem !important;
    }

    .career-text{
        padding: 10px !important;
    }

    .about-text{
        padding:  10px !important;
    }

    h2{
        font-size: 2rem !important;
    }
.team-member {
    padding: 20px 11px !important;
}
.service-card {

    padding: 20px 20px !important;
}  
   nav {
        flex-direction: column;
        gap: 20px;
        padding: 7px 10px;
    }
    .nav-links {
        gap: 2px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    /* .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    } */
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
    }

    .footer-links a {
        display: block;
        text-align: center;
    }

    button[type="submit"] {
        width: 100%;
    }

    .map-container {
        height: 350px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 22px;
    }

    .frame-page {
        height: 1800px;
        width: 100%
    }
}

.career-card h6 {
    font-size: 19px;
    color: #FFA800;
    text-transform: uppercase;
    font-weight: bolder;
}

.career-text {
    padding: 40px;
    color: white;
}

.career-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.career-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup.show {
    display: flex;
    /* Display when the 'show' class is added */
}

.popup-inner {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    width: 380px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-inner h3 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.popup-inner input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.popup-inner input:focus {
    border-color: #007bff;
}

.popup-inner button {
    padding: 10px 15px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-inner button:hover {
    background-color: #0056b3;
}

.popup-inner button.close-btn {
    background-color: #dc3545;
}

.popup-inner button.close-btn:hover {
    background-color: #b02a37;
}

.job-accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-details {
    display: none;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(90deg);
    /* Rotates arrow when open */
}

.job-discription {
    list-style-type: disclosure-closed;
    /* 01, 02, 03 */
    padding-left: 70px;
    /* control indentation */
}

.job-discription li {
    line-height: 1.9;
    /* text-indent: 15px; */
}


/* our client  */


.our-clients-section {
    padding: 40px 20px;
    text-align: center;
}

.our-clients h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.underline-oueclient {
    width: 80px;
    height: 4px;
    background: #2563eb;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.clients-slider {
    display: flex;
}

.client-item {
    padding: 10px;
    /* display: flex; */
}

.client-item img {
    max-width: 120px;
    margin: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-item img:hover {
    filter: grayscale(0%);
}


/* Default: show iframe on large screens, hide mainn-grid */
.webview-whychoose {
    display: block;
}

.mainn-grid {
    display: none;
}

/* On mobile (up to 768px for example) */
@media (max-width: 768px) {
    .webview-whychoose {
        display: none;
    }

    .mainn-grid {
        display: grid;
        /* or block if you prefer */
    }
}


/* Right to left */
.fade-right-contact {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRightContact 4s ease forwards;
}

@keyframes fadeRightContact {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-left-contact {
  
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeftContact 4s ease forwards;

}

@keyframes fadeLeftContact {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-up-carrer {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpCarrer 4s ease forwards;
}

/* Keyframes */
@keyframes fadeUpCarrer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up-service {
  opacity: 0;
  transform: translateY(40px); /* start lower */
  animation: fadeUpHero 1s ease forwards;
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0); /* move to normal */
  }
}




.fade-up-services .service-card {
  opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpService 1s ease forwards;
}

@keyframes fadeUpService {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
}
.fade-up-services .service-card:nth-child(1) { animation-delay: 1s; }
.fade-up-services .service-card:nth-child(2) { animation-delay: 2s; }
.fade-up-services .service-card:nth-child(3) { animation-delay: 3s; }
.fade-up-services .service-card:nth-child(4) { animation-delay: 4s; }
.fade-up-services .service-card:nth-child(5) { animation-delay: 5s; }
.fade-up-services .service-card:nth-child(6) { animation-delay: 6s; }
.fade-up-services .service-card:nth-child(7) { animation-delay: 7s; }
.fade-up-services .service-card:nth-child(8) { animation-delay: 8s; }
.fade-up-services .service-card:nth-child(9) { animation-delay: 9s; }


.fade-up-team .team-member{

  opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpteam 1s ease forwards;
}

@keyframes fadeUpteam {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
} 
.fade-up-team .team-member:nth-child(1){animation-delay: 4s;}
.fade-up-team .team-member:nth-child(2){animation-delay: 5s;}
.fade-up-team .team-member:nth-child(3){animation-delay: 6s;}

.fade-right-about .stat-card {
  opacity: 0;
  transform: translateX(40px); /* start from left */
  animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0); /* move to normal */
  }
}

/* stagger delays */
.fade-right-about .stat-card:nth-child(1) { animation-delay: 0.5s; }
.fade-right-about .stat-card:nth-child(2) { animation-delay: 1s; }
.fade-right-about .stat-card:nth-child(3) { animation-delay: 1.5s; }
.fade-right-about .stat-card:nth-child(4) { animation-delay: 2s; }


.fade-left-about{
     opacity: 0;
  transform: translateX(-40px); /* start from left */
  animation: fadeInLeft 1s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0); /* move to normal */
  }
} 


.fade-up-header{
      opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpheader 3s ease forwards;
}

@keyframes fadeUpheader {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
} 


.fade-up-about{
      opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpabout 7s ease forwards;
}

@keyframes fadeUpabout {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
} 


.fade-up-feature .feature-card {
  opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpfeature 1s ease forwards;
}

@keyframes fadeUpfeature {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
}
.fade-up-feature .feature-card:nth-child(1) { animation-delay: 1s; }
.fade-up-feature .feature-card:nth-child(2) { animation-delay: 2s; }
.fade-up-feature .feature-card:nth-child(3) { animation-delay: 3s; }
.fade-up-feature .feature-card:nth-child(4) { animation-delay: 4s; }
.fade-up-feature .feature-card:nth-child(5) { animation-delay: 5s; }
.fade-up-feature .feature-card:nth-child(6) { animation-delay: 6s; }




.fade-up-offer{
      opacity: 0;
  transform: translateY(40px); /* start a bit lower */
  animation: fadeUpoffer 15s ease forwards;
}

@keyframes fadeUpoffer {
  to {
    opacity: 1;
    transform: translateY(0); /* original position */
  }
} 

/* Base animation for service cards */
.fade-up-whychose .service-card {
  opacity: 0;
  transform: translateY(40px); /* start lower */
  animation: fadeUpWhy 1s ease forwards;
}

/* Keyframes */
@keyframes fadeUpWhy {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger effect */
.fade-up-whychose .service-card:nth-child(1) { animation-delay: 0.5s; }
.fade-up-whychose .service-card:nth-child(2) { animation-delay: 1s; }
.fade-up-whychose .service-card:nth-child(3) { animation-delay: 1.5s; }
.fade-up-whychose .service-card:nth-child(4) { animation-delay: 2s; }
.fade-up-whychose .service-card:nth-child(5) { animation-delay: 2.5s; }
.fade-up-whychose .service-card:nth-child(6) { animation-delay: 3s; }


.fade-up-clients{
    opacity: 0;
  transform: translateY(40px); /* start lower */
  animation: fadeUpclient 15s ease forwards;
}

/* Keyframes */
@keyframes fadeUpclient {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}  


.fade-up-testimonals{
    opacity: 0;
  transform: translateY(40px); /* start lower */
  animation: fadeUptestimonial 17s ease forwards;
}

/* Keyframes */
@keyframes fadeUptestimonial {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}  
