/* ===== Theme Colors ===== */
:root {
    --primary:#00ACC1; 
    --secondary: #FFFFFF; 
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
}


.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}


.navbar .nav-link {
    font-weight: 500;
    margin-left: 15px;
}

    .navbar .nav-link:hover {
        color: #fff !important; 
    }


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background: #00ACC1;
    color: #fff;
}
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  
}

@keyframes zoomIn {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}




    .bg-footer {
        background-color: #e0f7f5;
    }


    .footer-link {
        color: var(--dark);
        text-decoration: none;
        display: block;
        margin-bottom: 6px;
        transition: 0.3s;
    }

        .footer-link:hover {
            color: #00ACC1;
            text-decoration: underline;
        }


    footer p, footer li, footer a {
        font-size: 14px;
    }

    .carousel-caption {
        left: 8%;
        right: auto;
        bottom: 30%;
        text-align: left;
    }


    #bannerCarousel .carousel-item {
        height: 70vh;
    }

       





        
        #bannerCarousel .carousel-item img {
            width: 100%;
            height: 100vh; 
            object-fit: cover; 
        }

#bannerCarousel .carousel-control-prev,
#bannerCarousel .carousel-control-next {
    top: 80%;
    transform: translateY(-50%);
    bottom: auto;
}


@media (max-width: 768px) {
    #bannerCarousel,
    #bannerCarousel .carousel-inner,
    #bannerCarousel .carousel-item {
        height: 300px; 
    }

        #bannerCarousel .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover; 
        }

        #bannerCarousel .carousel-control-prev,
        #bannerCarousel .carousel-control-next {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
        }
}





    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: var(--primary);
        border-radius: 50%;
        padding: 20px;
    }


    .carousel-indicators [data-bs-target] {
        background-color: var(--primary);
    }

    .carousel-indicators .active {
        background-color: var(--dark);
    }

    #about {
        padding: 60px 0;
        background-color: #198754;
    }

        #about h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        #about p {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        #about img {
            border-radius: 12px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        }

    .about-img {
        height: 400px;
        width: 100%;
    }

    #about .btn {
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    #about .btn-success {
        background-color: #28a745;
        border: none;
        margin-left: 5px;
    }

        #about .btn-success:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }

    .why-choose-background {
        background-image: url('your-background-image.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .why-choose-overlay {
        background-color: var(--primary);
        position: relative;
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
    }


    .corealpha-card {
        background: transparent;
        border: 2px solid transparent;
        position: relative;
        transition: transform 0.3s ease;
    }

        .corealpha-card .card-body {
            padding: 2.5rem 1.5rem;
            position: relative;
            z-index: 2;
            border: 1px solid #fff;
            border-radius: 8px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }


        .corealpha-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
            border-top: 2px solid #fff;
            border-left: 2px solid #fff;
            transition: width 0.3s ease-out, height 0.3s ease-out 0.3s;
            z-index: 1;
        }

        .corealpha-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 0;
            border-bottom: 2px solid #fff;
            border-right: 2px solid #fff;
            transition: width 0.3s ease-out 0.6s, height 0.3s ease-out 0.9s;
            z-index: 1;
        }

        .corealpha-card:hover::before {
            width: 100%;
            height: 100%;
        }

        .corealpha-card:hover::after {
            width: 100%;
            height: 100%;
        }


        .corealpha-card:hover {
            transform: translateY(-8px);
        }

    .flip-card {
        background-color: transparent;
        perspective: 1000px;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 350px;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }


    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 15px;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .flip-card-front {
        background-color: #fff;
        color: black;
        z-index: 2;
        padding: 20px;
    }


    .flip-card-back {
        background: linear-gradient(135deg, #0d6efd, #20c997);
        color: #333;
        transform: rotateY(180deg);
        z-index: 1;
        padding: 20px;
    }

    .process-wrapper {
  position: relative;
  width: 100%;
}

.process-step {
  position: relative;
  flex: 1;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: #0d6efd; /* Bootstrap Primary */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* Line between steps */
.process-step::after {
  content: "";
  position: absolute;
  top: 25px; /* middle of circle */
  left: 50%;
  width: 100%;
  height: 4px;
  background: #0d6efd;
  z-index: 1;
}

/* Remove line after last step */
.process-step:last-child::after {
  display: none;
}

/* Adjust spacing for flex items */
.process-step:not(:last-child) {
  margin-right: 20px;
}

    #testimonialCarousel {
        position: relative;
    }

        #testimonialCarousel .carousel-item {
            padding: 30px 15px;
            transition: transform 0.6s ease-in-out;
        }

            #testimonialCarousel .carousel-item p {
                font-size: 1.1rem;
                color: #555;
                line-height: 1.6;
            }

            #testimonialCarousel .carousel-item h5 {
                color: #333;
                margin-top: 10px;
            }

            #testimonialCarousel .carousel-item img {
                width: 100px;
                height: 100px;
                object-fit: cover;
                border: 4px solid #4CAF50;
            }

        #testimonialCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            border-radius: 50%;
            margin: 3px;
            transition: all 0.3s ease;
        }

        #testimonialCarousel .carousel-indicators .active {
            background-color: #4CAF50;
        }

        #testimonialCarousel .carousel-item .lead {
            font-style: italic;
        }


        #testimonialCarousel .carousel-item .mx-auto {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

    .breadcrumb_section {
        background: url('/Images/c-banner.jpg') no-repeat;
        padding: 100px 0;
        text-align: center;
        color: #fff;
    }

    .main_subheading {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .breadcrumb_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-flex;
        gap: 5px;
        align-items: center;
    }

        .breadcrumb_list li a,
        .breadcrumb_list li i,
        .breadcrumb_list li {
            color: #fff;
            text-decoration: none;
        }

    .service-card {
        background: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.2);
            background-color: var(--primary);
        }

        .service-card i {
            transition: transform 0.3s ease;
        }

        .service-card:hover i {
            transform: scale(1.3);
        }



    .industry-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
    }

        .industry-card i {
            font-size: 40px;
            color: #00ACC1;
            margin-bottom: 15px;
        }

        .industry-card h5 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .industry-card p {
            font-size: 0.95rem;
            color: #555;
        }

        .industry-card:hover {
            background: #F0F8FA;
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

    .highlight-section {
        background: #f8f9fa;
        padding: 80px 20px;
        margin-top: 60px;
        border-radius: 12px;
    }

        .highlight-section h2 {
            font-weight: 700;
        }

        .highlight-section p {
            font-size: 1.05rem;
            color: #666;
        }


    .cta-section {
        background: linear-gradient(135deg, #0d6efd, #20c997);
        color: #fff;
        text-align: center;
        padding: 70px 20px;
        border-radius: 16px;
        margin: 80px 0;
    }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        .cta-section p {
            margin: 15px 0 25px;
            font-size: 1.1rem;
        }

        .cta-section .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
        }

    .arrow {
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 4px;
        background-color: #00ACC1;
        transform: translateY(-50%);
    }

    .team-section .team-heading {
        color: #00ACC1;
        margin-bottom: 10px;
    }

    .team-section .card {
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .team-section .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .team-section .card img {
            border: 1px solid #00ACC1;
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            transition: transform 0.3s;
        }

            .team-section .card img:hover {
                transform: scale(1.05);
            }

    .team-section .card-title {
        margin-top: 10px;
        color: #333;
    }

    .team-section .card p {
        color: #777;
        margin: 0;
    }


    .header-section {
        background-color: #00ACC1;
        color: white;
    }

        .header-section h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }


        p{
            text-align:justify;
        }



    .upload-resume {
        background-color: #f8f9fa;
    }

        .upload-resume h3 {
            margin-bottom: 20px;
        }



    .final-cta {
        background-color: #e0f7fa;
    }

        .final-cta h2 {
            margin-bottom: 15px;
        }

    .card-blog img {
        width: 355px;
        height: 200px;
    }

        .card-blog img:hover {
            transform: scale(1.05);
        }

    .portfolio-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        cursor: pointer;
    }

        .portfolio-card img {
            width: 100%;
            display: block;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover img {
            transform: scale(1.1);
        }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 172, 193, 0.92);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.4s ease;
        text-align: center;
        padding: 20px;
    }

    .portfolio-card:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-overlay h5 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .portfolio-overlay p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .portfolio-overlay a.btn {
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }
.speech-bubble {
    position: relative;
    border-radius: 12px;
}

    .speech-bubble::after {
        content: "";
        position: absolute;
        left: -20px;
        top: 30px;
        border-width: 10px;
        border-style: solid;
        border-color: transparent #fff transparent transparent;
        filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.1));
    }

.zoom {
    transition: transform 0.3s;
    cursor: pointer;
}

    .zoom:hover {
        transform: scale(1.05);
    }
