/* General styling for the section */
/* client section */
a {
    text-decoration: none !important;
}

.client-header {
    padding: 20px;
    background: #080b39;
}

.bottom-btn {
    flex: 1;
    text-align: center;
    padding: 5px !important;
    font-size: 16px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-header h3 {
    font-size: 1.8em;
    color: #fff;
    margin: 0;
    font-weight: bold;

}

.client-header span {
    color: #e74c3c;
}

.client-header p {
    font-size: 1em;
    color: #555;
    margin-left: 4rem;
}

.section-1 {
    background: #080b39;
    box-sizing: border-box;
}

.area {
    width: 100%;
    height: auto;
    padding: 0 !important;
    background: #080b39;
    box-sizing: border-box;
}

.grid-item {
    color: white;
    text-align: center;

    border-radius: 5px;
    border: none !important;
}

.nested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    padding: 10px;
    position: relative;
    overflow-y: auto;
}

.nested-grid::-webkit-scrollbar {
    display: none;
}

.nested-grid {
    scrollbar-width: none;
    max-height: 600px;
    overflow-x: hidden;
    position: relative;
}

.nested-item {
    background-color: #ffff;

    border-radius: 5px;
    width: 10rem;
    height: 6rem;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nested-item img {
    width: 150px;

    height: 50px;
    object-fit: cover;
    display: block;
}

.trusted-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
    padding: 10px;
    border-radius: 5px;
    margin-left: 5rem;
}

.trusted-title i {
    font-size: 35px;
}

.customer-count {
    color: #e74c3c;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nested-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .nested-item {
        width: auto;
    }
}

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

    .nested-item {
        width: auto;
        height: auto;
        min-height: 4rem;
    }

    .nested-item img {
        width: 100%;
        max-width: 150px;
        height: auto;
        max-height: 40px;
    }

    .client-header h3,
    .client-header p {
        margin-left: 1rem;
    }
}

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

    .nested-item {
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .nested-item {
        padding: 5px;
    }

    .nested-item img {
        max-width: 100px;
        max-height: 35px;
    }
}

.circles {

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.area {
    position: relative;
}

.grid-item {
    position: relative;
    z-index: 1;
}

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

.counter-icon {
    width: 50px;
    height: 50px;
    background: #2599dc1e;
    border-radius: 50%;
    border: 1px solid #e4e5e98a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.counter-icon i {
    font-size: 22px;
    color: #2a3855;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.counter-card {
    flex: 1 1 calc(50% - 20px);
    /* 2 per row on small screens */
    max-width: calc(50% - 20px);

    border-radius: 15px;

    text-align: center;

    transition: transform 0.3s ease;
    margin-bottom: 25px;
}

.counter-title {
    font-size: 18px;
    color: #2a3855;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .counter-card {
        flex: 1 1 calc(25% - 20px);
        /* 4 per row on large screens */
        max-width: calc(25% - 20px);
        padding: 30px;
    }
}

.cta1-section {
    background-color: white;
    /* background: url('') no-repeat center center/cover; */
    padding: 30px 0px;
    color: #fff;
    position: relative;
}

.cta1-section .container {
    position: relative;
    z-index: 2;
    /* To place content above the overlay */
}

.text-content {
    text-align: left;
}

.cta1-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta1-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: rgb(85, 85, 85);
}

.cta1-btn {
    background: #00DEBE;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta1-btn:hover {
    background: #c9302c;
    text-decoration: none;
}

.gif1-content {
    text-align: center;
}

.cta1-gif {
    width: 100%;
    border-radius: 10px;
}

.special-benefits-section {
    padding: 50px 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/trust/trust3.jpg') no-repeat center center;
    background-size: cover;
    /* height:100vh; */
}

.image-card {
    height: 550px;
    margin-bottom: 20px;

}

.image-card img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    align-items: flex-start !important;

    transition: box-shadow 0.3s, transform 0.3s;
}

