/* Accordion css starts below */

/* FAQ Redesign - v2 */

.faq-section {
    margin: 60px 0;
}

.faq-teaser .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-teaser .accordion-item:hover {
    border-color: #145E58;
    /* Subtle brand highlight on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-teaser button {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    /* Bold questions */
    line-height: 26px;
    color: #232323;
    /* Darker, cleaner text for questions */
    padding: 24px 30px;
    background-color: transparent;
    border: none;
    transition: color 0.3s ease;
    text-align: left;
}

.faq-teaser button:not(.collapsed) {
    color: #145E58;
    /* Highlight active question with brand color */
    background-color: #f6f9f8;
    /* Solid active background for contrast */
    box-shadow: none;
    /* remove bootstrap default shadow */
}

.faq-teaser button:focus {
    box-shadow: none;
    /* remove bootstrap default focus ring */
}

@media (min-width: 768px) {
    .faq-teaser button {
        font-size: 20px;
        line-height: 32px;
        padding: 28px 36px;
    }
}

.faq-teaser .accordion-body {
    padding: 10px 36px 36px;
    font-family: 'Verdana', sans-serif;
    font-weight: 300;
    /* Light content */
    color: #444;
    /* Darker text for better contrast */
    background-color: #fff;
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    /* subtle separator if needed, usually hidden by bg */
}

.faq-teaser .accordion-body strong,
.faq-teaser .accordion-body b {
    font-weight: 700;
    /* Preserve bold elements */
    color: #145E58;
    /* Brand color for emphasis within text */
}

/* Icon Styling - Plus to Minus */
.faq-teaser .accordion-button::after {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: auto;
    content: "";
    /* Plus Sign */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23145E58' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 24px;
    transition: transform 0.3s ease-in-out;
}

.faq-teaser .accordion-button:not(.collapsed)::after {
    /* Minus Sign - No Rotation, just image swap */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23145E58' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
    /* Optional: nice subtle spin effect while changing */
}

/* Accordion css ends above*/



/* Achievements css starts below*/
.achievements-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.achievements-section .headline {
    text-align: center;
    margin-bottom: 50px;
}

.achievements-section .headline h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.achievements-section .headline h2 span {
    color: #26ae61;
    /* Matches the green theme seen in previous request context if applicable, or generic standard */
}

.achievements-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 42px;
    font-weight: 800;
    color: #26ae61;
    margin-bottom: 10px;
    display: block;
}

.achievement-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .achievements-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements-container {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 36px;
    }
}

/* Acheivement css ends above */






/* Career Page css starts below*/

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #145E58;
}

.form-group input[type="text"].error,
.form-group input[type="email"].error,
.form-group textarea.error,
.form-group input[type="file"].error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.file-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    cursor: pointer;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

#submitBtn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #145E58;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submitBtn:hover:not(:disabled) {
    background-color: #0f4a45;
}

#submitBtn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

textarea {
    resize: vertical;
    font-family: inherit;
}



/* Section Layout */
.career-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fbfb 0%, #eef6f6 100%);
    position: relative;
    overflow: hidden;
    /* Ensure content is above background shapes */
    z-index: 1;
}

/* Dynamic Background Shapes */
.career-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatingBlobs 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(27, 92, 87, 0.15);
    /* #1b5c57 */
    animation-delay: 0s;
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(17, 82, 77, 0.1);
    /* #145E58 */
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: rgba(13, 82, 77, 0.1);
    animation-delay: -10s;
    animation-duration: 15s;
}

@keyframes floatingBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Typography Enhancements */


.headline h2 {
    font-size: 32px;
    line-height: 45px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: none;
    color: #0e4540;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    display: inline-block;
    letter-spacing: -1px;
}


