/* 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;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-teaser button {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* Reduced from 18px */
    font-weight: 700;
    line-height: 1.4;
    color: #232323;
    padding: 15px 20px; /* Reduced from 24px 30px */
    background-color: transparent;
    border: none;
    transition: color 0.3s ease;
    text-align: left;
}

.faq-teaser button:not(.collapsed) {
    color: #145E58;
    background-color: #f6f9f8;
    box-shadow: none;
}

.faq-teaser button:focus {
    box-shadow: none;
}

@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;
    color: #444;
    background-color: #fff;
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-teaser .accordion-body strong,
.faq-teaser .accordion-body b {
    font-weight: 700;
    color: #145E58;
}

/* Icon Styling - Plus to Minus */
.faq-teaser .accordion-button::after {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: auto;
    content: "";
    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 {
    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);
}

/* 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;
}

.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;
}

@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;
    }
}

/* Achievement 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;
    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);
    animation-delay: 0s;
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(17, 82, 77, 0.1);
    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);
    }
}

.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);
    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);
    border-color: rgba(45, 210, 196, 0.3);
}

.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;
}

.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;
}

.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;
}

.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);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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 starts below */

.client-review-section {
    padding: 60px 0;
    background-color: #f9fbfd;
    overflow: hidden;
}

.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 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    padding: 20px 0 50px 0;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.slide {
    background: #fff;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    user-select: none;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide .row {
    align-items: center;
}

.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);
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

.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;
}

.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;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.slide-content strong {
    display: block;
    color: #1b5c57;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dots {
    text-align: center;
    margin-top: -10px;
    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;
    border: none;
    padding: 0;
    outline: none;
}

.dot:hover {
    background-color: #b2bec3;
}

.dot.active {
    background-color: #1b5c57;
    transform: scale(1.2);
    width: 25px;
    border-radius: 10px;
}

@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;
    }

    .slider-container {
        padding: 10px 15px 50px 15px;
    }
}

/* Client Review Section css ends above */



/* contact form css starts below */

.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;
}

.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;
}

.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;
}

.form-teaser__image img {
    animation: float 6s ease-in-out infinite;
    max-width: 90%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (min-width: 768px) {
    .form-teaser__image {
        margin-top: 0;
    }
}

/* contact form css ends above */



/* contact-services css starts below */

.contact-service-section {
    margin: 120px 0 100px;
    position: relative;
}

.contact-service {
    text-align: center;
    margin-top: 60px;
}

.contact-service__content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    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;
}

.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;
}

.contact-service__content:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(20, 94, 88, 0.2);
}

.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;
}

.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;
}

.contact-service .dark-content h3 {
    color: #fff;
}

.contact-service .dark-content a {
    color: #ffffff;
    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-section {
    margin: 50px 0;
}

.content-teaser {
    margin-top: 50px;
}

.content-item__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item__detail::after {
    content: '';
    position: absolute;
    inset: 2px;
    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);
    }
}

.content-item__detail i {
    font-size: 32px;
    color: #145E58;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background: #F3F7F6;
    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;
}

.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-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(280px, 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-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 below */

.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 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 10px;
}

.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;
}

.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;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-main-img {
        max-width: 260px;
    }
}

/* feature teaser css ends above */



/* footer css starts below */

.new-footer {
    background: linear-gradient(#ffffff, #86d7ed);
    padding: 60px 0 20px;
    color: #145E58;
    font-family: 'Poppins', sans-serif;
}

.new-footer .container {
    display: block !important;
    padding: initial;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
}

.footer-logo span {
    color: #1b5c57;
}

.footer-about p {
    margin: 15px 0 20px;
    color: #145E58;
    line-height: 1.6;
    font-size: 15px;
    max-width: 370px;
    text-align: justify;
}

.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-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.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;
}

.footer-contact p {
    color: #145E58;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #1b5c57;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #1f2b3c;
}

/* footer css ends above */