@media(max-width:576px) {
    .benefit-card {
        height: auto;
    }

    .image-card {
        height: auto;
        margin-bottom: 20px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.b-card img {
    width: 50px;
    height: 50px;
    margin: 10px;
}

.b-card h4 {
    line-height: 30px !important;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Responsive Styling */
@media (max-width: 992px) {
    .benefits-image {
        margin-bottom: 20px;
        height: 300px;
    }
}

@media (max-width: 769px) {
    .benefit-card {
        padding: 15px;
    }

}

.swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Swiper Slide */
.swiper-slide {
    height:
        auto !important;

    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 10px;
}

@media(max-width:1100px) {
    .swiper-slide {
        height:
            auto !important;
    }
}

/* Image inside slide */
.swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Content inside slide */
.content {
    padding: 15px;

}

.content h3 {
    color: #005548;
    padding-top: 10px;
    font-size: 16px;
}

.content p {
    color: rgb(82, 82, 82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
}

/* Make Cards Full Width on Small Screens */
@media (max-width: 576px) {
    .swiper-slide {
        width: 100% !important;
        height: auto;
    }

    .content h3 {
        font-size: 14px;
    }

    .content p {
        font-size: 12px;
        padding: 0px 15px;
        color: #dfdfdf;
    }
}

/* Swiper Navigation Buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
    color: white !important;
    /* Make arrows smaller */
}

/* Button size adjustments */
.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    /* Smaller button */
    height: 30px;
    /* Smaller button */
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Positioning */
.swiper-button-prev {
    left: 0px;
}

.swiper-button-next {
    right: 0px;
}

/* Responsive tweaks */
@media (max-width: 768px) {

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px !important;
        /* Even smaller arrows on mobile */
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 25px;
        height: 25px;
    }
}

.nursing-card {
    height: auto;
    /* Fixed height for neat alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.nursing-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nursing-box img {
    width: 100%;
    border-radius: 10px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blinker 1s infinite;
    color: #d9534f !important;
    /* Red color for attention */
    font-weight: bold;
    background-color: #d4f3ee;
}

.service-text {
    font-size: 16px;
    color: #555;
    text-align: center;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    45% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0);
    }
}

.animated-call-icon {
    display: inline-block;
    animation: ring 1s infinite ease-in-out;
}

.contact-info,
.contact-info1 {
    margin-top: 15px;

}

.contact-info1 a {
    border: 1px solid black;
    padding: 10px;
}

.contact-info a {
    text-decoration: none;
    font-weight: bold;
    color: #007bff;

}

.project-item {
    border: 2px solid gray !important;
}

.recent-project-list .project-item .image-box img {
    bottom: -370px;
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: top 11s;
    -moz-transition: top 11s;
    -ms-transition: top 11s;
    -o-transition: top 11s;
    transition: bottom 11s;
}

.text_box_web {
    background-color: #333;
    padding: 10px 0px;

}

.text_box_web h4 a {

    color: white !important;
}

.text_box_web h6,
.text_box_web h6 a {
    font-size: 17px !important;
}

.bg-light {
    background-color: #dfdfdf !important;
}

.text-orange {
    color: #FF6600 !important;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.faq-image {
    height: auto !important;
}

.faq-image img,
.faq-image1 img {
    width: 100%;
    height: 100%;
}

@media(max-width:576px) {
    .faq-image {
        flex: 1;
        height: 300px !important;
    }
}

.hidden {
    display: none;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Adjust this as needed */
    margin: auto;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    margin: 10px;
    /* Keep margin for spacing */
    padding: 0;
    /* Remove padding */
}

.icon-box i {
    font-size: 26px;
    /* Ensures all icons are the same size */
    text-align: center;
    padding: 20px;
}

.choose-section-title {
    font-size: 17px;
}

.choose-strong {
    color: #EF8D06;
}

