body {
    font-family: Arial, sans-serif;
    padding: 0px 0px;
    margin: 0;
    background-color: #edf4ff;
}

.index-page{
    font-family: Arial, sans-serif;
    padding: 0px 5px;
    background-color: #edf4ff;
}

.h1 {
    font-weight: 700;
}

/* -------- Consolidated Navbar Styles --------- */
.sticky-top {
    transition: 0.5s;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar .navbar-nav .nav-link {
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light) !important;
        border-radius: 10px !important;
        transition: .5s;
        opacity: 1;
    }

    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

/* ----------Banner--------- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 40px 0; */
}

.hero-content h1,
.hero-content p,
.hero-content a {
    animation: fadeInUp 1s ease-in-out;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    animation: fadeInRight 1.5s ease-in-out;
}

.badge-container .badge {
    position: absolute;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.badge-container .badge:hover {
    transform: scale(1.1);
}

.feature-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    animation: fadeInUp 1s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.features-section {

    padding: 40px 0;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 10px 0; */
    /* margin-top: 20px; */
}

.hero-text {
    max-width: 90%;

}

.hero img {
    max-width: 100%;
    animation: fadeInRight 1s;
}

.label {
    position: absolute;
    background: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.label.erp {
    top: 45%;
    left: 12%;
    background: #e91e63;
    color: white;
    font-size: 10px;
    z-index: 3;
}

.label.web {
    top: 40%;
    left: 60%;
    background: #4caf50;
    color: white;
    font-size: 10px;
    z-index: 3;
}

.label.apps {
    top: 75%;
    left: 65%;
    background: #ff9800;
    color: white;
    font-size: 10px;
    z-index: 3;
}

.label.hosting {
    top: 80%;
    left: 15%;
    background: #0792c1;
    color: white;
    font-size: 10px;
    z-index: 3;
}

/* Media Queries for Hero Section */
@media (max-width: 768px) {
    .hero .row {
        flex-direction: column-reverse;
        /* padding: 30px 0; */
    }

    .hero .col-sm-12,
    .hero .col-sm-10 {
        padding: 10px;
    }

    .fw-bold {
        width: 90%;
    }
}

/* Background and Hero Image */
.circle-bg {
    background-color: #6a80ff;
    width: 50%;
    max-width: 250px;
    height: 50%;
    max-height: 300px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    max-width: 90%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Tech Icons */
.tech-icon {
    width: 100%;
    height: 60px;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.1);
}

.floating-icons {
    position: relative;
    min-height: 400px;
}

.icon-container {
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

.icon-container:nth-child(2n) {
    animation-delay: 1s;
}

.icon-container:nth-child(3n) {
    animation-delay: 2s;
}

.primary-icon {
    color: #0792c1;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    object-fit: contain;
    padding: 20px;
}

.service-button {
    background-color: #0a0a29;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
    width: 60%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease;
}

.span-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.service-button:hover {
    background-color: #1a1a4f;
}

.service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Metrics Cards */
.metrics-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 1.0rem;
    margin: 1rem;
    transition: transform 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.icon-color{
    color: #edb639;

}

.stats-card:nth-child(1) {
    top: 10%;
    left: 5%;
    /* animation: float 6s ease-in-out infinite; */
}

.stats-card:nth-child(2) {
    top: 0;
    left: 35%;
    /* animation: float 6s ease-in-out infinite 1.5s; */
}

.stats-card:nth-child(3) {
    top: 30%;
    left: 45%;
    /* animation: float 6s ease-in-out infinite 3s; */
}

.stats-card:nth-child(4) {
    top: 45%;
    left: 15%;
    /* animation: float 6s ease-in-out infinite 4.5s; */
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stats-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.heading-primary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 3rem;
}

.stats-container {
    position: relative;
    height: 500px;
}

.stats-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    width: 250px;
    position: absolute;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5rem;
}

.icon {
    font-size: 1.75rem;
    color: #edb639;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.stats-card h3 {
    font-size: 2.0rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    line-height: 1;
}

.stats-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    position: relative;
    padding-left: 1rem;
    display: inline-block;
    border-left: 3px solid #FF6B6B;
    margin-left: 45px;
}

/* Experience Section */
.experience-section {
    margin-left: 2rem;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3264F4;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 400px;
}

.contact-btn {
    background: #3264F4;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #2753d3;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll-animation {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Logo Section */
.logo-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    white-space: nowrap;
}

.logo-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll-animation 50s linear infinite;
}

.logo-card {
    flex-shrink: 0;
    padding: 1.0rem;
    border-radius: 0.5rem;
    min-width: 100px;
    text-align: center;
}