/* general css starts below */

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    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: 32px; /* Reduced from 40px */
    line-height: 1.3;
    font-weight: 700 !important;
}

h2,
.h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px; /* Reduced from 32px */
    line-height: 1.3;
    font-weight: 700 !important;
}

h3,
.h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px; /* Reduced from 24px */
    line-height: 1.3;
    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 {
    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 below */

.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 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .main-header .navbar {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 253, 253, 0.98) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 16px 0 !important; /* Slightly more vertical space */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .navbar-brand img {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        max-height: 55px !important; /* Increased logo size for presence */
    }

    .navbar-brand:active img {
        transform: scale(0.95);
    }
}

@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;
}

/* Global Visibility Control - Hide Mobile elements on PC */
.sidebar-header, 
.sidebar-overlay {
    display: none !important;
}

.sidebar {
    display: contents !important;
}

/* =============================================
   MOBILE NAV - toggle navbar
   ============================================= */
@media (max-width: 991px) {
    .navbar-toggler:focus {
        box-shadow: none;
    }

    .toggle {
        width: 44px;
        height: 44px;
        background: #f8fbfb !important;
        border: 1px solid rgba(20, 94, 88, 0.08) !important;
        border-radius: 12px;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        cursor: pointer;
        outline: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0 !important;
    }

    .toggle:hover {
        background: #f0f7f6 !important;
        border-color: rgba(20, 94, 88, 0.2) !important;
    }

    .toggle:active {
        transform: scale(0.9);
    }

    /* Hamburger base span */
    .toggle span {
        width: 25px;
        height: 2px;
        background: #145E58;
        display: block;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 !important; /* Ensure no external margins cause shifts */
    }

    .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: -7px;
    }

    .toggle span:after {
        top: 7px;
    }

    /* *** FIX: renamed from span.toggle → span.is-open *** */
    /* Active / open state - X icon */
    #toggle span.is-open {
        background: transparent !important;
    }

    #toggle span.is-open:before {
        top: 0;
        transform: rotate(-45deg);
        background: #145E58;
    }

    #toggle span.is-open:after {
        top: 0;
        transform: rotate(45deg);
        background: #145E58;
    }

    /* Mobile Sidebar Implementation */
    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px; /* Slightly narrower for better fit */
        height: 100vh;
        background: #ffffff;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        padding: 0; 
        z-index: 10005;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .sidebar-header {
        display: flex !important; /* Visible only on Mobile */
        padding: 40px 30px 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        margin-bottom: 10px;
    }

    .sidebar-header img {
        max-width: 130px;
        height: auto;
        display: block !important;
    }

    .sidebar-overlay {
        display: block !important; /* Visible only on Mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 10004;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    div#navbarNavAltMarkup {
        display: block !important;
        width: 100%;
        height: auto !important;
    }

    .sidebar ul {
        list-style: none;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .sidebar ul.navbar-nav {
        align-items: flex-start !important;
    }

    .sidebar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sidebar .navbar-nav .nav-item .nav-link {
        padding: 20px 50px !important; /* Deeply inset for premium feel */
        font-size: 20px !important;
        color: #1a1a1a !important;
        font-family: 'Poppins', 'Inter', sans-serif !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        margin: 0 !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        font-weight: 500 !important;
        background: transparent !important;
        text-align: left !important;
        border: none !important;
    }

    .sidebar .navbar-nav .nav-item .nav-link i {
        font-size: 22px !important;
        color: #145E58 !important;
        width: 30px !important;
        text-align: center !important;
        opacity: 0.9 !important;
        transition: transform 0.3s ease !important;
    }

    .sidebar .navbar-nav .nav-item .nav-link:hover {
        background: linear-gradient(90deg, #f0f7f6 0%, #ffffff 100%) !important;
        color: #145E58 !important;
        padding-left: 55px !important;
    }

    .sidebar .navbar-nav .nav-item .nav-link:hover i {
        transform: scale(1.1) rotate(-5deg);
    }

    /* Interactive Slide-in Animation */
    .sidebarshow .nav-item {
        animation: navSlideIn 0.5s ease forwards;
        opacity: 0;
    }

    .sidebarshow .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .sidebarshow .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .sidebarshow .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .sidebarshow .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .sidebarshow .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .sidebarshow .nav-item:nth-child(6) { animation-delay: 0.35s; }

    @keyframes navSlideIn {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .sidebarshow {
        transform: translateX(0) !important;
    }

    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;
    }

    .mega-menu ul li {
        width: 100%;
        background-color: #f6f9f8;
        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;
    }
}