.choose-section-title::before {
    content: "•";
    /* Unicode for a bullet point */
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.card-header {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 1rem !important;
}

.location-badge {
    background-color: #0D6EFD;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

:root {
    --primary-color: #0069D9;
    --secondary-color: #4f46e5;
    --light-color: #f9fafb;
    --dark-color: #1e293b;
    --accent-color: #c7d2fe;
    --new-blue: #1e293b;
    --paragragh: #6c757d;
}

.industries-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.industriescard-title {
    color: #212529;
}

.features-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.features-section {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.3;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.3;
    z-index: 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    font-size: 17px;
}

.feature-title .check-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 21px;
}

.feature-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trichy-why-choose img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.target-locations-section {
    position: relative;
    background-color: #f8f9fa;
    color: #212529;
    padding: 80px 0;
    overflow: hidden;
}

/* This is where you'll add your background image */
.target-locations-section {
    background-image: url('/assets/newfolder0301/map3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /*background-color: red;*/
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.target-locations-section .container {
    z-index: 2;
}

.section-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}


.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.location-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.location-icon i {
    font-size: 18px;
    color: #0D6EFD;
    margin-bottom: 6px;
}

.location-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.location-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.location-card {
    background: white;
    border-radius: 5px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95px;
    border: 1px solid #f5f5f5;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    width: 3px;
    background: #dee2e6;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    margin-right: -8px;
}

.process-step.right {
    justify-content: flex-end;

}

.step-content {
    display: flex;
    align-items: center;
    max-width: 400px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
    left: -75px;
    z-index: 1;
}

.right .step-circle {
    left: auto;
    right: -75px;
}

.process-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    min-width: 320px;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-right: 20px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h4 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.process-content p {
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .location-card {
        width: 100%;
    }

    .process-card {

        min-width: 100%;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step.right {
        justify-content: flex-start;
    }

    .step-content {
        margin-left: 40px;
    }

    .location-grid>[class*="col-"] {
        flex: 0 0 25%;
        /* 4 cards per row on tablet */
        max-width: 25%;
    }

    .step-circle {
        left: -50px;
    }

    .right .step-circle {
        left: -50px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .location-grid>[class*="col-"] {
        flex: 0 0 33.333333%;
        /* 3 cards per row on mobile */
        max-width: 33.333333%;
    }
}

@media (max-width: 425px) {
    .step-circle {
        display: none;
    }

}

.trichy-contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Light background instead of an image */
    color: #333;
}

.trichy-contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.trichy-contact-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.trichy-contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.trichy-contact-info li {
    font-size: 18px;
    margin-bottom: 10px;
}

.trichy-contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.trichycontact-image img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.process-section {
    background-image: url('images/trichy/trichy4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 0;
    min-height: 500px;
    /* Ensures section has enough height */
}

/* new 03 */
.animate-heading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

/* active state */
.animate-heading.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-fixed {
    margin-top: 15px;
    text-align: left;
}

/* Optional: make button sticky */
.cta-fixed {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-top: 12px;
}

/* new  */
.content-wrapper {
    position: relative;
    height: 470px;
    /* scroll height + button space */
    display: flex;
    flex-direction: column;
}

.scrollable-text-container {
    height: 313px;
    overflow-y: auto;
    overflow-x: hidden;

    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar - Chrome, Safari */
.scrollable-text-container::-webkit-scrollbar {
    display: none;
}

/* COMPLETELY RESET the right column heading */
.gif1-content .sticky-heading {
    all: unset !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: sticky !important;
    top: 0 !important;
    background: white !important;
    z-index: 100 !important;
    padding: 10px 0 !important;
    margin-bottom: 1.5rem !important;
}

.gif1-content .cta1-title {
    all: unset !important;
    display: block !important;
    color: #6c757d !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    font-family: inherit !important;
}

/* new style on */
.us {
    padding: 40px 0 30px;
    background-color: #EEF1FE;
}

.us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.us-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    max-width: 600px;
    text-align: left;
}

.us-text p {
    margin-bottom: 15px;
}

.us-text ul {
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.us-text ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.us-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
}

.us-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    z-index: 1;
    mix-blend-mode: multiply;
}

.us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.us-image:hover img {
    transform: scale(1.05);
}

.us-text h4 {
    font-size: 20px;
    font-weight: 500;
}

/* new style off */

/* new 3 on */
/* Unique class names prefixed with jws- */
.jws-custom-software-section {
    padding: 60px 0 0px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jws-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222222;
    text-align: center;
    margin-bottom: 20px;
}

.jws-section-paragraph {
    font-size: 18px;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.jws-sub-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
}

.jws-industry-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eef0f2;
    display: flex;
    flex-direction: column;
}

.jws-industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 105, 217, 0.12);
}