.headline p {
    font-size: 1.25rem;
    line-height: 35px;
    color: #333;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Left Side - Image */
.career-teaser .form-teaser__image {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.career-teaser .form-teaser__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(20, 94, 88, 0.2));
    animation: floatImage 6s ease-in-out infinite;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.career-teaser .form-teaser__image:hover img {
    transform: scale(1.02);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Right Side - Form Card */
.career-detail {
    background: rgba(255, 255, 255, 0.85);
    /* More transparent for glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 3rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.career-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 70px -15px rgba(20, 94, 88, 0.15);
    /* Tinted shadow */
    border-color: rgba(45, 210, 196, 0.3);
}

/* Form Elements */
.career-detail .form-label {
    font-weight: 700;
    color: #1a4f4b;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.career-detail .form-control,
.career-detail .form-select {
    border: 2px solid transparent;
    background-color: #f0f7f7;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.career-detail .form-control:hover,
.career-detail .form-select:hover {
    background-color: #e6f2f2;
}

.career-detail .form-control:focus,
.career-detail .form-select:focus {
    border-color: #1b5c57;
    box-shadow: 0 0 0 4px rgba(45, 210, 196, 0.15);
    background-color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.career-detail textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Input - Custom */
.career-detail input[type="file"] {
    padding: 0.6rem;
    background-color: #fff;
    border: 2px dashed #cbd5e1;
}

.career-detail input[type="file"]:hover {
    border-color: #1b5c57;
    background-color: #f8fbfb;
}

/* Radio Buttons */
.career-detail .form-check {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
}

.career-detail .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    margin-left: -2rem;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}

.career-detail .form-check-input:checked {
    background-color: #145E58;
    border-color: #145E58;
    box-shadow: 0 0 0 3px rgba(20, 94, 88, 0.2);
}

.career-detail .form-check-label {
    color: #444;
    cursor: pointer;
    font-weight: 500;
}

/* Submit Button with Pulse */
.career-detail .btn-primary {
    background: linear-gradient(135deg, #145E58 0%, #1b5c57 100%);
    border: none;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(20, 94, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.career-detail .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.career-detail .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20, 94, 88, 0.4);
}

.career-detail .btn-primary:hover::before {
    left: 100%;
}

.career-detail .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(20, 94, 88, 0.3);
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .career-section {
        padding: 120px 0 80px;
    }

    .headline h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .career-teaser .row {
        flex-direction: column-reverse;
    }

    .form-teaser__image {
        margin-bottom: 2.5rem;
        margin-top: 1rem;
    }

    .career-detail {
        padding: 2rem !important;
    }

    .headline h2 {
        font-size: 2.2rem;
    }
}


/* career-redesign css ends above */







/* Client Review Section css starst below*/

.client-review-section {
    padding: 60px 0;
    background-color: #f9fbfd;
    /* Subtle background difference if needed, or keep white */
    overflow: hidden;
    /* Prevent horizontal scroll just in case */
}

/* Headline styling adjustments */
.client-review-section .headline h2 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.client-review-section .headline p {
    color: #666;
    margin-bottom: 40px;
}

/* Slider Container */
.slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    /* match slide radius for container if needed, or just padding */
    padding: 20px 0 50px 0;
    /* Space for shadow and dots */
}

/* Slider Track */
.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother bezier */
    width: 100%;
}

/* Individual Slide */
.slide {
    background: #fff;
    flex: 0 0 100%;
    /* Ensure each slide takes full width of container */
    width: 100%;
    max-width: 100%;
    /* specific for bootstrap override */
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Premium soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Very subtle border */
    user-select: none;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slide Content Layout */
.slide .row {
    align-items: center;
    /* Vertically center content */
}

/* Slide Image */
.slide-image {
    text-align: center;
    margin-bottom: 20px;
}

.slide img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* Image shadow */
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.02);
    /* Subtle zoom on hover */
}

/* Slide Text Content */
.slide-content {
    padding: 10px 20px;
    text-align: left;
}

.slide-content h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

/* Decorative quote icon using pseudo-element could be nice, keeping it simple for now */

.slide-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 20px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-content .stars {
    color: #ffc107;
    /* Standard star yellow/gold */
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.slide-content strong {
    display: block;
    color: #1b5c57;
    /* Brand color */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dots Navigation */
.dots {
    text-align: center;
    margin-top: -10px;
    /* Pull up closer to slides if needed, or rely on container padding */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Reset button defaults */
    border: none;
    padding: 0;
    outline: none;
}

.dot:hover {
    background-color: #b2bec3;
}

.dot.active {
    background-color: #1b5c57;
    transform: scale(1.2);
    width: 25px;
    /* Pill shape for active dot */
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide {
        padding: 30px 20px;
        flex-direction: column;
        height: auto;
    }

    .slide-content {
        text-align: center;
        padding: 0;
        margin-top: 20px;
    }

    .slide-content h3 {
        font-size: 20px;
    }

    .slide img {
        max-width: 200px;
        /* Smaller image on mobile */
    }

    .slider-container {
        padding: 10px 15px 50px 15px;
        /* More side padding on mobile screen edges */
    }
}

/* Client Review Section css starst below*/




/* contact form css starts below */

/* Contact Form */

.form-section {
    margin: 100px 0;
}

.form-teaser__detail h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0e4540;
    margin-bottom: 20px;
}

.form-teaser__detail p {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    padding-bottom: 40px;
}

/* Modern Input Fields */
.form-control {
    border: 2px solid #eef2f1;
    border-radius: 12px;
    padding: 15px 20px;
    background-color: #f9fbfb;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #333;
}

.form-control:focus {
    border-color: #145E58;
    box-shadow: 0 0 0 4px rgba(20, 94, 88, 0.1);
    background-color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: #a0a0a0;
}

/* Button Styling */
.form-teaser__detail .btn.btn-form {
    background: linear-gradient(90deg, #145E58 0%, #1b5c57 100%);
    width: 100%;
    padding: 16px 30px;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(20, 94, 88, 0.2);
    margin-top: 10px;
}

.form-teaser__detail .btn.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(20, 94, 88, 0.3);
    filter: brightness(110%);
}

.form-teaser__image {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Animation for Image */
.form-teaser__image img {
    animation: float 6s ease-in-out infinite;
    max-width: 90%;
    /* Ensure responsiveness */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (min-width: 768px) {
    .form-teaser__image {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    /* Adjustments for larger screens if needed */
}


/* contact form css ends above */



/* contact-services cs starts below */
/* contact Service */

.contact-service-section {
    margin: 120px 0 100px;
    position: relative;
}

.contact-service {
    text-align: center;
    margin-top: 60px;
}

/* Common Card Styles */
.contact-service__content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 94, 88, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden for animation */
}

/* Stagger animations for each card */
.col-lg-4:nth-child(1) .contact-service__content {
    animation-delay: 0.1s;
}

.col-lg-4:nth-child(2) .contact-service__content {
    animation-delay: 0.3s;
}

.col-lg-4:nth-child(3) .contact-service__content {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect - Lift */
.contact-service__content:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(20, 94, 88, 0.2);
}

/* Distinguish Light/Dark functionally but keep visual harmony */
/* We'll unify them to look like a set, but maybe with subtle differences or keep the requested redesign simple and clean white */

.contact-service .light-content {
    background-color: #ffffff;
    color: #333;
}

.contact-service .dark-content {
    background: linear-gradient(145deg, #145E58, #1b5c57);
    color: #fff;
}

.contact-service__content img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.contact-service__content:hover img {
    transform: scale(1.1) rotate(5deg);
}

.contact-service__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 0;
    /* Override old padding */
}

/* Light Card Text */
.contact-service .light-content h3 {
    color: #145E58;
}

.contact-service .light-content a {
    color: #555;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
}

.contact-service .light-content a:hover {
    color: #145E58;
}

/* Dark Card Text */
.contact-service .dark-content h3 {
    color: #fff;
}

.contact-service .dark-content a {
    color: #ffffff;
    /* Use pure white for better contrast */
    font-weight: 500;
    font-size: 18px;
}

.contact-service .dark-content a:hover {
    color: #fff;
    text-decoration: underline !important;
}


/* contact services css ends above */




/* content-teaser css starts below */
/* Content Teaser */

.content-section {
    margin: 50px 0;
}

.content-teaser {
    margin-top: 50px;
}

/* Modern Content Cards */
/* Modern Content Cards */
.content-item__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: transparent;
    /* Transparent for pseudo-elements */
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* border: 1px solid rgba(0, 0, 0, 0.04); Removed for animation */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Establish stacking context */
}

/* Moving Border Animation - Gradient Layer */
.content-item__detail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, #145E58);
    animation: borderRotate 4s linear infinite;
    /* Always rotating */
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Card Background Layer */
.content-item__detail::after {
    content: '';
    position: absolute;
    inset: 2px;
    /* Border width */
    background: #ffffff;
    border-radius: 14px;
    z-index: -1;
}

.content-item__detail:hover::before {
    opacity: 1;
}

.content-item__detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 94, 88, 0.2);
}

@keyframes borderRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Icon Styling */
.content-item__detail i {
    font-size: 32px;
    color: #145E58;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background: #F3F7F6;
    /* Subtle background circle */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.content-item__detail:hover i {
    transform: scale(1.1) rotate(5deg);
    background: #145E58;
    color: #ffffff;
}

/* Text Styling */
.content-item__detail p {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: normal;
    text-align: center;
    position: relative;
    z-index: 2;
}

.content-teaser__image {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .content-teaser__image {
        margin-bottom: 0;
    }
}

/* Content teaser css ends above */


/* developer-list css starts below */
/* Developer List Page Styles */

.developer-list-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.developer-list-section .headline {
    margin-bottom: 50px;
}

.developer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.developer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dev-card-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dev-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.dev-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.dev-role {
    color: #1b5c57;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-card-body {
    padding: 25px;
    flex-grow: 1;
}

.dev-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-details-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}

.dev-details-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dev-details-list li strong {
    color: #333;
    font-weight: 600;
}

.dev-skills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: #eef7f6;
    color: #145E58;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dev-card-footer {
    padding: 20px 25px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-hire {
    display: inline-block;
    background: linear-gradient(135deg, #145E58, #1b5c57);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
    width: 100%;
}

.btn-hire:hover {
    opacity: 0.9;
}

/* developer list css ends above */



/* developer-slider css starts below */
/* Devloper-slider */

.devloper-slider-section {
    margin: 60px 0;
}

.devloper-slider-section .swiper {
    width: 100%;
    max-width: 1200px;
    margin: 50px 0;
}

.devloper-slider-section .swiper-wrapper {
    cursor: grab;
}

.devloper-slider-section .swiper-slide {
    display: flex !important;
    justify-content: space-between;
}

.devloper-slider-section .card h3 {
    font-size: 16px;
    line-height: 60px;
    font-weight: 700;
    margin-top: 0;
}

.devloper-slider-section .card p {
    font-size: 15px;
    line-height: 35px;
    font-weight: 400;
}

.devloper-slider-section .card {
    width: 32%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.devloper-slider-section .card.middle {
    background: linear-gradient(to bottom right, #145E58, #1b5c57);
    color: white;
}



.devloper-slider-section .swiper-pagination {
    top: 100% !important;
}

@media (max-width: 768px) {
    .devloper-slider-section .swiper-slide {
        flex-direction: column;
        align-items: center;
    }

    .devloper-slider-section .card {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* developer slider css ends above */


/* feature teaser css starts from below */
/* ================================
   MODERN FEATURE SECTION
=================================*/

.modern-feature {
    margin: 80px 0;
}

.feature-img-wrapper {
    text-align: center;
}

.feature-main-img {
    width: 100%;
    max-width: 380px;
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 10px;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.feature-card i {
    font-size: 28px;
    color: #154a46;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: #444;
    font-size: 14px;
}

/* Hover Effects */
.feature-card:hover {
    background: #154a46;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card:hover i {
    color: #fff;
}

.feature-card:hover p {
    color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-main-img {
        max-width: 260px;
    }
}


/* feature teaser css ends above */


/* footer css starts from below */

/* Footer */

/* Footer Base */
.new-footer {
    background: linear-gradient(#ffffff, #86d7ed);
    padding: 60px 0 20px;
    color: #145E58;
    font-family: 'Poppins', sans-serif;
}

/* Force block display to override global container styles from style.css */
.new-footer .container {
    display: block !important;
    padding: initial;
    /* Reset padding if needed, or keep bootstrap's */
    max-width: 1320px;
    /* Bootstrap XXL max-width default, or auto */
    margin: 0 auto;
}

/* Top Layout */
.footer-top {
    margin-bottom: 40px;
}

/* Logo */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
}

.footer-logo span {
    color: #1b5c57;
}

/* About Section */
.footer-about p {
    margin: 15px 0 20px;
    color: #145E58;
    line-height: 1.6;
    font-size: 15px;
    max-width: 370px;
    text-align: justify;
}

/* Social Icons */
.footer-social a {
    color: #145E58;
    margin-right: 12px;
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #145E58;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #1b5c57;
    padding-left: 5px;
}

/* Contact */
.footer-contact p {
    color: #145E58;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #1b5c57;
    margin-right: 8px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #1f2b3c;
}

/* footer css ends above */


/* general css starts from below */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('../fonts/OpenSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
        url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Medium.woff2') format('woff2'),
        url('../fonts/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('../fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.woff2') format('woff2'),
        url('../fonts/Verdana.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana-Bold.woff2') format('woff2'),
        url('../fonts/Verdana-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

a {
    text-decoration: none !important;
}

.site-main {
    margin-top: 108px;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
.h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700 !important;
}

h2,
.h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    line-height: 54px;
    font-weight: 700 !important;
}

h3,
.h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700 !important;
}

p {
    font-family: 'Verdana', sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
}

@media (min-width: 768px) {

    h1,
    .h1 {
        font-size: 48px;
        line-height: 68px;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: 60px;
    }

    h3,
    .h3 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (min-width: 992px) {

    h1,
    .h1 {
        font-size: 52px;
        line-height: 78px;
    }

    h2,
    .h2 {
        font-size: 45px;
        line-height: 88px;
    }

    h3,
    .h3 {
        font-size: 32px;
        line-height: 45px;
    }
}

/* Headline */
.headline {
    text-align: center;
    max-width: 748px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}



.headline h2>span {
    color: #0e4540;
}



/* general css ends above */



/* header css starts from below */
/* Header */

.main-header img {
    max-width: 95px;
    height: auto;
}

.main-header .navigation .nav-link {
    margin: 0 24px 0 0;
    padding-right: 0;
    padding-left: 0;
    font-size: 17px;
    font-family: 'Verdana', sans-serif;
    font-weight: 400;
    color: #232323;
}

.main-header .navigation .nav-link.active {
    margin: 0 24px 0 0;
    background-color: #145E58;
    color: #fff;
    padding: 7px 24px;
    border-radius: 50px;
}

.main-header .navbar {
    background: #fff;
    box-shadow: 0 0 10px 0 #d7d7d7;
}

@media (min-width: 576px) {
    .main-header .navigation {
        padding-left: 34px;
        padding-right: 34px;
    }

    .main-header img {
        max-width: 110px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }

    .main-header img {
        max-width: 138px;
        height: auto;
    }
}

header {
    width: 100%;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08)
}

.navbar {
    padding: 10px 0;
}

ul.navbar-nav {
    padding-left: 25px;
    position: relative;
    min-height: 70px;
    align-items: center;
}

li.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

@media (min-width: 992px) {
    li.nav-item {
        z-index: 11;
    }
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

li.nav-item i {
    display: none;
}

li.nav-item:last-child {
    padding-right: 0;
}

button#toggle {
    display: none;
}

ul.navbar-nav .nav-item:hover .mega-menu {
    display: block;
}

span.plus-icon {
    display: none;
}

.mega-menu {
    position: absolute;
    left: 0;
    display: none;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    background: #fff;
    top: 33px;
    transition-delay: 1s;
    padding: 0;
}

.nav-item svg {
    visibility: hidden;
}

@media (min-width: 992px) {
    .mega-menu {
        background-color: #fff;
        border-top: 6px solid #145E58;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
        left: 48%;
        min-width: 250px !important;
        opacity: 0;
        padding: 0;
        position: absolute;
        text-align: left;
        transform: translateX(-50%);
        transition: all .2s ease 0s;
    }

    ul.navbar-nav .nav-item:hover .mega-menu {
        display: block;
        opacity: 1;
    }

    .mega-menu ul li {
        font-size: 15px;
    }

    .nav-item svg {
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 13px !important;
    }
}

.mega-menu ul li a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: block;
    color: #000;
}

.mega-list {
    margin-bottom: 25px;
}

.mega-list h3.mi-link {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.25px;
    text-transform: none;
    margin-bottom: 15px;
    position: relative;
}

h3.mi-link::after {
    display: block;
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    height: 2px;
    width: 100%;
    opacity: 0.5;
    background-color: #145E58
}

.mega-list ul li {
    padding: 7px 0;
}

.mega-list ul li a {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.25px;
    text-transform: none;
}

/* toggle navbar */

@media(max-width:991px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }

    button {
        background: transparent;
        border: none;
        width: 30px;
        height: 30px;
        cursor: pointer;
        outline: 0;
    }

    .toggle span {
        width: 27px;
        height: 3px;
        background: #145E58;
        display: block;
        position: relative;
        cursor: pointer;
    }

    .toggle span:before,
    .toggle span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background: #145E58;
        transition: all 0.3s ease-out;
    }

    .toggle span:before {
        top: -8px;
    }

    .toggle span:after {
        top: 8px;
    }

    .toggle span.toggle {
        background: transparent;
        z-index: 4;
        position: fixed;
        right: 18px;
        top: 40px;
    }

    .toggle span.toggle:before {
        top: 0;
        transform: rotate(-45deg);
        background: #145E58;

    }

    .toggle span.toggle:after {
        top: 0;
        transform: rotate(45deg);
        background: #145E58;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: -235px;
        width: 235px;
        height: 100%;
        background: #f9f9f9;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transition: 0.3s ease-in-out;
        padding-top: 50px;
        z-index: 3;
    }

    div#navbarNavAltMarkup {
        display: block;
    }

    .sidebar ul {
        list-style: none;
        align-items: flex-start;
        padding: 0;
        overflow-x: scroll;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        background: #f9f9f9;
        display: block;
    }

    ul.navbar-nav.ms-auto {
        margin-left: 30px !important
    }

    .sidebar ul li {
        display: flex;
        width: 100%;
        padding: 0;
        background-color: #f9f9f9;
        flex-wrap: wrap;
    }

    .sidebar ul li a {
        padding: 8px 15px;
        font-size: 16px;
        color: #222;
        font-family: arial, sans-serif;
        text-decoration: none;
        display: block;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease-out;
        font-weight: 500;
    }

    .sidebar ul li a:before {
        background: #145E58;
        width: 235px;
        position: fixed;
        top: 0;
        right: -235px;
        height: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        padding-top: 90px;
        transition: all 0.3s ease-out;
        z-index: 3;
    }

    .sidebar ul li a:hover:before {
        width: 100%;
    }

    .sidebar ul li a:hover {
        color: #145E58;
    }

    .sidebarshow {
        right: 0;
    }

    button#toggle {
        display: block;
    }

    div#sidebar {
        flex-direction: column;
    }

    span.plus-icon {
        margin-bottom: 20px;
        position: absolute;
        right: 0;
        top: 0px;
        color: #fff;
        font-size: 30px;
        font-weight: 600;
        background-color: #145E58;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mega-menu {
        top: 0px;
        width: 100%;
        position: relative;
        margin-bottom: 2px;
    }

    .mega-menu ul {
        list-style: none;
        align-items: flex-start;
        padding: 0;
        background-color: #145E58;
        /* Use brand color for mobile main menu background */
    }

    .mega-menu ul li {
        width: 100%;
        background-color: #f6f9f8;
        /* Use very light brand shade for menu items */
        border-bottom: 1px solid rgba(20, 94, 88, 0.1);
    }

    .mega-menu ul li a {
        padding: 10px 15px;
        font-size: 15px;
        border-bottom: none;
        color: #000;
    }

    .nav-item:hover .mega-menu {
        display: block;
    }
}

/* header css ends above */


/* hero banner css starts from below */

/* Hero-banner */
.hero-teaser__content h1 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 0;
}

.hero-teaser__content h1>span {
    color: #0e4540;
}

.hero-teaser__content p {
    color: #333;
    line-height: 40px;
    padding: 25px 0;
    margin-bottom: 0;
}

.btn.btn--primary {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    background-color: #145E58;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn.btn--primary:hover {
    background-color: #1b5c57;
    color: #fff;
}

@media (min-width: 768px) {
    .btn.btn--primary {
        font-size: 25px;
        line-height: 45px;
        padding: 16px 44px;
    }
}

.hero-teaser__image {
    text-align: center;
}

.hero-teaser__content {
    margin-top: 30px;
}

.hero-teaser {
    padding: 0 12px;
    margin: 50px 0;
}

@media (min-width: 768px) {
    .hero-teaser__content h1 {
        font-size: 48px;
        line-height: 68px;
    }

    .hero-teaser {
        padding: 0;
    }

    .hero-teaser__content {
        margin-top: 0;
    }

    .hero-teaser__content p {
        padding: 36px 0 38px;
    }
}

@media (min-width: 992px) {
    .hero-teaser__content h1 {
        font-size: 52px;
        line-height: 78px;
    }
}

/* hero banner css ends above */



/* icon-teaser css starts from below */
/* Icon Teaser - Modern Redesign */

.icon-teaser {
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
    /* Prevent animation spillover */
}

/* Section Title */
.icon-teaser h3 {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: none;
    color: #0e4540;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    padding-bottom: 15px;
}

.icon-teaser h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #145E58, #1b5c57);
    border-radius: 2px;
}

