@import url("https://fonts.googleapis.com/css2?family=Alata&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
    --primary-color: #FF6600;
    --secondary-color: white;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #00001E !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(0deg, #fff, #8a2be2, #ff63477a, #f0e68c);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

a {
    color: white !important;
}

p {
    margin: 0 !important;
}

a:hover {
    color: var(--primary-color) !important;
    transition: all 0.3s ease-in-out;
}

h1 {
    margin: 0;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: 'Montserrat';
    font-size: 16px;
    color: white;
    user-select: none;
    background-image: url('assets/hero-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Section */
section {
    padding: 5rem 0;
    min-height: 100vh;
    perspective: 1000px;
    display: flex;
    align-items: center;
    transition: background-position 1s ease;
}


.section-tag {
    display: inline-block;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 2px solid rgba(255, 255, 255);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-family: 'Montserrat';
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, #fff, #8a2be2, #ff63477a, #f0e68c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientAnimation 6s linear infinite;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.section-header img {
    transition: all 0.3s ease;
}

.section-header img:hover {
    transform: translateY(-5px);
}

.section-subtitle {
    color: #94a3b8;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

/* Preloader Starts */
#preloader {
    position: fixed;
    left: 0%;
    right: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

#preloader.hide {
    height: 0%;
    top: -50%;
}

.preloader-inner {
    position: absolute;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#preloader.hide .preloader-inner {
    opacity: 0;
    visibility: hidden;
}

#preloader img {
    height: 100%;
    width: 400px;
}

/* Preloader Ends */

/* Navbar Starts */
.navbar {
    padding: 1rem 2rem;
    width: 100%;
    transition: all 1s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.5rem;
    margin: 0 0.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    border-radius: 30px;
    border: 1px solid transparent !important
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link.active::after {
    transform: scaleX(1);
}


/* Navbar Ends */

/* Buttons Start */
.btn {
    border: 1px solid transparent !important;
    border-radius: 100px !important;
    padding: 0.5rem 2rem !important;
    font-weight: 600 !important;
    color: white;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

.btn::before,
.work-card:hover a::before,
.bubble-certified::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before,
.owl-carousel .owl-item.active.center:hover a::before,
.bubble-certified:hover::before {
    left: 100%;
    transition: left 0.3s ease-in-out;
}

.btn-nav {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    align-items: center !important;
}

.btn-nav:hover {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;

}

.btn-nav.mobile {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.btn-nav.mobile:hover {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}


.btn-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.btn-primary:hover {
    border: 1px solid white !important;
    color: white !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.contact-section .btn-secondary {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}


/* Buttons End */

/* Logo Starts */
.logo {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

/* Logo Ends */

/* Hero Starts */
.hero {
    position: relative;
    align-items: center;
    min-height: 100vh;
}

.hero-heading {
    line-height: 1.2;
    margin-bottom: 1rem;
}


.hero-medal-inner img {
    width: 70px;
}

.hero-d {
    width: 23px;
}

.hero-medal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-medal-tag-1 {
    background-color: #C0C0C0;
    color: black;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-medal-tag-2 {
    background-color: #ffe38c;
    color: black;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-medal-tag-3 {
    background-color: #108A00;
    color: white;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-medal-tag-4 {
    background-color: #F2C94B;
    color: black;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-medal-text {
    line-height: 1;
    font-size: 17px;
    font-weight: 600;
}

.radar {
    position: absolute;
    width: 90%;
    margin-inline: auto;
    aspect-ratio: 1/1;
    inset: 0;
    border-radius: 50%;
    background-color: white;
    opacity: 0.65;
    z-index: -1;
    animation: bg-waves 3s linear infinite forwards;
    top: 0;
    left: 0;
    opacity: 0;
}

.radar:before,
.radar:after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    inset: 0;
    border-radius: 50%;
    background-color: white;
    opacity: 0.65;
    z-index: -1;
    animation: bg-waves 3s linear infinite forwards;
    top: 0;
    left: 0;
    opacity: 0;
}

@keyframes bg-waves {
    0% {
        scale: 0.5 0.5 1;
        opacity: 0;
    }

    50% {
        background-color: #3B166D;
        opacity: 0.5;
    }

    100% {
        scale: 1 1 1;
        opacity: 0;
        background-color: #0B0023;
    }
}

.orbit {
    position: absolute;
    width: 90%;
    margin-inline: auto;
    width: 100%;
    aspect-ratio: 1/1;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    animation: radar-rotate 30s linear infinite forwards;
    z-index: -1;
}

.orbit:before,
.orbit:after {
    content: "";
    width: 20px;
    aspect-ratio: 1/1;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    translate: 0 -50%;
}

.orbit:after {
    translate: 0 calc(50% + 1px);
    bottom: 0;
    top: auto;
}

@keyframes radar-rotate {
    100% {
        transform: rotate(360deg) rotateZ(0);
    }
}

.tilt-img,
.tilt-img img {
    border-radius: 150px;
    cursor: pointer;
}

.hero>*,
section,
.bg-video-container,
body>* {
    position: relative;
    z-index: 2;
}

.hero-img {
    animation: fadeInRight 1s forwards;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    left: 20%;
    transform: translateX(-50%);
}

.hero-img img {
    box-shadow: -4px 4px 20px rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    opacity: 0.8;
}

.about-vid {
    animation: fadeInRight 1s forwards;
    padding: 0;
    position: absolute;
    transform: translate(-30%, -3%) !important;
}

.about-vid video {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.rocket-container {
    bottom: 5%;
    width: 40px;
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
}

.hover-text {
    position: absolute;
    transform: translate(30%, -150%);
    bottom: 5%;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: none;
    white-space: nowrap;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Ends */

/* Marquee Starts */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.logo-img {
    flex-shrink: 0;
    height: 50px;
    margin: 0 40px;
    mix-blend-mode: multiply;
    filter: brightness(0) invert(1) contrast(2) grayscale(1);
}

.logo-5 {
    filter: invert(1) contrast(2) grayscale(1);
}

/* Marquee Ends */

/* Process Section Starts */
.process-section {
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.step-container {
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* .step-container:hover {
    transform: translateY(-5px);
} */

.step-line {
    position: absolute;
    top: 30px;
    left: 50%;
    right: -50%;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(235, 191, 159, 1) 0%,
            rgba(67, 188, 209, 1) 100%);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(67, 188, 209, 0.4),
        0 0 5px rgba(235, 191, 159, 0.4);
}

.step-point-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    z-index: 2;
}

.step-point {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B0023 0%, #120530 33%, #1E0B45 66%, #3B166D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step-point img {
    width: 30px;
    height: auto;
    transition: all 0.8s ease;
}

.step-point::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B166D, transparent);
    z-index: -1;
    transition: all 0.3s ease;
}

.step-content {
    padding: 30px 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    transition: all 0.3s ease;
    flex: 1;
    overflow: hidden;
}

.step-content:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px #3c166d61;
}

.step-number {
    font-size: 14px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.03);
    width: fit-content;
    padding: 2px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-title {
    font-size: 24px;
    margin: 15px 0 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.5px;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 300;
}

.step-container:hover .step-point img {
    transform: scale(1.5);
}

.step-container:hover .step-point::before {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    opacity: 0.8;
}

.step-content:hover .shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

/* Process Section Ends */


/* About Us Starts */
.about-section {
    position: relative;
    overflow: hidden;
}

.aboutus-cards {
    row-gap: 100px;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6) !important;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
    text-align: justify;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.feature-card {
    width: 100%;
    border-radius: 24px;
    padding: 20px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 1;
    clip-path: polygon(30% 0%, 70% 0, 100% 100%, 0 100%);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -20x;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 110%;
    background: radial-gradient(circle at top,
            rgba(255, 255, 255, 1) 0%,
            rgba(138, 43, 226, 1) 30%,
            rgba(0, 102, 255, 1) 60%,
            rgba(0, 51, 128, 1) 75%,
            rgba(0, 0, 0, 1) 90%);
    clip-path: polygon(30% 0%, 70% 0, 100% 100%, 0 100%);
    border-radius: 50% 50% 10px 10px;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.8s ease-in-out;
}

.feature-card:hover::before {
    opacity: 0.4;
}

.black-layer {
    background-color: rgba(0, 0, 0, 0.3);
    height: 352px;
    width: 352px;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    left: 50%;
    clip-path: ellipse(32% 50% at 50% 20%);
    top: -60%;
    transform: translateX(-50%);
}

.feature-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.feature-icon img {
    width: 100px;
    height: 100px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    width: 75%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Us Ends */

/* Our Culture Starts */
.bubble-certified {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 8px 20px;
    cursor: pointer;
    overflow: hidden;
    width:fit-content;
}

.bubble-certified:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble-certified img {
    height: 20px;
}

.bubble-certified img:hover {
    transform: none;
}

.bubble-certified p {
    height: 20px;
    line-height: 21px;
    font-size: 14px;
}

.core-values {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon img {
    height: 100px;
    width: auto;
    transition: all 0.6s ease;
}

.value-card:hover img {
    scale: 1.1;
}

.value-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Team Testimonials Styles */

#team .testimonial-card {
    justify-content: flex-start;
}

.team-testimonials-title {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 0.3rem 1.5rem;
    font-weight: 600;
}

.culture-profile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.culture-profile img {
    border-radius: 15px;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.culture-profile-1 img {
    object-position: center 0;
}

.culture-profile-2 img {
    object-position: center 10%;
}

.culture-profile-4 img {
    object-position: center 0;
}

.join-our-team {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.join-our-team p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Our Culture Ends */

/* Services Starts */
.decoration {
    position: absolute;
    pointer-events: none;
}

.decoration-3 {
    width: 130px;
    top: 50%;
    right: 26%;
    opacity: 0.6;
    z-index: -1;
}

.decoration-4 {
    bottom: 5%;
    width: 40px;
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.service-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    cursor: pointer;
    overflow: hidden;
    align-items: center;
    gap: 10px;
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem;
}

.service-icon img {
    width: 100px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.service-benefits {
    margin-top: 1rem;
    text-align: left;
}

/* Services Ends */

/* Our Work Starts*/
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.works-grid a {
    text-decoration: none;
    color: white;
}

.work-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
    transform-style: preserve-3d;
    transform: perspective(1000px);
    display: flex;
    flex-direction: column;
}

.work-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(249, 115, 22, 0.1),
            rgba(255, 255, 255, 0.03));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owl-carousel .owl-item.active.center .work-card:hover::before {
    opacity: 0.4;
}

.work-vid {
    width: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 1.5rem 1.5rem 0 0;
}

.work-vid video {
    border-radius: 1.5rem 1.5rem 0 0;
}

.work-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.work-description {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Our Work Ends*/

/* Tools Starts */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: auto auto;
    margin-bottom: 3rem;
    place-items: center;
}

.tool-item {
    opacity: 0;
    transform: translateY(20px);
    place-items: center;
    width: fit-content;
}

.tool-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: fill;
}

.tool-circle {
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tool-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
    transition: all 0.3s ease;
}

.tool-circle:hover {
    transform: translateY(-5px);
}

.tool-circle:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.tool-name {
    font-size: 1rem;
    color: #fff;
    margin-top: 0.5rem;
}

.more-tools {
    color: #888;
    font-size: 1.1rem;
    opacity: 0;
    text-align: center;
}

.more-count {
    color: #ff5714;
    font-weight: bold;
}

/* Tools Ends */

/* Testimonials Starts */
.testimonial {
    text-align: center;
    padding: 1rem 0;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    align-items: center;
    justify-content: space-around;
    padding: 1.5rem !important;
}

.img-card img {
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    mix-blend-mode: multiply;
    filter: invert(1) grayscale(1) contrast(2);
}

.stars {
    color: gold;
    font-size: 18px;
    margin-bottom: 5px;
}

.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile img {
    width: 50px !important;
    height: 50px;
    border-radius: 25px;
    margin-bottom: 5px;
    object-fit: cover;
}

.owl-carousel .owl-item {
    cursor: pointer;
}

.owl-carousel .owl-item .card {
    padding: 15px;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-top: 20px;
    padding-bottom: 30px;
}

.owl-carousel .owl-item .card .name {
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.owl-carousel .owl-item .card {
    opacity: 0.7;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.owl-carousel .owl-item .work-card {
    opacity: 0.7;
    transform: scale3d(0.9, 0.9, 0.9);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.owl-carousel .owl-item.active.center .card,
.owl-carousel .owl-item.active.center .work-card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff !important;
    transition: all 1s ease-in-out;
}

/* Testimonials Ends */

/* FAQ Section start */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion {
    width: 100%;
}

.accordion-item {
    width: 100%;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 15px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: none;
    color: white;
    font-weight: 600;
    line-height: 1;
    transition: color 0.3s ease, background 0.3s ease;
}

.accordion-button:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-image: none;
}

.accordion-button:not(.collapsed) {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* FAQs Section end*/

/* Contact Starts */
.contact-section .container {
    gap: 5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
}

.form-floating label {
    padding: 1rem;
}

.form-floating input,
.form-floating textarea {
    padding-left: 1rem !important
}

.form-floating textarea {
    resize: none;
    transition: height 0.3s ease-in-out;
}

.form-floating textarea:focus {
    height: 100px;
}

.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after {
    background-color: transparent;
}

.contact-section .btn-secondary {
    padding: 0.6rem !important;
}

/* Contact Ends */

/* Footer Starts */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.footer-column {
    z-index: 2;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.social-icons img:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-brand {
    width: 200px;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    position: relative;
    z-index: 2;
}

/* Footer Ends */

.contact-section,
.footer,
.footer-top {
    position: relative;
    z-index: 1;
}

/* Privacy Policy & Terms Starts */
.privacy-banner,
.terms-banner {
    position: relative;
    border-radius: 15px;
    height: 120px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.privacy-content,
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
}

.privacy-content ul li,
.terms-content ul li {
    position: relative;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
    padding-left: 0.5rem;
}

.privacy-content ul li::before,
.terms-content ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    font-size: 1.2em;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #8a2be2, #ff63477a, #f0e68c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Privacy Policy & Terms Ends */

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.whatsapp-penguin {
    width: 100px;
    height: 100px;
}

.whatsapp {
    box-shadow: 0 0 30px #8a2be2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.whatsapp img {
    transition: all 0.5s ease;
}

.whatsapp img:hover {
    scale: 1.1;
}

/* Get a Quote Starts */

/* Active tab style */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px;
    align-items: center;
}

.tab {
    flex: 1;
    padding: 8px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 25px;
    color: #ffffff;
    border: 1px solid transparent;
    transition: all 0.1s ease;
}

.tab.active {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tab-content {
    display: none;
    animation: slideIn 1s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* New App */
.arrow-banner {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    position: relative;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 15px;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    text-align: center;
    max-width: 600px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.arrow-banner:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
}

.card-pricing {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-align: center;
    padding: 2rem 0.8rem;
    height: 165px;
    transition: all 0.3s ease;
}

.card-pricing:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-pricing.active {
    border-bottom: 4px solid #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 6px 10px rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.card-pricing img {
    width: auto;
    height: 60px;
    margin-bottom: 1rem;
}

/* Existing App */
.arc-container {
    position: relative;
    max-width: 700px;
    margin: 100px auto auto auto;
    text-align: center;
    color: #fff;
}

.arc-container h2 {
    font-weight: 500;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, 100%);
    font-size: 1.2rem;
}

.arc {
    width: 100%;
    padding: 100px;
}

.circle-group {
    position: absolute;
    text-align: center;
}

.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-icon img {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
}

.circle-icon:hover img {
    transform: scale(1.2);
}

.circle-label {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
}

.performance-group {
    position: absolute;
    top: 185px;
    left: -10px;
}

.feature-group {
    position: absolute;
    top: 20px;
    left: 65px;
}

.bug-group {
    position: absolute;
    top: -50px;
    left: 295px;
}

.ui-ux-group {
    position: absolute;
    top: 20px;
    right: 65px;
}

.third-party-group {
    position: absolute;
    top: 185px;
    right: 0;
}

@media screen and (max-width: 768px) {
    .circle-icon {
        width: 60px;
        height: 60px;
    }

    .circle-label {
        font-size: 14px;
    }

    .performance-group {
        top: 150px;
        left: 0;
    }

    .feature-group {
        top: 10px;
        left: 30px;
    }

    .bug-group {
        top: -40px;
        left: 200px;
    }

    .ui-ux-group {
        top: 10px;
        right: 30px;
    }

    .third-party-group {
        top: 150px;
        right: 0;
    }
}

@media screen and (max-width: 480px) {
    .circle-icon {
        width: 50px;
        height: 50px;
    }

    .circle-label {
        font-size: 12px;
    }

    .performance-group {
        top: 130px;
        left: 0;
    }

    .feature-group {
        top: 5px;
        left: 20px;
    }

    .bug-group {
        top: -30px;
        left: 150px;
    }

    .ui-ux-group {
        top: 5px;
        right: 20px;
    }

    .third-party-group {
        top: 130px;
        right: 0;
    }
}

/* Audit */
.audit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.8s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
}

.audit-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.25);
    transform: rotateX(20deg);
}

.audit-card img {
    width: 100px;
    transition: all 0.8s ease;
}

.audit-card:hover img {
    transform: scale(1.1);
}



/* Project Pricing Starts */
/* Steps */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 78px;
}

.stepper li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    z-index: 2;
    height: 35px;
    border: 2px solid #d17a2e;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    color: #d17a2e;
    font-weight: bold;
    transition: 0.3s;

}

.stepper li.active {
    background-color: #d17a2e;
    color: white;
    border-color: white;
}

.stepper li.completed {
    background-color: #d17a2e;
    color: white;
}

.stepper li.completed::before {
    content: "✔";
    color: white;
    position: absolute;
}

.stepper li:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #d17a2e;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

/* Questions */
.questions {
    max-width: 1000px;
    margin: 0 auto;
}

.question-block {
    display: none;
    margin-top: 2rem;
}

.question-block.active {
    display: block;
}

.question-block>div {
    margin: 0.8rem 0;
}

.option-label {
    font-weight: 600;
    margin-left: 0.5rem;
}

.form-check-input:checked {
    background-color: #f7931e;
    border-color: #f7931e;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:not(:checked) {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #f7931e;
}

#other-input {
    display: none;
    margin-top: 0.5rem;
}

#total {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

/* Project Pricing Ends */

/* Get a Quote Ends */

/* Toast */
.toast-container {
    top: 85px;
}

.toast {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Career Starts */
.career-hero {
    background-image: url('assets/career-bg.jpg');
    background-size: cover;
    border-radius: 20px;
}

.career-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 252, 252, 0.25);
    transition: all 0.3s ease;
    border-radius: inherit;
    text-align: center;
    backdrop-filter: blur(5px);
    width: 100%;
    padding: 20px;
    min-height: calc(100vh - 100px);
}

/* Hiring Process */
.hiring-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.process-circle-inner {
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.process-circle {
    position: relative;
    width: 350px;
    height: 350px;
    padding: 40px;
    border: 3px dashed #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-content {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;

}

.circle-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease;
}

.icon img {
    width: 60px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon img:hover {
    transform: scale(1.1);
}

.icon-1 {
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #ffa500;
}

.icon-2 {
    top: -12%;
    right: -12%;
    border: 5px solid #ff4d4d;
}

.icon-3 {
    top: 50%;
    right: -30%;
    transform: translateY(-50%);
    border: 5px solid #00bfff;
}

.icon-4 {
    bottom: -12%;
    right: -12%;
    border: 5px solid #1e90ff;
}

.icon-5 {
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #00ff7f;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border: 2px solid white;
}

.step-icon-1 {
    background-color: #ffa500;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.step-icon-2 {
    background-color: #f00;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.step-icon-3 {
    background-color: #00bfff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.step-icon-4 {
    background-color: #1e90ff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.step-icon-5 {
    background-color: #00ff7f;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.title-1 {
    color: #ffa500;
}

.title-2 {
    color: #f00;
}

.title-3 {
    color: #00bfff;
}

.title-4 {
    color: #1e90ff;
}

.title-5 {
    color: #00ff7f;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hiring-process .step-content {
    margin: 0;
    cursor: pointer;
    padding: 20px 25px;
}

.hiring-process .step-content h3 {
    font-size: 1.1rem;
    margin: 0;
}

.hiring-process .step-content p {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 0.5rem !important;
}

.tech-stack-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.tech-stack-title {
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
}

.tech-stack-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-stack-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    padding: 6px 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.tech-stack-icons:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-stack-icons img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
}

/* Current Openings */
.job-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    height: 100%;
    transition: all 0.3s ease;
    gap: 10px;
    justify-content: space-between;
}

.job-tag {
    width: fit-content;
    padding: 0.3rem 0.8rem;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

.job-tag.tag-1 {
    background-color: rgba(30, 136, 229, 0.2);
    color: rgba(30, 136, 229);
}

.job-tag.tag-2 {
    background-color: rgba(46, 125, 50, 0.2);
    color: rgba(46, 125, 50);
}

.job-tag.tag-3 {
    background-color: rgba(142, 68, 173, 0.2);
    color: rgba(142, 68, 173);
}

.job-tag.tag-4 {
    background-color: rgba(211, 47, 47, 0.2);
    color: rgba(211, 47, 47);
}

.job-tag.tag-5 {
    background-color: rgba(245, 124, 0, 0.2);
    color: rgba(245, 124, 0);
}

.job-tag.tag-6 {
    background-color: rgba(229, 30, 176, 0.2);
    color: rgba(229, 30, 176);
}

.job-icon {
    width: 80px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.job-desc {
    color: rgba(255, 255, 255, 0.7);
}

.job-footer img {
    width: 35px;
    height: 35px;
}

.job-footer p {
    font-weight: 600;
}

/* Career Ends */

.js-tilt-glare-inner {
    background-image: linear-gradient(45deg, #fff, #8a2be2, #ff63477a, #f0e68c) !important;
}

/* Calendar Starts */
.calendar {
    border-radius: 20px;
    overflow: hidden;
}

/* Calendar Ends */

/* Job Pages Starts */
.job-container-left {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
}

.job-container-right {
    height: fit-content;
}

.job-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-title-1 {
    color: rgba(30, 136, 229);
}

.job-title-2 {
    color: rgba(46, 125, 50);
}

.job-title-3 {
    color: rgba(142, 68, 173);
}

.job-title-4 {
    color: rgba(211, 47, 47);
}

.job-title-5 {
    color: rgba(245, 124, 0);
}

.job-title-6 {
    color: rgba(229, 30, 176);
}

.job-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.section-text {
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.custom-list {
    list-style-type: disc;
    padding-left: 1.2rem;
}

.custom-list li {
    margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .job-container {
        margin: 1.5rem;
        padding: 1.5rem;
    }
}

/* Modal */
.modal-content {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

/* Job Pages Ends */