.jws-industry-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background-color: #E9EFFD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jws-industry-icon i {
    font-size: 40px;
    color: var(--new-blue);
}

.jws-industry-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--new-blue);
    margin-bottom: 25px;
}

.jws-industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.jws-industry-list li {
    font-size: 16px;
    color: #555555;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.jws-industry-list li::before {
    content: '✓';
    /* FontAwesome check-circle */
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #0D6EFD;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .jws-section-heading {
        font-size: 36px;
    }

    .jws-sub-heading {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .jws-custom-software-section {
        padding: 80px 0;
    }

    .jws-industry-card {
        margin-bottom: 30px;
    }
}

/* new 3 off */
/* new 4 on  */
/* Section */
.jws-services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Tick list */
.tick-list,
.jws-service-desc {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tick-list li,
.jws-service-desc li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.4s ease;
    text-align: left;
}

.tick-list li::before,
.jws-service-desc li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    /* default tick color */
    font-weight: bold;
    transition: color 0.4s ease;
}

/* Card */
.jws-service-card {
    background-color: #fff;
    padding: 28px 18px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #0069D9;
}

.jws-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #0069D9;
    transition: height 0.5s ease;
    z-index: 1;
}

/* Hover effects */
.jws-service-card:hover::before {
    height: 100%;
}

.jws-service-card>* {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* Text & tick hover */
.jws-service-card:hover .jws-service-title,
.jws-service-card:hover .jws-service-desc li {
    color: #fff;
}

.jws-service-card:hover .jws-service-desc li::before {
    color: #fff;
}

/* SVG icon */
.jws-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    transition: transform 0.6s ease, color 0.4s ease;
    color: #0069D9;
    /* initial icon color */
}

.jws-service-card:hover .jws-service-icon {
    transform: rotate(360deg);
    color: #fff;
    /* icon changes to white */
}

.jws-service-icon svg {
    width: 100%;
    height: 100%;
}

.jws-service-icon svg path,
.jws-service-icon svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease;
}

/* Titles */
.jws-service-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--new-blue);
    transition: color 0.4s ease;
}

/* Card description */
.jws-service-desc {
    font-size: 14.5px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
    color: #000;
    transition: color 0.4s ease;
}

/* Responsive columns */
@media (min-width: 1200px) {
    .jws-five-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 1199.98px) {
    .jws-five-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    .jws-five-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .jws-service-card {
        padding: 25px 16px;
    }

    .jws-service-icon {
        width: 45px;
        height: 45px;
    }

    .jws-section-heading {
        font-size: 30px;
    }
}
/* new 4 off */

/* new 5 on */
.section-py {
    padding: 50px 0;
    background-color: #FFFFFF !important;
}

.why-choose-six {
    color: var(--new-blue);
    font-size: 2rem;
    font-weight: 600;
}

.why-choose-six-p {
    color: var(--new-blue);
    font-size: 1.6rem;
    font-weight: 600;
}

.strength-item {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Static partial borders (visible by default) */
/* .card-border-tl {
    border-top: 5px solid #0d6efd;
    border-left: 5px solid #0d6efd;
}

.card-border-t {
    border-top: 5px solid #0d6efd;
}

.card-border-tr {
    border-top: 5px solid #0d6efd;
    border-right: 5px solid #0d6efd;
}

.card-border-lb {
    border-left: 5px solid #0d6efd;
    border-bottom: 5px solid #0d6efd;
}

.card-border-b {
    border-bottom: 5px solid #0d6efd;
}

.card-border-rb {
    border-right: 5px solid #0d6efd;
    border-bottom: 5px solid #0d6efd;
} */

/* Hide static partial borders on hover */
.strength-item:hover {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* Hover full border animation (draws complete border) */
.strength-item::before,
.strength-item::after {
    content: '';
    position: absolute;
    background: #0d6efd;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

/* Top border */
.strength-item::before {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
}

/* Right border */
.strength-item::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}

/* Bottom border */
.strength-item .border-bottom-hover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
    opacity: 0;
}

/* Left border */
.strength-item .border-left-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: #0d6efd;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s;
    opacity: 0;
}

