/* ============================================
   MODAL Z-INDEX FIXES
   ============================================ */

/* Ensure smooth-wrapper doesn't interfere with modals */
#smooth-wrapper {
    z-index: 1 !important;
    position: relative;
    isolation: isolate;
}

#smooth-content {
    z-index: 1 !important;
    position: relative;
}

/* When modal is open, ensure smooth-wrapper stays behind */
body.modal-open #smooth-wrapper {
    z-index: 1 !important;
    position: relative;
}

/* Bootstrap Modal Overrides */
.modal {
    z-index: 9999 !important;
    position: fixed !important;
}

.modal-backdrop {
    z-index: 9998 !important;
    position: fixed !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.modal.show {
    display: block !important;
    z-index: 9999 !important;
}

.modal.fade.show {
    z-index: 9999 !important;
}

#careerApplicationModal,
#getStartedModal {
    z-index: 9999 !important;
}

#careerApplicationModal.show,
#getStartedModal.show {
    z-index: 9999 !important;
}

#careerApplicationModal.fade.show,
#getStartedModal.fade.show {
    z-index: 9999 !important;
}

#careerApplicationModal .modal-dialog,
#getStartedModal .modal-dialog {
    z-index: 10000 !important;
    position: relative;
    margin: 1.75rem auto;
}

