@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
body{
    overflow-x:hidden;
    font-family: "Lexend", sans-serif !important;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
}
.loader:before,
.loader:after {
    content: "";
    grid-area: 1/1;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-mask:repeating-linear-gradient(#000 0 5px,#0000 0 10px);
    animation: l35 1.5s infinite;
}
.loader:after {
    -webkit-mask:repeating-linear-gradient(#0000 0 5px,#000 0 10px);
    --s:-1;
}
@keyframes l35 {
    0%,
    10% {transform: translate(0) rotate(0)}
    35% {transform: translate(calc(var(--s,1)*50%)) rotate(0)}
    66% {transform: translate(calc(var(--s,1)*50%)) rotate(calc(var(--s,1)*180deg))}
    90%,
    100% {transform: translate(0) rotate(calc(var(--s,1)*180deg))}
}

/* Header */
.large-header {
    position: relative;
    width: 100%;
    background: #333;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    height:100%;
}
.container-work {
    max-width: 1400px;
    margin: 0 auto;
}
.OneImageBg {
    background-image: url("../images/about.png");
}
.TwoImageBg {
    background-image: url("../images/twoo.png");
    background-position: bottom;
}
.ThreeImageBg {
    background-image: url("../images/threee.png");
    background-position: top;
}
.textwhychoos {
    text-align: center;
}
.textwhychoos h1 {
    font-size: 54px;
    padding-bottom: 18px;
}
.textwhychoos p {
    font-size: 18px;
    padding-bottom: 45px;
    width: 72%;
    margin: 0 auto;
}
.onedivwork {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.datahereimg {
    width: 50%;
}
.datahereimg img {
    width: 85%;
}
.body-sect {
    padding: 100px 0 45px 0;
}
.body-sect p{
  font-size: 22px;
}
.textworknew {
    width: 60%;
}
.main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #f9f1e9;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.demo-1 .main-title {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
}
.main-title .thin {
    font-weight: 200;
}
@media only screen and (max-width: 768px) {
    .demo-1 .main-title {
        font-size: 3em;
    }
}

.mybgwork {
    background: rgba(255, 255, 255, 0.292);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.8px);
    -webkit-backdrop-filter: blur(2px);
    padding: 6px 5px;
    border-radius: 9px;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  /* margin-top: 50px; */
}

.flip-btn {
    position: relative;
    width: 130px;
    height: 50px;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    text-decoration: none;
    display: inline-block;
}

.flip-btn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 50px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 30px;
  text-transform: cap;
  color: #fff;
  transition: 1s;
  text-align: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.flip-btn .front,
.flip-btn .back {
  background: rgba(255, 255, 255, 0.05);
}

.flip-btn .front {
  transform: rotateX(0deg) translateZ(20px);
}

.flip-btn .back {
  transform: rotateX(180deg) translateZ(20px);
}

.flip-btn .center {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Blue Gradient */
}

.flip-btn .center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00c6ff, #0072ff); /* Lighter blue gradient for depth */
  border-radius: 30px;
  transform: translateZ(-1px);
}

.flip-btn:hover .front {
  transform: rotateX(-180deg) translateZ(20px);
}

.flip-btn:hover .back {
  transform: rotateX(0deg) translateZ(20px);
}

.flip-btn:hover .center {
  transform: rotateX(-180deg);
}
.welcome-box {
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    width: 32%;
    margin: 12px 5px;
}

.welcome-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12); 
    border-color: linear-gradient(135deg, #00c6ff, #0072ff);
}


.welcome-box:hover .welcome-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background:linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.newbottom {
    padding-bottom: 58px;
}
.fullboxhere {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.myboxes {
    padding-bottom: 70px;
}
.welcome-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.welcome-box:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}





.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 3.2em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    animation: fadeInSlideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: expandLine 1.2s ease-out forwards;
    animation-delay: 0.5s;
    transform: scaleX(0);
}