/* On hover - show and animate full border */
.strength-item:hover::before {
    width: 100%;
    opacity: 1;
    transition-delay: 0s;
}

.strength-item:hover::after {
    height: 100%;
    opacity: 1;
    transition-delay: 0.2s;
}

.strength-item:hover .border-bottom-hover {
    width: 100%;
    opacity: 1;
    transition-delay: 0.4s;
}

.strength-item:hover .border-left-hover {
    height: 100%;
    opacity: 1;
    transition-delay: 0.6s;
}

/* new 5 off */

/* cta1-section on  */
.sticky-heading {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-bottom: 10px;
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
    padding-top: 15px;
}

.scrollable-text-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollable-text-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
    /* optional: black background while loading */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure both columns take full height and content stretches properly */
.text-content,
.gif1-content {
    height: 100%;
}

.row.align-items-stretch>div {
    display: flex;
    flex-direction: column;
}

/* Optional: Make headings visually consistent */
.cta1-title {
    font-size: 1.75rem;
    /* Adjust as needed - same on both sides */
    line-height: 1.3;
}

@media (max-width: 991px) {
    .cta1-title {
        font-size: 1.5rem;
    }

    .sticky-heading,
    .sticky-bottom {
        position: static;
        /* Disable sticky on mobile for better UX */
    }
}

/* cta1-section off  */

/* < !-- new 7 on --> */
.testimonial-section {
    position: relative;
    padding: 60px 0;
    background-color: #f8f9fa;
    width: 100%;
    overflow: hidden;
}

.testimonial-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #0D6EFD 0%, #0D6EFD 100%);
    opacity: 0.1;
}

.full-width-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-main-title {
    padding: 20px 0;
}

.testimonial-main-title .main-heading {
    color: var(--new-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonial-main-title .sub-heading {
    font-size: 18px;
    color: var(--paragragh);
    line-height: 1.6;
}

/* Carousel Styles - SIMPLIFIED */
#testimonial-carousel {
    position: relative;
    min-height: 500px;
}

.carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 480px;
    /* Added to prevent height jumps */
}

/* Bootstrap's carousel-fade handles everything - REMOVE conflicting CSS */
/* Info card styles */
.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #26466F;
}

.info-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--new-blue);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-grow: 1;
}