/* Ensure navbar doesn't overlap modal */
.navbar-section {
    z-index: 1030;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

:root {
    --primary-green: #A2D201;
    --dark-green: #90A34E;
    --light-green: #E8F5E9;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F5F5F5;
    --bg-dark-blue: #0086BE;
    --accent-blue: #2196F3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
a{
    text-decoration: none;
}

.text-green {
    color: var(--primary-green);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.navbar-section {
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    left: 0;
    width: 100%;
}

.navbar-section.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background: #ffffff82;
    backdrop-filter: blur(10px) !important;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-m {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-mentor {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.nav-link.active {
    color: var(--primary-green) !important;
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    text-underline-offset: 5px;
}

.btn-get-started {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-get-started::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 10s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-get-started:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: url('../images/baner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: #d9d9d92f;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 30px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 10s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    40% {
        left: -100%;
    }

    60% {
        left: 100%;
    }

    80% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-hero:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--bg-light-gray);
    opacity: 0.3;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: 10px;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 15%;
    transform: rotate(45deg);
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 20%;
    border-radius: 50%;
}

/* ============================================
   SUCCESS MISSION SECTION
   ============================================ */

.success-mission-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.card-success-main {
    /* background: var(--dark-green); */
    color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-image: url(../images/banner-bottom-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    transition: background-size 1s ease-in-out;
}

.card-success-main:hover {
    background-size: 110% 110%;
}

.card-success-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bg-white);
    line-height: 1.2;
}

.card-success-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* Anchor links wrapping buttons */
a .btn-learn-more,
a .btn-learn-more-small,
a .btn-view-features,
a .btn-hero {
    text-decoration: none;
    display: inline-block;
}

a:hover .btn-learn-more,
a:hover .btn-learn-more-small,
a:hover .btn-view-features,
a:hover .btn-hero {
    text-decoration: none;
}

.btn-learn-more {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.btn-learn-more:hover {
    background: var(--bg-white);
    color: var(--dark-green);
}

.card-success-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.card-success-main>* {
    position: relative;
    z-index: 1;
}

.card-stat {
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 254px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-stat-light {
    background: var(--light-green);
    color: var(--text-dark);
    background-image: url(../images/banner-bottom-2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: background-size 1s ease-in-out;
}

.card-stat-light:hover {
    background-size: 110% 110%;
}


.card-stat-dark {
    background: var(--dark-green);
    color: var(--bg-white);
    background-image: url(../images/banner-bottom-3.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: background-size 1s ease-in-out;
}

.card-stat-dark:hover {
    background-size: 110% 110%;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number-white {
    color: var(--bg-white);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.stat-label-white {
    color: var(--bg-white);
}

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--accent-blue);
}

.card-stat-bg-light {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 168, 89, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: 0;
}

.card-stat-bg-dark {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.card-stat>* {
    position: relative;
    z-index: 1;
}

.card-testimonial-preview {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--light-green) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    height: 100%;
    justify-content: end;
    display: flex;
    flex-direction: column;
    background-image: url(../images/banner-bottom-4.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: background-size 1s ease-in-out;
}

.card-testimonial-preview:hover {
    background-size: 110% 110%;
}

.testimonial-avatars {
    display: flex;
    gap: -10px;
    margin-bottom: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -10px;
    background: var(--primary-green);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: #FF6B6B;
}

.avatar-2 {
    background: #4ECDC4;
}

.avatar-3 {
    background: #FFE66D;
}

.testimonial-preview-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.testimonial-preview-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-learn-more-small {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    cursor: pointer;
    max-width: 150px;
    border-radius: 30px;
}

.btn-learn-more-small:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

.card-testimonial-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(0, 168, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.card-testimonial-preview>* {
    position: relative;
    z-index: 1;
}

/* ============================================
   iCRESP ERP SECTION
   ============================================ */

.icresp-section {
    /* background: var(--bg-light-gray); */
    padding: 100px 0;
}

.icresp-image-wrapper {
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    padding: 80px;
    padding-left: 0;
    background: #FCFFF0;
    background: linear-gradient(328deg, rgba(252, 255, 240, 1) 0%, rgba(173, 210, 238, 1) 100%);
}

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

.icresp-content {
    padding-left: 50px;
}

.product-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.product-label span {
    color: #000;
}

.icresp-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.icresp-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.icresp-features {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.icresp-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.icresp-features li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 20px;
}

.icresp-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-view-features {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-view-features:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

.btn-watch-tutorial {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-watch-tutorial:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    border: solid 1px #e5e5e5;
}

.service-icon img {
    width: 40px;
}

.service-icon-text {
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    bottom: 8px;
}

.service-icon-pos i {
    font-size: 36px;
}

.service-icon-startup {
    position: relative;
}

.service-icon-arrow {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 16px;
    color: var(--accent-blue);
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-green);
}

/* ============================================
   TRUSTED SECTION
   ============================================ */

.trusted-section {
    background: #fff;
    padding: 80px 0;
}

.trusted-logos {
    display: block;
}

.trusted-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trusted-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--text-dark);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    background: #F4F8FF;
    padding: 100px 0;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light-gray);
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}
.blog-title a{
    color: #000;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light-gray);
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.author-avatar.img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.author-avatar.img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.author-avatar.img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.author-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.read-more {
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--dark-green);
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
}

.testimonials-intro {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .owl-stage-outer {
    padding: 20px;
}

.testimonials-nav {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-bottom: 40px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: var(--bg-white);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: var(--bg-light-gray);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   TRANSFORM SECTION
   ============================================ */

.transform-section {
    background: var(--bg-dark-blue);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../images/footer-icon.png);
    background-position: 98% 5%;
    background-repeat: no-repeat;
}

.transform-content {
    position: relative;
    z-index: 2;
}

.transform-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.transform-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-transform {
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-transform:hover {
    background: var(--dark-green);
    color: var(--bg-white);
}

.transform-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    background: #000000;
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-m {
    font-size: 32px;
    margin-right: 10px;
}

.footer-logo .logo-mentor {
    font-size: 24px;
    color: var(--bg-white);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-green);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.testimonials-section .section-title {
    font-size: 32px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--primary-green);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

.footer-legal .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RIPPLE EFFECT
   ============================================ */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .icresp-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .card-success-main {
        min-height: 400px;
    }

    .navbar-collapse {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 15px;
        background: #ffffff82;
        backdrop-filter: blur(10px) !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .card-success-title {
        font-size: 32px;
    }

    .icresp-title {
        font-size: 32px;
    }

    .transform-title {
        font-size: 36px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .btn-get-started {
        margin-top: 15px;
        width: 90%;
    }

    .trusted-logos {
        justify-content: center;
    }

    .card-testimonial-preview {
        margin-top: 20px;
    }

    .testimonials-nav {
        justify-content: center;
    }

    .testimonials-carousel .owl-stage-outer {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .card-success-main {
        padding: 40px 30px;
        min-height: 350px;
    }

    .icresp-buttons {
        flex-direction: column;
    }


    .btn-view-features,
    .btn-watch-tutorial {
        width: 100%;
    }
	.contact-form{padding:10px !important;}
}

/* ============================================
   Inner Pages Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, rgba(8, 164, 217, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* ============================================
   Team Section Styles
   ============================================ */
.team-section {
    background-color: var(--bg-light-gray);
}

.team-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.team-img-wrapper img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--light-green);
    padding: 4px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    color: var(--text-light);
    margin: 0 8px;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-green);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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