.section-tagline {
    font-size: 1.3em;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* --- Hero Section --- */
.work-with-us-hero {
    background: linear-gradient(135deg, #a7d9f7 0%, #6495ED 100%); /* Light blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Optional: Add a subtle texture or pattern for more aesthetic feel */
    /* background-image: url('data:image/svg+xml,...'); */
    /* background-size: cover; */
}

.work-with-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.work-with-us-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInSlideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-tagline {
    font-size: 1.6em;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.cta-button {
    /* Reusing amazing-button styles, ensure it's loaded */
    padding: 18px 40px;
    font-size: 1.2em;
    animation: pulse 2s infinite ease-in-out;
}

/* --- Culture Section --- */
.culture-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.culture-item {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.culture-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.culture-item .icon-large {
    font-size: 3.5em;
    color: #fff; /* Cornflower blue */
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
}

.culture-item:hover .icon-large {
    transform: rotateY(15deg) scale(1.1);
}

.culture-item h1 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 10px;
}

.culture-item p {
    font-size: 1em;
    color: #fff;
}

/* --- Benefits Section --- */
.benefits-section {
    background: linear-gradient(180deg, #e6f7ff 0%, #f0f8ff 100%); /* Reverse light blue gradient */
    padding: 80px 0;
}

.benefits-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    border-bottom: 5px solid transparent;
    /* width: 28%; */
    height: 250px;
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-image: linear-gradient(135deg, #00c6ff, #0072ff) 1; /* Gradient border on hover */
}

.benefit-icon {
    font-size: 3em;
    color: #87CEEB; /* Sky blue */
    margin-bottom: 15px;
    transition: color 0.3s ease-out;
}

.benefit-card:hover .benefit-icon {
    color: #fff; /* Deeper blue on hover */
}

.benefit-card h1 {
    font-size: 1.3em;
    color: #34495e;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95em;
    color: #666;
}

/* --- Team Showcase Section --- */
.team-showcase-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.team-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 900px; /* Constrain grid width */
    margin: 0 auto;
}

.team-img {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out;
    border: 3px solid transparent; /* For border animation */
}

.team-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: #87CEEB; /* Light blue border on hover */
}

.team-img.large-img {
    grid-column: span 2; /* Make some images span more columns */
    height: 250px;
}

.team-img.small-img {
    height: 150px;
}

/* --- Open Positions Section --- */
.positions-section {
    background: linear-gradient(180deg, #e6f7ff 0%, #f0f8ff 100%); /* Consistent gradient background */
    padding: 80px 0;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.job-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out;
    border-left: 5px solid #3148f7ba; /* Left border for accent */
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #6495ED; /* Deeper blue on hover */
}

.job-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
}

.job-meta {
    font-size: 0.95em;
    color: #777;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-meta i {
    margin-right: 5px;
    color: #87CEEB;
}

.no-positions-message {
    font-size: 1.1em;
    color: #555;
    margin-top: 40px;
}

.no-positions-message .text-link {
    color: #6495ED;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-out;
}

.no-positions-message .text-link:hover {
    color: #2575fc;
    text-decoration: underline;
}

/* --- Recruitment Process Section --- */
.recruitment-process-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    padding: 20px;
    text-align: center;
    max-width: 250px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease-out;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
}
h1.welcome-box-title {
    font-size: 24px;
    font-weight: bold;
}
.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.process-step h1 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95em;
    color: #fff;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .process-steps {
        position: relative;
        padding-top: 50px;
    }
    .process-steps::before {
        display: block;
    }
    .process-step {
        z-index: 1;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
}


/* --- Animations --- */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
    50% { transform: scale(1.02); box-shadow: 0 12px 20px rgba(0,0,0,0.3); }
    100% { transform: scale(1); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5em; }
    .hero-tagline { font-size: 1.4em; }
    .section-title { font-size: 2.8em; }
    .section-tagline { font-size: 1.2em; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3em; }
    .hero-tagline { font-size: 1.3em; }
    .culture-grid, .benefits-grid, .job-listings, .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .team-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .team-img.large-img { grid-column: span 1; height: 180px;}
}

@media (max-width: 768px) {
    .work-with-us-hero { padding: 80px 0 60px; }
    .hero-title { font-size: 2.5em; }
    .hero-tagline { font-size: 1.1em; }
    .section-title { font-size: 2.2em; }
    .section-tagline { font-size: 1em; }
    .culture-grid, .benefits-grid, .job-listings {
        grid-template-columns: 1fr; 
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .process-steps::before {
        display: none; 
    }
    .process-step {
        width: 100%;
        max-width: 300px;
        box-shadow: none;
    }
    .team-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .team-img { height: 150px; }
    .team-img.small-img { height: 120px; }
}

@media (max-width: 480px) {
    .work-with-us-hero { padding: 60px 0 40px; }
    .hero-title { font-size: 2em; }
    .hero-tagline { font-size: 0.9em; }
    .cta-button { padding: 15px 30px; font-size: 1.1em; }
    .section-title { font-size: 1.8em; }
    .section-tagline { font-size: 0.9em; }
    .culture-item, .benefit-card, .job-card { padding: 20px; }
    .culture-item .icon-large, .benefit-icon { font-size: 3em; }
    .culture-item h3, .benefit-card h4 { font-size: 1.3em; }
    .job-title { font-size: 1.3em; }
    .process-step h3 { font-size: 1.2em; }
    .step-number { width: 50px; height: 50px; font-size: 1.8em; }
}

.nav-statica {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    background-color: transparent; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-sizing: border-box; 
}

.nav-statica.sticky {
    position: fixed;
    background-color: rgb(255 255 255 / 72%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}

.nav-statica img.mybgwork {
    transition: height 0.3s ease-in-out;
    height: 62px;
    object-fit: cover;
}

.nav-statica.sticky img.mybgwork {
    height: 60px; /* Slightly smaller logo when sticky */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-statica {
        flex-direction: column;
        padding: 1rem;
        align-items: flex-start;
    }
    .button-groupss {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    .flip-btn {
        width: 100%;
        text-align: center;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px; /* Pill shape */
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 114, 255, 0.45);
}

.cta-button i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease-out;
}

.cta-button:hover i {
    transform: translateX(5px);
}
abbr {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  pointer-events: none;
  animation: animate 2s linear forwards;
}

@keyframes animate {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y));
  }
}