/* Card Container */
.icon-teaser__content {
    background: #f0fdfc;
    padding: 35px 25px;
    border-radius: 20px;
    margin-top: 30px;
    height: calc(100% - 30px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Gradient Border Effect via Pseudo-element */
.icon-teaser__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.4s ease;
    z-index: -1;
}

/* Hover State */
.icon-teaser a {
    text-decoration: none;
}

.icon-teaser a:hover .icon-teaser__content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 94, 88, 0.15);
    background: linear-gradient(to bottom right, #ffffff, #f0fdfc);
}

.icon-teaser a:hover .icon-teaser__content::before {
    background: linear-gradient(135deg, #145E58, #1b5c57);
}

/* Icon / Image */
.icon-teaser__content img {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    filter: invert(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.icon-teaser a:hover .icon-teaser__content img {
    transform: scale(1.15) rotate(3deg);
    filter: invert(32%) sepia(13%) saturate(2256%) hue-rotate(129deg) brightness(94%) contrast(89%) drop-shadow(0 8px 20px rgba(45, 210, 196, 0.3));
}

/* Text */
.icon-teaser__content p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #333;
    transition: color 0.3s ease;
}

.icon-teaser a:hover .icon-teaser__content p {
    color: #145E58;
}

/* Entrance Animations */
.icon-teaser .row>div {
    animation: fadeInUpCard 0.8s ease-out backwards;
}

/* Stagger delays for up to 4 columns */
.icon-teaser .row>div:nth-child(1) {
    animation-delay: 0.1s;
}

.icon-teaser .row>div:nth-child(2) {
    animation-delay: 0.2s;
}

.icon-teaser .row>div:nth-child(3) {
    animation-delay: 0.3s;
}

.icon-teaser .row>div:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .icon-teaser__content {
        padding: 25px 20px;
    }

    .icon-teaser h3 {
        font-size: 1.5rem;
    }

    .icon-teaser__content p {
        font-size: 1rem;
    }
}

/* icon teaser css ends above */


/* logo-teaser css starts from below */

/* Logo teaser */

.logoMarqueeSection {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

#logoMarqueeSection {
    max-width: 1920px !important;
    margin: 0 auto;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: 100%;
    min-height: 100vh;
}

.logoMarqueeSection>div>div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

.marquee-wrapper {
    display: inline-block;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee a {
    display: inline-block;
    white-space: nowrap;
    padding-right: 35px;
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* logo teaser css ends above */


/* our-process css starts from below */
/* ADI */

/* Modern Our Process Section */
.modern-our-process {
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #1b5c57;
}

.process-step .step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #1b5c57;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #003856;
}

.process-step p {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .process-step {
        padding: 20px;
    }

    .process-step .step-number {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* our process css ends above */


/* process-teaser css starts from below */

/* Step Section */

.process-section {
    margin: 50px 0;
}

.process-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.process-container .wave-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 0;
}

.process-container .wave-line svg {
    width: 100%;
    height: 120px;
}

.process-container .steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.process-container .step {
    text-align: center;
    width: 22%;
}

.process-container .step .circle {
    background-color: #1b5c57;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
}

.process-container .step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-container .step p {
    font-size: 14px;
    color: #575757;
    line-height: 1.5;
}

@media (min-width: 768px) {

    .process-container .step:nth-child(1),
    .process-container .step:nth-child(3) {
        margin-top: -25px;
    }

    .process-container .step:nth-child(2),
    .process-container .step:nth-child(4) {
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .process-container .steps {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .process-container .step {
        width: 80%;
    }

    .process-container .wave-line {
        display: none;
    }
}

/* process teaser css ends above */


/* step-teaser css starts from below */
/* step-section */

.step-section {
    margin: 60px 0;
}

.Step-teaser .step {
    background-color: #fff;
    border-left: 4px solid #1b5c57;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px 20px 20px 50px;
    position: relative;
    min-height: calc(100% - 25px);
}

.Step-teaser .step::before {
    content: attr(data-step);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #1b5c57;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 28px;
    left: 10px;
    font-weight: bold;
}

.Step-teaser .step h3 {
    font-family: 'Verdana', sans-serif;
    margin-top: 0;
    color: #232323;
    font-size: 18px;
    line-height: 45px;
}

.Step-teaser .step p {
    color: #575757;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 34px;
}

@media (max-width: 768px) {
    .Step-teaser .step {
        width: 100%;
    }
}

/* steop teaser css ends above */


/* teaser-info css starts from below */
/* Teaser-Info Redesign */
.teaser-info-section {
    padding: 80px 0;
    background-color: #f9fbfb;
    /* Light background for contrast */
}

.teaser-info {
    margin-top: 50px;
}

/* Reset and initialize counter */
.teaser-info .row {
    counter-reset: feature-counter;
    row-gap: 30px;
    /* Space between rows */
}

/* Common Card Styles */
.teaser-info__detail,
.teaser-info__details {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin: 0;
    /* Remove any default margins */
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
    text-align: left !important;
    /* Force left align for consistency */
}

/* Hover Effect */
.teaser-info__detail:hover,
.teaser-info__details:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 94, 88, 0.12);
    border-color: rgba(20, 94, 88, 0.1);
}

/* Decorative Counter Number */
.teaser-info__detail::before,
.teaser-info__details::before {
    counter-increment: feature-counter;
    content: counter(feature-counter, decimal-leading-zero);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #f0f4f4;
    /* Very light subtle color */
    z-index: -1;
    transition: all 0.4s ease;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.teaser-info__detail:hover::before,
.teaser-info__details:hover::before {
    color: #e0f2f1;
    transform: scale(1.2) rotate(-10deg);
}

/* Headings */
.teaser-info__detail h3,
.teaser-info__details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #11524d;
    position: relative;
    display: inline-block;
}

/* Underline effect for headings */
.teaser-info__detail h3::after,
.teaser-info__details h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #154a46;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.teaser-info__detail:hover h3::after,
.teaser-info__details:hover h3::after {
    width: 100%;
}

/* Text */
.teaser-info__detail p,
.teaser-info__details p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .teaser-info__detail,
    .teaser-info__details {
        padding: 30px 20px;
    }

    .teaser-info__detail h3,
    .teaser-info__details h3 {
        font-size: 1.3rem;
    }

    .teaser-info__detail::before,
    .teaser-info__details::before {
        font-size: 3rem;
    }
}

/* teaser-info css ends above */


/* tech-teaser css starts from below */
/* Tech-teaser (technologie) */

.tech-section .container {
    max-width: 1400px;
    /* Allow more width for the grid */
}

/* Grid Layout */
.tech-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
    margin-top: 20px;
}

.tech-teaser__detail {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, more modern shadow */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tech-teaser__detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 94, 88, 0.2);
    border-color: #1b5c57;
}