/* header css ends above */



/* hero banner css starts below */

.hero-teaser__content h1 {
    font-size: 2.2rem; /* Use rem for better scaling */
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-teaser__content h1 {
        font-size: 1.8rem;
    }
    .hero-teaser__content p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 15px 0 !important;
    }
}

.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 img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-teaser__image img {
        max-width: 80%;
        margin-bottom: 20px;
    }
}

.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 below */

.icon-teaser {
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

.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;
}

.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;
}

.icon-teaser__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    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;
}

.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-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));
}

.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;
}

.icon-teaser .row>div {
    animation: fadeInUpCard 0.8s ease-out backwards;
}

.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);
    }
}

@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 below */

.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;
}

@media (max-width: 991px) {
    .default-content-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.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 below */

.modern-our-process {
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.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;
}

@media (max-width: 768px) {
    .process-step {
        padding: 30px 20px 20px 20px; /* Increased top padding to account for step number */
        margin-top: 20px;
    }

    .process-step .step-number {
        font-size: 16px;
        padding: 6px 12px;
        top: -15px;
        left: 15px; /* Moved inside to prevent cutting */
    }
}

/* our process css ends above */



/* process-teaser css starts below */

.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 below */

.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 45px;
    position: relative;
    min-height: calc(100% - 25px);
}

@media (max-width: 576px) {
    .Step-teaser .step {
        padding: 15px 15px 15px 40px;
    }
}

.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%;
    }
}

/* step teaser css ends above */



/* teaser-info css starts below */

.teaser-info-section {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.teaser-info {
    margin-top: 50px;
}

.teaser-info .row {
    counter-reset: feature-counter;
    row-gap: 30px;
}

.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;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
    text-align: left !important;
}

.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);
}

.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;
    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);
}

.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;
}

.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%;
}

.teaser-info__detail p,
.teaser-info__details p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@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 below */

.tech-section .container {
    max-width: 1400px;
}

.tech-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 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);
    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;
}

.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;
}

.img-loading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 90px;
}

.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;
    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 below */

.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-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 below */

#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';
    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';
    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;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.toast-close:hover {
    color: #333;
}

@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 */



/* =============================================
   FINAL MOBILE OVERRIDES
   Must stay at bottom for correct specificity
   ============================================= */
@media (max-width: 991px) {

    /* Toggle button above everything */
    #toggle {
        z-index: 10006 !important;
        position: relative;
    }

    /* Navbar sits ABOVE the overlay (10004) so logo stays visible */
    .main-header .navbar {
        z-index: 10005 !important;
        position: fixed !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* Keep page content below overlay */
    .hero-banner-section,
    .site-main {
        position: relative;
        z-index: 1;
    }

    .form-teaser__image {
        margin-top: 60px !important;
        padding-top: 20px;
    }

    .form-teaser__detail {
        padding-bottom: 40px;
    }

    .form-section {
        margin: 40px 0 !important;
    }

    .form-teaser__detail h3,
    .form-teaser__detail p {
        text-align: center !important;
    }
    .headline h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .hero-banner-section {
        padding-top: 20px;
    }

    /* Prevent any images from overflowing */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure container padding is consistent on small screens */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    body,
    html {
        box-shadow: none !important;
    }

    .form-teaser__detail .btn.btn-form {
        margin-bottom: 20px !important;
        width: 100% !important;
        font-size: 16px !important;
    }
}