/*Work With Us*/
/*Work With Us*/
.expertise-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #e6f7ff 0%, #f0f8ff 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    border-bottom-color: #0072ff;
}

.expertise-card .expertise-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.expertise-card i {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0;
}

.expertise-card h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.expertise-card p {
    color: #777;
    line-height: 1.7;
}

.expertise-gradient-btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transition: all 0.3s ease;
    border: none;
}

.expertise-gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: #fff;
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center;
}

.expertise-gradient-btn:hover::before {
    transform: scale(0);
}

.expertise-gradient-btn:hover {
    color: #0072ff;
}

/* --- */

/* Image & Text Sections */
.image-text-block {
    padding: 100px 0;
    background-color: #fff;
}

.image-text-row-unique {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
}

.image-text-row-unique:nth-child(even) {
    flex-direction: row-reverse;
}

.image-col-unique, .text-col-unique {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
}

.image-col-unique img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.text-col-unique h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-col-unique p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* --- */

/* Process Flow Section */
.process-flow-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

.process-flow-unique {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
}

.process-flow-unique::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 2px;
}

.process-step-item-unique {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-icon-unique {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #fff;
    border: 5px solid #00c6ff;
    border-radius: 50%;
    font-size: 3rem;
    color: #0072ff;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step-item-unique:hover .step-icon-unique {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-color: #fff;
    color: #fff;
    transform: scale(1.1);
}

.process-step-item-unique h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.process-step-item-unique p {
    color: #777;
}

/* --- */

/* Testimonials Section (Slider) */

/* CTA Banner */
.cta-unique-banner {
    background: #2c3e50;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.cta-unique-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.cta-unique-banner p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.cta-unique-button {
    background-color: #fff;
    color: #2c3e50;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-unique-button:hover {
    background-color: #f0f4f8;
    transform: translateY(-5px);
}
/* --- */

.services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
}
.services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
}
.services-icon {
    font-size: 90px;
    position: relative;
    bottom: 40px;
    color: #35404e;
}
.services-icon-wrap {
    width: 45%;
    height: 60%;
}
.mytextss h4 {
    font-size: 24px;
    font-weight: 700;
}
.services .col-lg-10 .row .col-lg-6:last-child,
.projects .col-lg-4:last-child {
    margin-bottom: 0;   
}

.services-thumb:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.myActiveService {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.myActiveService .services-icon-wrap {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    /* border-color: var(--ThemeColor); */
    color: #fff !important;
}
.services-thumb:hover .services-icon-wrap {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-color: var(--ThemeColor);
    color:#fff;
}
.services-thumb {
    background: #fff;
    border: 2px solid #eaebed;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px !important;
    padding: 40px 40px 240px 40px;
    transition: all 0.5s;
    height: 90%;
}
.services-thumb:hover i{
    color: #fff;
}
.custom-btn {
    background: transparent;
    border-radius: 100px;
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border: 3px solid #000;
}
.custom-btn, .navbar .custom-btn {
    font-size:18px;
    font-weight: bold;
}
.services-icon-wrap {
    border: 1px solid #e4ddddee;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    transform: rotate(-35deg) translateY(55px);
    transition: all ease 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .head-sec h1 {
        font-size: 3rem;
    }
    .head-sec p {
        font-size: 1.2rem;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .process-flow-unique {
        flex-direction: column;
        padding-top: 0;
    }
    .process-flow-unique::before {
        top: 10%;
        left: 50%;
        right: auto;
        bottom: 10%;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }
    .process-step-item-unique {
        margin-bottom: 40px;
    }
    .image-text-row-unique {
        flex-direction: column;
    }
    .image-text-row-unique:nth-child(even) {
        flex-direction: column;
    }
    .image-col-unique {
        margin-bottom: 30px;
    }
    .image-col-unique, .text-col-unique {
        padding: 0 15px;
    }
}
/*Work With Us*/
/*Work With Us*/


/*Page*/
.cover {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: -100vw;
  z-index: 1000;
}
.transition.slide .cover1 {
  background-color: skyblue;
  animation: slide 0.3s ease-in-out forwards;
}
.transition.slide .cover2 {
  background-color: teal;
  animation: slide 0.3s ease-in-out forwards;
  animation-delay: 0.3s;
}
.transition.slide .cover3 {
  background-color: #094992;
  animation: slide 0.3s ease-in-out forwards;
  animation-delay: 0.6s;
}
@keyframes slide {
  from {
    left: -100vw;
  }
  to {
    left: 0;
  }
}
/*Page*/
#sound-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffffcc;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

#sound-toggle i {
  font-size: 20px;
  color: #333;
}