.logo-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gradient-left,
.gradient-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 4rem;
    pointer-events: none;
    z-index: 1;
}

.gradient-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.gradient-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Testimonial Section */
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.testimonial-section {
    padding: 10px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial-container {
    background-color: #f8f9ff;
    border-radius: 32px;
    position: relative;
    padding: 3rem;
    overflow: hidden;
}

.decorative-element {
    position: absolute;
    top: -15px;
    left: -15px;
}

.decorative-element::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #00e5ff;
    border-radius: 6px;
    transform: rotate(45deg);
}

.carousel-item {
    padding: 1rem;
}

.testimonial-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 24px;
}

.testimonial-content {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    position: relative;
    line-height: 1.4;
    padding-left: 2.5rem;
}

.quote-mark {
    color: #ff6b6b;
    font-size: 4rem;
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-family: Georgia, serif;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.testimonial-role {
    color: #6b7280;
    font-size: 1rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-control-prev {
    left: -24px;
}

.carousel-control-next {
    right: -24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    border-radius: 50%;
    background-size: 50%;
}

.carousel-indicators {
    bottom: -3.5rem;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e7eb;
    margin: 0 6px;
    border: none;
}

.carousel-indicators .active {
    background-color: #2563eb;
}

/* Contact Section */
.main-section {
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3f 100%);
    color: white;
    padding: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    height: auto;
    margin-bottom: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background: rgb(82, 97, 255);
    border: none;
    padding: 0.7rem;
    font-weight: 500;
}

.btn-primary:hover {
    background: rgb(71, 85, 235);
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.sub-heading {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0rem;
    margin-bottom: 2rem;
}

.right-section {
    height: calc((100vh - 4rem - 1rem) / 2);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #fff;
}

.logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
}

.company-description {
    color: #656565;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #1E1E1E;
    text-decoration: none;
}

.social-links a:hover {
    color: #0066ff;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1E1E1E;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #656565;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0066ff;
}

.blog-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    background: #F8F9FA;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.blog-card:hover {
    background: #F0F1F2;
}

.blog-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-size: 0.95rem;
    color: #1E1E1E;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.blog-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .testimonial-image {
        height: 320px;
        margin-bottom: 2rem;
    }

    .testimonial-content {
        padding: 0 1rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0;
    }

    .blog-section {
        margin-top: 1rem;
    }

    .auth-container {
        height: auto;
        margin-bottom: 1rem;
    }

    .right-section {
        height: auto;
    }

    .main-heading {
        font-size: 2rem;
    }
}
.text-zinc{
    color: #fff;
}

.hero-section-erp {
    text-align: center;
    /* padding: 20px 20px; */
    padding-top:150px;
    /* margin-top: 40px; */
    animation: fadeInDown 1s ease-in-out;
}
.media-row, .bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.video-container, .features {
    flex: 8;
    animation: fadeIn 1s ease-in-out;
}
.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.image-container {
    flex: 2;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}
.feature-img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.feature-img:hover {
    transform: scale(1.05);
}
.features {
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.module-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;

}
.module-card:hover {
    transform: translateY(-5px);
}
.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
ul {
    text-align: left;
    padding-left: 20px;
}

