@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-overflow-scrolling: touch; 
}

img {
    user-select: none!important;      
    pointer-events: none!important;  
    -webkit-user-drag: none!important;
}

::-webkit-scrollbar {
    border: 1px solid #ccc;
    width: 10px; 
  }
  
  ::-webkit-scrollbar-track {
    background: auto; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: #2387F7; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #1a6dc3;
  }
  
  * {
    scrollbar-color: #2387F7 auto; 
    scrollbar-width: 10px; 
  }

/* Header */

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    transition: box-shadow 0.3s ease;
    z-index: 999;
}

header.scrolled {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

.lefthead a {
    text-decoration: none;
    list-style: none;
}
.lefthead p {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #525252;
}
.lefthead p span {
    color: #2387F7;
}

.righthead a {
    text-decoration: none;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
    color: #525252;
    padding-right: 30px;
    transition: all 250ms;
}

.lasthead a {
    text-decoration: none;
    list-style: none;
    background: #2387F7;
    border-radius: 10px;
    padding: 12px 24px 12px 24px;
    color: #fff;
}
.lasthead a:hover {
    background: #1a6dc3;
}


/* End Header */



    /* ----careers-page---- */

/* ================= CAREERS PAGE ================= */

.careers-hero {
  display: flex;
  padding: 140px 90px 60px;
  align-items: center;
}

.careers-hero-left {
  width: 50%;
}

.careers-hero-left h1 {
  font-size: 48px;
  font-weight: 800;
}

.careers-hero-left h1 span {
  color: #2387F7;
}

.careers-hero-left p {
  font-size: 18px;
  margin: 20px 0 40px;
}

.careers-hero-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.careers-hero-right img {
  max-width: 100%;
}
.image-container {
    position: relative;
    width: 100%; 
    height: 0;
    padding-top: 100%; 
    overflow: hidden;
}
  
.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    animation-iteration-count: infinite;
}
  
  .s1 {
    animation: rotateClockwise 9s linear infinite;
  }
  
  .s2 {
    animation: rotateAntiClockwise 9s linear infinite;
  }
  
  .s3 {
    animation: rotateClockwise 9s linear infinite;
  }
  
  .s4 {
    animation: rotate3D 9s linear infinite;
    z-index: 1; 
  }
  
  @keyframes rotateClockwise {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotateAntiClockwise {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
  }
  
  @keyframes rotate3D {
    from {
      transform: rotateX(0deg) rotateY(0deg);
    }
    to {
      transform: rotateX(0deg) rotateY(260deg);
    }
  }


/* BUTTON */
.careers-btn {
  background: #2387F7;
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.careers-btn:hover {
  background: #1a6dc3;
  transform: translateY(-3px);
}

/* WHY SECTION */
.careers-why {
  padding: 60px 90px;
  text-align: center;
}

.careers-why h2{
    font-size: 45px;
    font-weight: 900;
}

.careers-why h2 span {
  color: #2387F7;
}

.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.careers-why-card {
  background: #fff;
  color: #000;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
}
.careers-why-card h3{
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #333;
}

/* ROLES */
.careers-roles {
  padding: 60px 90px;
}

.careers-roles h2 {
    font-size: 45px;
    font-weight: 900;
}

.careers-roles h2 span {
    color: #2387F7;
}

.career-role-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  margin-top: 20px;
  background: #FBFBFB;
  border-radius: 12px;
  transition: 0.3s;
}
.career-role-card p{
    color: #000;
}

.career-role-card:hover {
  transform: translateY(-5px);
}

.apply-btn {
  background: transparent;
  border: 1px solid #2387F7;
  padding: 10px 22px;
  border-radius: 8px;
  color: #2387F7;
  text-decoration: none;
}

.apply-btn:hover {
  background: #2387F7;
  color: #fff;
}

/* PROCESS */
.careers-process {
  padding: 80px 50px;
  text-align: center;
}

.careers-process h2{
    font-size: 35px;
    font-weight: 900;
}

.careers-process h2 span {
    color: #2387F7;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid #2387F7;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect look */
.process-step.active {
  background: #2387F7;
  color: #fff;
  box-shadow: 0 10px 25px rgba(35, 135, 247, 0.35);
  transform: translateY(-6px);
}

/* Animation keyframes */
@keyframes stepCycle {
  0%, 20% { opacity: 1; }
  25%, 100% { opacity: 0.6; }
}

/* Sequential animation */
.process-step:nth-child(1) {
  animation: highlight1 8s infinite;
}

.process-step:nth-child(2) {
  animation: highlight2 8s infinite;
}

.process-step:nth-child(3) {
  animation: highlight3 8s infinite;
}

.process-step:nth-child(4) {
  animation: highlight4 8s infinite;
}

/* Individual timing */
@keyframes highlight1 {
  0%, 20% { background:#2387F7; color:#fff; transform:translateY(-6px); }
  25%, 100% { background:transparent; color:inherit; transform:none; }
}

@keyframes highlight2 {
  0%, 24% { background:transparent; }
  25%, 45% { background:#2387F7; color:#fff; transform:translateY(-6px); }
  50%, 100% { background:transparent; color:inherit; transform:none; }
}

@keyframes highlight3 {
  0%, 49% { background:transparent; }
  50%, 70% { background:#2387F7; color:#fff; transform:translateY(-6px); }
  75%, 100% { background:transparent; color:inherit; transform:none; }
}

@keyframes highlight4 {
  0%, 74% { background:transparent; }
  75%, 95% { background:#2387F7; color:#fff; transform:translateY(-6px); }
  100% { background:transparent; color:inherit; transform:none; }
}


/* APPLY */
/* ===== Fix Apply Now overlap (Careers page) ===== */

.careers-apply {
  padding: 20px 20px 60px;
  text-align: center;
  position: relative;
}

.careers-apply h2 {
    padding: 10px;
    font-size: 35px;
    font-weight: 900;
}

.careers-apply h2 span {
    color: #2387F7;
}

.careers-apply-action {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.careers-apply .careers-btn {
  position: static !important; /* THIS fixes the overlap */
  transform: none !important;
}


/* MOBILE */
@media(max-width:768px){
  .careers-hero {
    flex-direction: column;
    padding: 120px 20px;
  }
  .careers-hero-left,
  .careers-hero-right {
    width: 100%;
  }
  .careers-why-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
  }
}


/* career-mobile-responsive */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}


/* Header/Nav-bar */

@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }

  .righthead,
  .lasthead {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}
/* careers-hero  */
@media (max-width: 768px) {
  .careers-hero {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .careers-hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .careers-hero-left p {
    font-size: 15px;
  }

  .careers-hero-right {
    margin-top: 30px;
  }
}

/* why work with us  */

@media (max-width: 768px) {
  .careers-why {
    padding: 60px 20px;
  }

  .careers-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .careers-why-card {
    text-align: center;
  }
}


/* open-roles */

@media (max-width: 768px) {
  .careers-roles {
    padding: 60px 20px;
  }

  .career-role-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .career-role-card a {
    width: 100%;
    text-align: center;
  }
}

/* hiring-process */

@media (max-width: 768px) {
  .careers-process {
    padding: 60px 20px;
  }

  .process-steps {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 15px;
    padding-bottom: 10px;
  }

  .process-step {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Apply-CTA */

@media (max-width: 768px) {
  .careers-apply {
    padding: 60px 20px;
    text-align: center;
  }

  .careers-apply p {
    font-size: 15px;
  }

  .careers-btn {
    width: 100%;
    text-align: center;
  }
}


/* POP-UP Form  */
@media (max-width: 768px) {
  .popup-main-container {
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .popup-form-row {
    flex-direction: column;
  }

  .popup-submit-btn {
    width: 100%;
}
}

/* End-Of-Career-mobile-responsive */

/* Footer */

footer {
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    padding: 80px 70px 50px 0px;
    background: linear-gradient(180deg, #000000 0%, #202020 100%);
}
.foot-right-top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    padding-bottom: 30px;
    border-bottom: 1px solid #606582;
}
.foot-right-top a {
text-decoration: none;
list-style: none;
color: #fff;
}
.foot-right-bottom {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 10px;
}
.footer-left {
    width: 16%;
}
.footer-right {
    width: 80%;
}
.social-icons a img {
    cursor: pointer!important;
    margin-left: 30px;
}
.address {
    display: flex;
    align-items: center;
    padding-left: 20px;
    white-space: nowrap;
}
.address p {
    padding-left: 10px;
}
.address p a {
    text-decoration: none;
    list-style: none;
    color: #fff;
}
.menus-foot a {
    text-decoration: none;
    list-style: none;
    color: #fff;
    padding-left: 10px;
}


.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container h3 {
    margin: 0px;
    font-size: 22px;
}
.logo-container h3 span {
    color: #2387F7;
}

.logo-row {
    display: flex;
    justify-content: space-around;

}

.logo-row img {
    max-width: 250px; 
    max-height: 200px; 
    margin: 10px;
    object-fit: contain; 
}

/* Contact Form Popup */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.hidden {
    display: none;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


/* End Contact Form Popup */


/* Dark Mode */

.container {
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 999;
    align-items: center;
    top: 0;
    left: 0;
    padding-left: 30px;
        }
        .rope {
            width: 4px;
            height: 80px;
            background-color: #555;
            position: relative;
            transition: height 0.3s ease;
        }
        .bulb {
            width: 39px;
            height: 50px;
            background-color: #333;
            border-radius: 50% 50% 45% 45%;
            position: relative;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: background-color 0.5s ease, box-shadow 0.5s ease;
        }
        .bulb:hover {
            cursor: pointer;
        }
        .bulb::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 20px;
            background-color: #555;
            border-radius: 50%;
        }
        .bulb::after {
            /* content: ''; */
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 10px;
            background-color: #444;
            border-radius: 5px;
        }
        .rope.stretched {
            height: 180px;
        }
        .bulb.on {
            background-color: #ffeb3b;
            box-shadow: 0 20px 50px rgba(255, 235, 59, 0.7);
        }


        .container-pullhere {
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 998;
            align-items: center;
            top: 0;
            left: 0;
            padding-left: 85px;
            padding-top: 90px;
            }

        .container-pullhere img {
            width: 130px;
            animation: bounce 2s infinite ease-in-out;
        }


        @keyframes bounce {
            0%, 100% {
              transform: translateY(0);
            }
            50% {
              transform: translateY(-15px);
            }
          }


        
        :root {
            --background-light: #fff;
            --background-dark: #1f1f1f;
            --form-background: #fff;
            --text-light: #000;
            --text-dark: #fff;
            --link-hover-light: #2387F7;
            --link-hover-dark: #1a6dc3;
            --lasthead-light: #2387F7;
            --lasthead-dark: #1a6dc3;
            --bullet-light: #000;
            --bullet-dark: #3C3C3C;
            --bullet-active-light: #000;
            --bullet-active-dark: #fff;
            --border-active-dark: #fff;
            --padding-dark-top-bottom: 15px 15px; 
            --padding-dark-top: 80px 0px; 

        }
        body.light-mode {
            --background-color: var(--background-light);
            --text-color: var(--text-light);
            --link-hover-color: var(--link-hover-light);
            --lasthead-bg: var(--lasthead-light);
            --bullet-color: var(--bullet-light);
            --bullet-active-color: var(--bullet-active-light);
        }
        body.dark-mode {
            --background-color: var(--background-dark);
            --text-color: var(--text-dark);
            --text-color-light: var(--text-light);
            --form-back-col: var(--form-background);
            --link-hover-color: var(--link-hover-dark);
            --lasthead-bg: var(--lasthead-dark);
            --bullet-color: var(--bullet-dark);
            --bullet-active-color: var(--bullet-active-dark);
            --border-active-color: var( --border-active-dark);
            --padding-dark-top-bottom-dark: var(--padding-dark-top-bottom);
            --padding-dark-top-dark: var(--padding-dark-top);
        }

        
        
body {
    background-color: var(--background-color);
    color: var(--text-color);
}
body.dark-mode header {
    background-color: var(--background-color);
}
header .lefthead p {
    color: var(--text-color); /* Use dynamic text color */
}
header .righthead a {
    color: var(--text-color); /* Use dynamic text color */
}
.heroleft h1 {
    color: var(--text-color);
}
.heroleft p {
    color: var(--text-color);
}
.herobuttons a:nth-child(2) {
    color: var(--text-color);
    border-color: var(--border-active-dark);
}
.compdigi {
    color: var(--text-color);
}
.erps-databases-left h2, .e-invoising-solution p,
.services-left h2, .othserv h2, .remote-left h2, .what-choose h2,
.whychoose-para, .why-choose h3, .whatourclient h2, .area-left h2,
.iconandtext p {
    color: var(--text-color);
}
.invoicing-left p, .invoicing-right p, .interest-form h3 {
    color: var(--text-color-light);
}
.interest-form {
    background: var(--form-back-col);
}
.interest-form {
    padding: var(--padding-dark-top-bottom-dark);
}
.whatourclient {
padding-top: 80px;
}
/* Light Mode */
body.light-mode {
    --what-choose-background: url('assets/img/whatchoosevector.png');
}

/* Dark Mode */
body.dark-mode {
    --what-choose-background: url('assets/img/whatchoosevectordark.png');
}

body.light-mode .zatcalogoimg img {
    content: url('assets/img/zatcasmartlogo.png');
}
body.light-mode .verifyapproval a {
    color: #2387F7;
}

/* Dark mode image */
body.dark-mode .zatcalogoimg img {
    content: url('assets/img/zatcasmartlogodark.png');
}



@media only screen and (max-width: 786px) { 
    html, body {
        overflow-x: hidden; 
        overflow-y: auto;  
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .container {
        padding-left: 10px;
    }
    header {
        padding: 15px 15px;
        z-index: 9999;
    }
    .righthead {
        display: none;
    }
    .lefthead p {
        font-size: 25px;
    }
    .lasthead a {
        font-size: 12px;
        padding: 7px 10px 7px 10px;
    }
    .rope {
        height: 120px;
    }
    .hero {
        flex-direction: column;
        padding: 100px 0px;
    }
    .heroleft {
        width: 100%;
        padding-inline: 55px;
    }
    .heroright {
        width: 100%;
    }
    .container-pullhere {
        display: none;
    }
    .heroleft h1 {
        font-size: 28px;
    }
    .heroleftpara {
        font-size: 15px;
    }
    .herobuttons a {
        font-size: 12px;
        padding: 10px 12px 10px 12px;
    }
    .compdigi {
        margin-top: 0px;
        font-size: 28px;
    }
    .erps-databases {
        padding: 0px 15px 0px 15px;
        flex-direction: column;
    }
    .erps-databases-right {
        width: 100%;
    }
    .erps-databases-left {
        width: 100%;
    }
    .erps-databases-left h2 {
        font-size: 25px;
        padding-top: 20px;
    }
    .erps-databases-left p {
        font-size: 16px;
    }
    .erps-databases-left a {
        padding: 12px 30px;
        font-size: 15px !important;
    }
    .digitalsolutions {
        padding-inline: 15px;
    }
    .invoicing-main {
        flex-direction: column;
    }
    .invoicing-left, .invoicing-right {
        width: 100%;
        margin-inline: 0px;
        padding: 40px 20px;
        margin-bottom: 20px;
    }
    .invoicing-left h2 {
        font-size: 25px;
    }
    .it-services-cont {
        flex-direction: column;
        padding: 0px 15px 0px 15px;
    }
    .services-left {
        width: 100%;
    }
    .services-right {
        width: 100%;
        padding-top: 70px;
    }
    .services-left h2 {
        font-size: 32px;
    }
    .services-left p {
        font-size: 17px;
    }
    .services-left a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .othserv h2 {
        font-size: 30px;
    }
    .e-invoising-solution p {
        font-size: 25px;
    }
    .invoicing-left p {
        font-size: 16px;
    }
    .invoicing-right h2 {
        font-size: 25px;
    }
    .invoicing-right p {
        font-size: 15px;
    }
    .invo-center a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .remote-attendance {
        padding: 50px 15px 0px 15px;
        flex-direction: column;
        margin-top: 20px;
    }
    .remote-right {
        width: 100%;
    }
    .remote-left {
        width: 100%;
    }
    .remote-left h2 {
        font-size: 32px;
        padding-top: 50px;
    }
    .remote-left p {
        font-size: 16px;
        padding-top: 30px;
    }
    .remote-left a {
        font-size: 15px!important;
        padding: 10px 15px;
    }
    .what-choose {
        margin-top: 50px;
        padding-inline: 15px;
    }
    .what-choose h2 {
        font-size: 32px;
    }
    .whychoose-para {
        font-size: 18px;
    }
    .whatchoose-contain {
        flex-direction: column;
    }
    .whatchoose-box {
        width: 100%;
    }
    .whatchoose-box:nth-child(3) {
        margin-top: 80px;
    }
    .whatchoose-box:nth-child(1) {
        margin-top: 50px;
    }
    .whatourclient h2 {
        font-size: 32px;
    }
    .whatourmain {
        flex-direction: column;
    }
    .whatmainequal {
        width: 100%;
        margin: 30px 0px;
    }
    .mainequalpara  {
        font-size: 15px;
    }
    .oursupport {
        padding: 20px 15px 0px 15px;
    }
    .oursupmain {
        flex-wrap: wrap;
    }
    .supmainbox {
        width: 45%;
        margin: 5px;
    }

    footer {
        padding: 30px 10px 10px 10px;
        display: flex;
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }
    .foot-right-bottom {
        padding-top: 20px;
        flex-direction: column;
        align-items: self-start;
    }
    .menus-foot {
        padding-bottom: 30px;
    }
    .address {
        padding: 10px 0px;
    }
    .social-icons img {
        padding-left: 5px;
    }
    .social-icons {
        width: 40%;
    }
    .content-area {
        padding-inline: 15px;
        flex-direction: column;
        margin-top: 40px;
    }
    .area-left {
        width: 100%;
    }
    .area-right {
        width: 100%;
        padding-inline: 0px;
        margin-top: 50px;
    }
    .area-left h2 {
        font-size: 38px;
    }
    .popup {
        z-index: 99999;
    }
    .verifyapproval p {
        font-size: 12px;
    }
    .verifyapproval p a {
        font-size: 13px;
    }
    /* Mobile Development */
    .mob-hero {
        flex-direction: column!important;
        padding: 0px 10px 0px 50px!important;
    }
    .mob-hero-left {
        width: 100%!important;
        padding-top: 40px!important;
        padding-bottom: 50px!important;
    }
    .mob-hero-left h2 {
        font-size: 27px!important;
    }
    .mob-hero-right {
        width: 100%!important;
    }
    
}




        /* Mobile Application Development */
        .mob-hero {
            width: 100%;
            padding: 0px 80px 0px 90px;
            display: flex;
            justify-content: space-between;
            /* align-items: center; */
            margin-top: 70px;
        }
        .mob-hero-left {
            width: 50%;
            overflow: hidden;
            padding-top: 80px;
        }
        .mob-hero-left h2 {
            font-size: 60px;
            color: var(--text-color);
            line-height: 1.2;
        }
        .mob-hero-left h2 span {
            color: #2387F7;
        }
        .mob-hero-left p {
            color: var(--text-color);
            font-size: 18px;
            padding-top: 10px;
        }
        .mob-hero-right {
            width: 50%;
            display: flex;
            justify-content: right;
            overflow: hidden;
        }
        .mob-hero-right img {
            max-width: 100%;
            width: 100%;
            height: 100%;
            object-fit: fill;
        }
        .mobile-rightbtn {
            margin-top: 40px;
        }
        .mobile-rightbtn a {
            border: 1px solid var(--text-color);
            color: var(--text-color);
            text-decoration: none;
            list-style: none;
            padding: 10px 20px;
            border-radius: 13px;
            font-size: 18px;
        }
        
        
        /* End Mobile Application Development */

        .g-recaptcha {
            padding: 15px 0px;
        }
        
        
        .verifyapproval {
        padding-top: 45px;
        }
        .verifyapproval a {
        color: #fff;
        text-decoration: none;
        list-style: none;
        font-size: 17px;
        font-weight: bold;
        }
        .verifyapproval span {
        font-size: 12px;
        animation: bounce 2s infinite ease-in-out;
        }
        .reachouttoday p {
        padding: 20px 0px;
        }
/* Styling the carousel container */
.carousel {
    position: relative;
    text-align: center;
}

/* Image styling */
.carousel img {
    max-width: 100%;
    height: auto;
}

/* Common styles for arrows */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* Left arrow styling */
.left-arrow {
    left: 0px;
    background-image: url('assets/img/portfolio-websites/left-vector.png');
}

/* Right arrow styling */
.right-arrow {
    right: 0px;
    background-image: url('assets/img/portfolio-websites/right-vector.png');
}




/* Sidebar Menu for mobile */


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  z-index: 1000;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  padding: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2387F7;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  box-shadow: 5px 0 15px rgba(0,0,0,0.1);
  z-index: 1100;
  transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  overflow-y: auto;
}

.mobile-sidebar-menu.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo-container {
  width: 150px;
}

.menu-logo {
  width: 100%;
  height: auto;
}

.mobile-menu-close {
  color: #2387F7;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.sidebar-nav {
  padding: 20px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.mobile-sidebar-menu.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-nav li:nth-child(1) { transition-delay: 0.1s; }
.sidebar-nav li:nth-child(2) { transition-delay: 0.2s; }
.sidebar-nav li:nth-child(3) { transition-delay: 0.3s; }
.sidebar-nav li:nth-child(4) { transition-delay: 0.4s; }
.sidebar-nav li:nth-child(5) { transition-delay: 0.5s; }
.sidebar-nav li:nth-child(6) { transition-delay: 0.6s; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-nav a:hover {
  background-color: rgba(108, 99, 255, 0.1);
  color: #6c63ff;
  transform: translateX(5px);
}

.sidebar-nav ul li a i{
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(108, 99, 255, 0.1);
  color: #2387F7;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #6c63ff;
  color: white;
  transform: translateY(-3px);
}

.copyright {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-sidebar-menu.active + .mobile-menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-sidebar-menu.active + .mobile-menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-sidebar-menu.active + .mobile-menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* hero form */

.contact-form-section {
  max-width: 800px;
  margin: auto;
  padding: 0rem 1rem 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  background: transparent;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0rem;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 3rem;
  flex-wrap: nowrap;
}

.contact-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-group-full {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-input,
.contact-textarea {
  padding: 1.3rem 1rem!important;
  border: none!important;
  background: #f5f1f5;
  border-radius: 4px;
  /*font-size: 0.95rem!important;*/
  color: #2387F7;
  box-shadow: -24.86px -24.86px 49.73px 0 rgba(255, 255, 255, 0.8)!important;
  box-shadow: inset 0 0 31.08px rgba(217, 217, 217, 0.2)!important;
  box-shadow: 20px 20px 28px rgba(225, 225, 230, 0.4) !important;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-button {
  background-color: #2387F7;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #2387F7;
}

@media (max-width: 768px) { 
                .contact-form-section {
                padding: 0px;
                margin-top: 30px;
            }
            .contact-form {
                flex-direction: column;
            }
            .contact-row {
                flex-direction: column;
                gap: 1rem;
            }
}



/*popup*/

/* ==================== */
/* POPUP-SPECIFIC STYLES */
/* ==================== */

/* Namespace all popup classes with 'popup-' prefix */
.popup-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.popup-overlay-container.active {
    opacity: 1;
    visibility: visible;
}

.popup-main-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.popup-overlay-container.active .popup-main-container {
    transform: scale(1);
}

.popup-header-section {
    background: #2387F7;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.popup-header-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.popup-header-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-content-body {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1;
}

.popup-form-group {
    margin-bottom: 20px;
    position: relative;
}

.popup-form-row {
    display: flex;
    gap: 15px;
}

.popup-form-row .popup-form-group {
    flex: 1;
}

.popup-form-input, 
.popup-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #000;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.popup-form-input:focus, 
.popup-form-textarea:focus {
    outline: none;
    border-color: #2387F7;
    box-shadow: 0 0 0 3px rgba(152, 81, 132, 0.1);
    background-color: white;
}

.popup-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.popup-submit-btn {
    background: #2387F7;
    color: white;
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.popup-submit-btn:hover {
    background: #519aee;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(152, 81, 132, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

/* Floating Labels Effect */
.popup-floating-label {
    position: absolute;
    top: 14px;
    left: 16px;
    color: #999;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #f9f9f9;
    padding: 0 5px;
    border-radius: 4px;
}

.popup-form-input:focus + .popup-floating-label,
.popup-form-input:not(:placeholder-shown) + .popup-floating-label,
.popup-form-textarea:focus + .popup-floating-label,
.popup-form-textarea:not(:placeholder-shown) + .popup-floating-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #2387F7;
    background: white;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .popup-main-container {
        max-width: 100%;
        max-height: 95vh;
    }

    .popup-content-body {
        padding: 20px;
    }

    .popup-form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation */
@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.popup-form-group {
    animation: popupFadeIn 0.4s ease forwards;
    opacity: 0;
}

.popup-form-group:nth-child(1) { animation-delay: 0.1s; }
.popup-form-group:nth-child(2) { animation-delay: 0.2s; }
.popup-form-group:nth-child(3) { animation-delay: 0.3s; }
.popup-form-group:nth-child(4) { animation-delay: 0.4s; }
.popup-form-group:nth-child(5) { animation-delay: 0.5s; }
.popup-form-group:nth-child(6) { animation-delay: 0.6s; }
.popup-form-group:nth-child(7) { animation-delay: 0.7s; }
/*end popup*/



.career-role-heading {
    color: #000!important;
}