.info-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.info-card ul li:before {
    content: "✓";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #0D6EFD;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

/* Carousel Indicators/Pagination */
.carousel-indicators {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    z-index: 15;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators li.active {
    background-color: #0D6EFD;
    transform: scale(1.2);
}

/* Carousel Controls - removed since you don't have them in HTML */
.carousel-control-prev,
.carousel-control-next {
    display: none;
    /* Hide since you're not using them */
}

/* Responsive */
@media (max-width: 1400px) {
    .full-width-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .testimonial-main-title .main-heading {
        font-size: 32px;
    }

    .full-width-container {
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .full-width-container {
        padding: 0 20px;
    }

    .testimonial-main-title {
        text-align: center;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .testimonial-main-title .main-heading {
        font-size: 28px;
    }

    .testimonial-main-title .sub-heading {
        font-size: 16px;
    }

    .testimonial-img {
        width: 80%;
        opacity: 0.05;
    }

    .info-card {
        height: auto;
        min-height: 400px;
        margin-bottom: 80px;
    }

    #testimonial-carousel {
        min-height: 450px;
    }

    .carousel-indicators {
        bottom: -70px;
    }
}

@media (max-width: 576px) {
    .testimonial-main-title .main-heading {
        font-size: 24px;
    }

    .full-width-container {
        padding: 0 15px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-card h4 {
        font-size: 22px;
    }

    .info-card ul li {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* < !-- new 7 off --> */

/* last new on  */
#automation-benefits {
    background: linear-gradient(to bottom, #e6eaff 0%, #f8f9ff 100%);
    /* Very light blue-ish gradient matching the section in your screenshot */
    padding-top: 5rem;
    padding-bottom: 5rem;
    --new-blue: #1e293b;
    /* Dark slate for headings */
    --paragraph: #6c757d;
    /* Medium gray for body text */
}

#automation-benefits h2.display-6 {
    color: var(--new-blue);
    font-weight: 700;
    font-size: 2rem;
}

#automation-benefits .lead {
    color: var(--paragraph);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Card shared base styles */
#automation-benefits .benefit-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6ff;
}

#automation-benefits .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
#automation-benefits .benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #0069D9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

#automation-benefits .benefit-icon i {
    font-size: 2rem;
}

/* Heading inside cards */
#automation-benefits .benefit-card h3 {
    color: var(--new-blue);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

/* List styling */
#automation-benefits ul.list-unstyled li {
    position: relative;
    padding-left: 1.6rem;
    /* space for tick */
    color: var(--paragraph);
    font-size: 1.05rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

#automation-benefits ul.list-unstyled li::before {
    content: "✓";
    /* tick mark */
    color: #0069D9;
    /* same blue */
    font-size: 18px;
    /* exact size */
    margin-top: 0.35rem;
    /* exact vertical align */
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: bold;
}

#automation-benefits ul.list-unstyled i.fa-check {
    color: #0069D9;
    font-size: 0.85rem;
    /* Reduced tick mark size */
    margin-right: 0.85rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

/* Bottom paragraph */
#automation-benefits .bottom-text {
    color: var(--paragraph);
    font-size: 1.05rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

/* #automation-benefits .bottom-text {
    content: "✓";
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #0D6EFD;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
} */

/* Responsive */
@media (max-width: 768px) {
    #automation-benefits .benefit-card {
        padding: 2rem 1.5rem;
    }

    #automation-benefits .benefit-icon {
        width: 60px;
        height: 60px;
    }

    #automation-benefits .benefit-icon i {
        font-size: 1.7rem;
    }
}

/* last new off  */

/* hover container on  */
/* Jayam Web Solutions - Strengths Section CSS */
.jayam-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.jayam-header {
    text-align: center;
    margin-bottom: 60px;
}

.jayam-main-heading {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 15px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.jayam-intro-text {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.jayam-experience-badge {
    display: inline-block;
    background-color: #E9EFFD;
    color: #0069D9;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jayam-section-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jayam-strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.jayam-strength-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.jayam-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.jayam-strength-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    border: 2px solid #E9EFFD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0069D9;
    margin-right: 20px;
    background-color: #ffffff;
    transition: all 0.8s ease;
    position: relative;
    z-index: 3;
}

.jayam-strength-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.8s ease;
    position: relative;
    z-index: 2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.jayam-strength-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    transition: color 0.8s ease;
    position: relative;
    z-index: 2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hover effect that fills from center */
.jayam-strength-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #0069D9;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.jayam-strength-card:hover::before {
    width: 500%;
    height: 500%;
}

.jayam-strength-card:hover {
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 105, 217, 0.2);
}

.jayam-strength-card:hover .jayam-strength-icon {
    color: #0069D9;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: #ffffff;
    transform: scale(1.08);
}

.jayam-strength-card:hover .jayam-strength-title {
    color: #ffffff;
}

.jayam-strength-card:hover .jayam-strength-description {
    color: rgba(255, 255, 255, 0.95);
}