/* Add a subtle highlight line at the top */
.tech-teaser__detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #145E58, #1b5c57);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-teaser__detail:hover::before {
    opacity: 1;
}

.tech-teaser__detail img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.tech-teaser__detail:hover img {
    transform: scale(1.1);
}

.tech-teaser__detail p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.tech-teaser__detail:hover p {
    color: #145E58;
}

/* Image Loader Styles */
.img-loading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 90px;
    /* Reserve space */
}

.img-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #145E58;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    /* Hidden by default, shown by JS */
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.tech-teaser__detail img.img-hidden {
    opacity: 0;
}

/* tech-teaser css ends above */


/* text-image css starts from below */
/* Text with image (vision) */

.text-image-section {
    margin: 60px 0;
}

.text-teaser h3 {
    font-size: 32px;
    line-height: 60px;
}

.text-teaser p {
    color: #575757;
    font-size: 16px;
    line-height: 35px;
}

/* image-content */

.image-content-section {
    margin: 60px 0;
}

.image-content-teaser {
    margin-top: 53px;
    margin-bottom: 53px;
}

.image-content-teaser p {
    color: #575757;
    font-size: 18px;
    line-height: 35px;
}

/* text-image css ends above */


/* toast css starts from below */
/* Toast Notification Styles */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-toast {
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
    transform: translateX(100%);
    border-left: 5px solid transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.custom-toast.error {
    border-left-color: #ff4d4d;
}

.custom-toast.error::before {
    content: '\f071';
    /* FontAwesome warning icon code usually, or simple text content */
    font-family: 'FontAwesome', sans-serif;
    margin-right: 10px;
    color: #ff4d4d;
    font-size: 18px;
}

.custom-toast.success {
    border-left-color: #26ae61;
}

.custom-toast.success::before {
    content: '\f00c';
    /* FontAwesome check icon */
    font-family: 'FontAwesome', sans-serif;
    margin-right: 10px;
    color: #26ae61;
    font-size: 18px;
}

.toast-message {
    flex-grow: 1;
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    cursor: pointer;
    margin-left: 15px;
    color: #999;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.2s;
    /* Reset button defaults */
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.toast-close:hover {
    color: #333;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* toast css ends above */