.pricing-card {
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.pricing-card:hover {
    transform: scale(1.05);
}
.popular {
    background-color: #001f5b;
    color: white;
}
.btn-trial {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    margin-top: 15px;
}

.btn-primary-button{
    background-color: #0082bf;
    color: #fff;
}

.feature-section-pos {
    padding: 50px 0;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li::before {
    content: '\2022';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.feature-image {
    position: relative;
    text-align: center;
}
.badge-label {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}
.cloud-pos {
    top: 20%;
    left: 10%;
}
.offline-pos {
    bottom: 10%;
    right: 15%;
}


.process-section {
    padding: 30px 0;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.card-content {
    padding: 15px 0;
    text-align: center;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.link-text {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.link-text:hover {
    text-decoration: underline;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.process-row {
    min-height: 400px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.active {
    border: 2px solid #4e6bff;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1.5rem auto;
}

.quote {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.designation {
    color: #718096;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #4e6bff;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #000;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-button {
    padding: 1.5rem;
    font-size: 1rem;
    color: #424242;
}
.accordion-body {
    padding: 1.5rem;
    color: #666;
}
.load-more {
    color: #0d6efd;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
}
.load-more img {
    margin-left: 0.5rem;
} */
.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-button {
    padding: 1.5rem;
    font-size: 1rem;
    color: #424242;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4V20M20 12L4 12' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    background-size: 24px;
    transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12L4 12' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}
.accordion-body {
    padding: 1.5rem;
    color: #666;
}
.load-more {
    color: #0d6efd;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
    font-weight: 500;
}
.load-more:hover {
    color: #0b5ed7;
}
.hidden-faq {
    display: none;
}
.faq-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}
.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.accordion-item:first-of-type {
    border-top: 1px solid rgba(0,0,0,.125);
}


.service-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
}
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.web-dev-icon { background-color: #40E0D0; }
.ui-ux-icon { background-color: #FF6B6B; }
.blockchain-icon { background-color: #4D8BFF; }
.api-icon { background-color: #FFB366; }
.service-list {
    padding-left: 0;
    list-style: none;
}
.service-list li {
    margin-bottom: 0.5rem;
    color: #6B7280;
    font-size: 0.9rem;
}

.why-choose-section {
    background-color: #f8f9ff;
}
.feature-list {
    list-style: none;
    padding-left: 0;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}
.feature-list li::before {
    content: "•";
    color: #4361ee;
    font-weight: bold;
    margin-right: 0.75rem;
}
.workspace-image {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ---------Contact Form------------ */

 .contact-section {
    /* background-color: #fff; */
    padding-top: 80px;
}
/*
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}
.btn-primary {
    background-color: #1e40af;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
}
.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-links-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 50%;
    color: #4b5563;
    transition: all 0.3s ease;
}
.social-links-contact a:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}
.contact-header {
    position: relative;
    margin-bottom: 3rem;
}
.representative-image {
    position: absolute;
    right: -100px;
    top: -50px;
    max-width: 400px;
    height: auto;
}
@media (max-width: 991px) {
    .representative-image {
        position: static;
        display: block;
        margin: 2rem auto;
        max-width: 300px;
    }
} */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-heading {
    color: #2d3142;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.social-icons {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: #2d3142;
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #2d3142;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.form-section {
    animation: slideInRight 0.8s ease-out;
}

.form-control {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.02);
}

.form-control::placeholder {
    color: #9e9e9e;
    transition: all 0.3s ease;
}

.form-control:focus::placeholder {
    transform: translateY(-10px);
    opacity: 0;
}

.mb-4 {
    position: relative;
    margin-bottom: 2rem !important;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-submit i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Loading animation for form submission */
.btn-submit.loading {
    position: relative;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

@keyframes rotate {
    100% { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 991px) {
    .contact-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 3rem;
    }

    /* .form-section {
        padding-top: 50px;
    } */
}

/* ----------Upper Footer--------- */

.assistance-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #14142B;
    margin: 0;
}

.contact-label {
    color: #6E7191;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-label::before {
    content: "—";
    margin-right: 0.5rem;
    color: #6E7191;
}

.contact-info {
    color: #14142B;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hours-title {
    color: #6E7191;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.hours-info {
    color: #14142B;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.newsletter-section {
    background-color: #14142B;
    padding: 4rem 0;
    color: white;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-description {
    color: #D9DBE9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 90%;
}

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 4px;
    height: auto;
    width: 100%;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-subscribe {
    background-color: #2D68FF;
    color: white;
    padding: 0.475rem 0.875rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #1e54e6;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .assistance-section {
        padding: 3rem 0;
    }

    .col-md-4 {
        margin-bottom: 2rem;
    }

    .newsletter-description {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {
    .newsletter-form {
        margin-top: 0;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        height: 100%;
        justify-content: flex-end;
    }

    /* .form-control {
        max-width: 280px;
    } */

    .btn-subscribe {
        margin-top: 0;
        width: auto;
    }
}

/* ---------About Us--------- */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 48px 24px; */
    padding-top: 120px;
    padding-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    /* margin-bottom: 10px; */
}

.stats-card-about {
    background: #f8f9fe;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.new-leads {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.lead-number {
    font-size: 2.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.growth-rate {
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 500;
}

/* .graph-container {
    margin-top: 20px;
    height: 60px;
} */

.graph-line {
    stroke: #6366f1;
    stroke-width: 2;
    fill: none;
}

.simple-label {
    color: #ef4444;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.card-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description-text {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
}

.purple-line {
    width: 40px;
    height: 4px;
    background-color: #6366f1;
    margin-bottom: 14px;
}
.pink-line {
    width: 30px;
    height: 2px;
    background-color: #ef4444;
    margin-bottom: 14px;
}

.standalone-number {
    font-size: 2.25rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.metrics-content {
    flex-shrink: 0;
}

.graph-container {
    flex-grow: 1;
    max-width: 100px;
    margin-top: 0;
}

/* --------Counter Section--------- */

.counter-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f4f4f4;
}
.counter-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}
.counter-item:nth-child(1) { animation-delay: 0.2s; }
.counter-item:nth-child(2) { animation-delay: 0.4s; }
.counter-item:nth-child(3) { animation-delay: 0.6s; }
.counter-item:nth-child(4) { animation-delay: 0.8s; }

.counter-icon {
    font-size: 2em;
    color: #ff9800;
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.counter-icon:hover {
    transform: scale(1.2);
    color: #007BFF;
}

.counter-number {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}
.counter-number:hover {
    color: #007BFF;
}

.counter-label {
    font-size: 1em;
    color: #666;
    transition: color 0.3s ease;
}
.counter-label:hover {
    color: #007BFF;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.tech-powerhouse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 50px; */
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.tech-content {
    max-width: 100%;
}
.tech-content h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.tech-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.tech-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.tech-content a:hover {
    background-color: #0056b3;
}
.tech-image {
    max-width: 100%;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1.5s ease-out forwards;
}
.tech-image img {
    width: 100%;
    border-radius: 10px;
}
@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



.values-container {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    min-height: 280px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
    font-size: 0.975rem;
    line-height: 1.6;
}

.dark-card {
    background: #1e1b4b;
    color: white;
}

.dark-card .value-number {
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.dark-card .value-title {
    color: white;
}

.dark-card .value-description {
    color: #e5e7eb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------Resourses Section---------- */

.hero-section-resources {
    padding-top: 100px;
    position: relative;
    max-height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-background-resources {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('/assets/images/three-dimensional.jpg') center/cover;
    animation: gradientShift 15s infinite linear;
}

.hero-background-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 24, 48, 0.8),
        rgba(0, 48, 48, 0.8)
    );
}

.hero-content-resources {
    max-width: 1200px;
    padding: 2rem;
    color: white;
    text-align: center;
    z-index: 1;
}

.hero-title-resources {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.hero-subtitle-resources {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.2s forwards;
}

.hero-description-resources {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.4s forwards;
}

.hero-button-resources {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.6s forwards;
}

.hero-button-resources:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title-resources {
        font-size: 2.25rem;
    }
    .hero-subtitle-resources {
        font-size: 1.25rem;
    }
    .hero-description-resources {
        font-size: 1rem;
    }
}

.services-container-resources {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.services-grid-resources {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card-resources {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-resources:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image-resources {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card-resources:hover .service-image-resources {
    transform: scale(1.05);
}

.service-title-resources {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description-resources {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-resources:nth-child(1) { animation-delay: 0.1s; }
.service-card-resources:nth-child(2) { animation-delay: 0.2s; }
.service-card-resources:nth-child(3) { animation-delay: 0.3s; }
.service-card-resources:nth-child(4) { animation-delay: 0.4s; }
.service-card-resources:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 1200px) {
    .services-grid-resources {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-resources {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid-resources {
        grid-template-columns: 1fr;
    }
}


.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 50px;
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.service-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.service-icon {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-item:hover .service-icon {
    color: #0056b3;
}
.service-label {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}
.service-stacks {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.stack-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}
.stack-icon:hover {
    transform: scale(1.2);
}
/* Specific brand colors */
.fa-react { color: #61DAFB; }
.fa-android { color: #3DDC84; }
.fa-apple { color: #000000; }
.fa-google-play { color: #4285F4; }
.fa-xbox { color: #107C10; }
.fa-ionic { color: #3880FF; }
.fa-html5 { color: #E34F26; }
.fa-css3-alt { color: #1572B6; }
.fa-js { color: #F7DF1E; }
.fa-angular { color: #DD0031; }
.fa-vuejs { color: #4FC08D; }
.fa-node { color: #339933; }
.fa-python { color: #3776AB; }
.fa-java { color: #007396; }
.fa-php { color: #777BB4; }
.fa-ruby { color: #CC342D; }
.fa-aws { color: #232F3E; }
.fa-figma { color: #F24E1E; }
.fa-sketch { color: #F7B500; }
.fa-adobe { color: #FF0000; }
.fa-invision { color: #FF3366; }
.fa-axure { color: #FF6600; }
.fa-zeplin { color: #FDBD39; }
.fa-unity { color: #000000; }
.fa-unreal { color: #0E1128; }
.fa-google { color: #4285F4; }
.fa-blender { color: #F5792A; }
.fa-jira { color: #0052CC; }
.fa-jenkins { color: #D24939; }
.fa-docker { color: #2496ED; }
.fa-gitlab { color: #FC6D26; }
.fa-ethereum { color: #3C3C3D; }
.fa-bitcoin { color: #F7931A; }
.fa-cc-stripe { color: #008CDD; }
.fa-cc-paypal { color: #00457C; }
.fa-cc-visa { color: #1A1F71; }
.fa-cc-mastercard { color: #EB001B; }
.fa-cc-amazon-pay { color: #FF9900; }
.fa-cc-apple-pay { color: #000000; }
.fa-google { color: #4285F4; }
.fa-mixpanel { color: #4E4E4E; }
.fa-tableau { color: #E97627; }
.fa-microsoft { color: #5E5E5E; }
.fa-amplitude { color: #3F3F3F; }
.fa-looker { color: #4285F4; }
.fa-twilio { color: #F22F46; }
.fa-firebase { color: #FFCA28; }
.fa-sendgrid { color: #1A82E2; }
.fa-auth0 { color: #EB5424; }
.fa-kubernetes { color: #326CE5; }
.fa-azure { color: #0089D6; }
.fa-outsystems { color: #FF6600; }
.fa-mendix { color: #00A1E0; }
.fa-appian { color: #232C3B; }
.fa-bubble { color: #FF6B6B; }
.fa-retool { color: #3B82F6; }
.fa-flutter { color: #02569B; }
.fa-laravel { color: #FF2D20; }
.fa-wordpress { color: #21759B; }

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .services-section {
        grid-template-columns: 1fr; /* Single column for smaller devices */
    }
    .service-item {
        padding: 15px; /* Reduce padding for smaller screens */
    }
    .service-icon {
        font-size: 1.8em; /* Slightly smaller icons */
    }
    .service-label {
        font-size: 0.9em; /* Smaller font size for labels */
    }
    .stack-icon {
        font-size: 1.2em; /* Smaller stack icons */
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 20px; /* Reduce padding for mobile devices */
    }
    .service-item {
        padding: 10px; /* Further reduce padding for mobile devices */
    }
    .service-icon {
        font-size: 1.5em; /* Smaller icons for mobile devices */
    }
    .service-label {
        font-size: 0.85em; /* Smaller font size for mobile devices */
    }
    .stack-icon {
        font-size: 1em; /* Smaller stack icons for mobile devices */
    }
}


.why-choose-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    margin: 20px;
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.why-choose-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.why-choose-section p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}
.service-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.service-icon {
    font-size: 2em;
    color: #007BFF;
    margin-right: 20px;
    transition: color 0.3s ease;
}
.service-item:hover .service-icon {
    color: #0056b3;
}
.service-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-content h2 {
    text-align: start;
    font-size: 1.5em;
    color: #333;
    margin: 0;
}
.service-content p {
    text-align: start;
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/*User CSS*/
/*# Careers Section */

:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

.hero-section-careers{
    position: relative;
    min-height: 400px;
    /* background: linear-gradient(rgba(33, 37, 41, 0.185), rgba(33, 37, 41, 0.226)), url('/assests/images/slider-2-1024x267.jpg'); */
    background: url('/assets/images/slider-2-1024x267.jpg') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero-content-careers {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.job-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.job-meta i {
    color: var(--primary-color);
}

.nav-pills .nav-link {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

.btn-apply {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateX(5px);
}

.job-details {
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
}

.requirements-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.requirements-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.collapse-indicator {
    transition: transform 0.3s ease;
}

.collapsed .collapse-indicator {
    transform: rotate(-90deg);
}

.job-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.job-description.show {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .job-card {
        margin-bottom: 1rem;
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom file input styling */
.form-control[type="file"] {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
}

.form-control[type="file"]:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* About Page Styles */
.about-hero-section .video-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about-hero-section .play-btn {
    transition: all 0.3s ease;
}

.about-hero-section .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
}

.coding-classes-section .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intakes-section .card {
    transition: all 0.3s ease;
}

.intakes-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.get-started-section img {
    border-radius: 0 1rem 1rem 0;
}

/* For small screens */
@media (max-width: 767.98px) {
    .get-started-section img {
        border-radius: 0 0 1rem 1rem;
    }
}



/* Dropdown Menu Styles */
.navmenu .dropdown {
    position: relative;
}

.navmenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
}

.navmenu .dropdown-menu li {
    padding: 0;
    margin: 0;
}

.navmenu .dropdown-menu a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #212529;
    display: block;
    white-space: nowrap;
    transition: 0.3s;
}

.navmenu .dropdown-menu a i {
    margin-right: 10px;
    font-size: 16px;
}

.navmenu .dropdown-menu a:hover {
    color: #d84078;
}

.navmenu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    display: block;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1200px) {
    .navmenu .dropdown .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding-left: 15px;
    }

    .navmenu .dropdown:hover > .dropdown-menu {
        display: block;
    }
}