.jayam-footer-note {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    padding: 35px;
    background-color: #E9EFFD;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 5px solid #0069D9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .jayam-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .jayam-strength-card {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .jayam-strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jayam-main-heading {
        font-size: 2rem;
    }

    .jayam-section-title {
        font-size: 1.8rem;
    }

    .jayam-strength-card {
        height: 230px;
        padding: 30px 25px;
    }

    .jayam-strength-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
        margin-right: 18px;
    }

    .jayam-strength-title {
        font-size: 1.25rem;
    }

    .jayam-strength-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .jayam-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .jayam-strength-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .jayam-strength-card {
        height: auto;
        min-height: 240px;
    }

    .jayam-footer-note {
        font-size: 1.2rem;
        padding: 25px;
    }
}

/* new 23.01  */
.tick-list,
.tick-list li {
    position: relative;
    z-index: 3;
}

.jayam-strength-card:hover .tick-list li {
    color: #ffffff;
}
.jayam-strength-card:hover .tick-list li::before {
    color: #ffffff;
}
/* hover container off  */



/* new  section 23 on*/
.feature-item {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
    transform: scale(1.08);
    /* Zoom in ~8% */
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.18);
    /* subtle blue shadow lift */
    background-color: #ddecff;
    /* slightly brighter on hover */
}
/* new  section 23 off */

/* new section for Wholesale Businesses on */
.cta-design-3 .cta-button,
.cta-button {
    background: #e67e22;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.feature-item:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(30, 115, 190, 0.15);
}
/* new section for Wholesale Businesses off */



/* new  */
.feature-tag {
    background: #ffffff;
    border: 1px solid #dbeafe;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0d1a40;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #e8f4fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 26, 64, 0.12);
}

.integration-card:hover .bx,
.security-card:hover .bx {
    color: #1e40af;
    /* subtle hover color change on icons */
}

@media (max-width: 991px) {

    .integration-card,
    .security-card {
        margin-bottom: 2.5rem !important;
    }
}


/* new 27.01 */
#medical-modules ul.list-unstyled li {
    position: relative;
    padding-left: 22px;
}

#medical-modules ul.list-unstyled li::before {
    content: "✓";
    color: rgb(0, 105, 217);
    font-size: 18px;
    margin-top: 0.35rem;
    position: absolute;
    left: 0px;
    top: 0px;
    line-height: 1;
    font-weight: bold;
}

/* new  */
.list-unstyled.mt-2 {
    text-align: left;
    display: inline-block;
}


/* new style  28.01*/
/* Hover effect for the button */
/* Center alignment for title and intro */
.lms-types-section .section-title.text-center {
    text-align: center;
}

.lms-types-section .section-intro.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Custom checkmark styling */
.lms-type-block ul.list-unstyled li::before {
    content: "✓";
    color: #0069D9;
    font-size: 18px;
    margin-top: 0.35rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: bold;
}

/* CTA button hover effects */
.cta-button:hover {
    background-color: #FF6600 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4) !important;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* New section style */
.lms-types-section {
    background-color: #F5F8FF;
    padding: 70px 0;
}

.lms-types-section .section-title {
    color: #0B2C4D;
    font-weight: 600;
    margin-bottom: 10px;
}

.lms-types-section .section-intro {
    color: #5F6F85;
    max-width: 700px;
    margin-bottom: 40px;
}

.lms-type-block {
    background: #ffffff;
    border: 1px solid #E3ECFF;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 25px;
}

.lms-type-block h3 {
    color: #0B5ED7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.lms-type-block p {
    color: #5F6F85;
    margin-bottom: 10px;
}

.lms-type-block ul {
    padding-left: 18px;
}

.lms-type-block ul li {
    color: #0B2C4D;
    margin-bottom: 6px;
    font-size: 15px;
}

/* Remove bullet points */
.lms-type-block ul {
    list-style-type: none;
    padding-left: 0;
}

/* new section style 28.01 o  */






/* what section responsive  */
/* Responsive for 320px to 991px - Stack one by one */
@media (max-width: 991px) {
    .us-content {
        display: block;
        /* Remove flex */
    }

    .us-text {
        width: 100%;
        float: none;
        display: block;
    }

    .us-image {
        width: 100%;
        float: none;
        display: block;
        margin-bottom: 30px;
    }

    .us-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}







